/* ---------------------------
   RESET / BASE
----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  /* PWE Colour System */
  --nav-bg: #111;
  --nav-text: #fff;
  --nav-text-muted: #aaa;
  --nav-accent: #e63946;

  /* Layout */
  --nav-height: 72px;
  --nav-padding: 1.25rem;
  --transition: 0.25s ease;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;  /* Titles, bold, strong */
  --font-body: 'Quicksand', sans-serif;      /* Body text, paragraphs */
}


body {
  font-family: var(--font-body);
  background: #000;
  color: #222;
}

h1, h2, h3, h4, h5, h6,
.navbar,
.nav-links a,
.btn,
.hero-title,
.hero-eyebrow {
  font-family: var(--font-heading);
}

/* ---------------------------
 NAVBAR WRAPPER
----------------------------*/
.navbar {
width: 100%;
height: var(--nav-height);
background: #050509; /* solid dark to match hero vibe */
color: var(--nav-text);
padding: 0 var(--nav-padding);
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 50;

/* Softer, cleaner edge */
border-bottom: 1px solid rgba(255,255,255,0.06);
box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ---------------------------
LOGO
----------------------------*/
.nav-logo {
font-size: 1.4rem;
font-weight: 700;
letter-spacing: -0.3px;
cursor: pointer;
user-select: none;
color: var(--nav-text);
text-decoration: none;
display: flex;
align-items: center;
gap: .5rem;
}

.nav-logo img {
height: 40px;
width: auto;
}

/* ---------------------------
NAV LINKS
----------------------------*/
.nav-links {
display: flex;
gap: 1.75rem;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: var(--nav-text-muted);
font-size: 0.95rem;
font-weight: 500;
transition: var(--transition);
padding: .4rem 0;
position: relative;
}

/* Animated underline */
.nav-links a::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0%;
height: 2px;
background: var(--nav-accent);
transition: var(--transition);
border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus {
color: var(--nav-text);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
width: 100%;
}

/* Optional: mark the current page */
.nav-links a.is-active {
color: var(--nav-text);
}

.nav-links a.is-active::after {
width: 100%;
}

/* ---------------------------
RIGHT-SIDE ACTIONS
----------------------------*/
.nav-actions {
display: flex;
align-items: center;
gap: 1.1rem;
}

.nav-btn {
padding: .55rem 1.3rem;
border-radius: 6px;
background: var(--nav-accent);
color: #fff;
border: none;
cursor: pointer;
font-weight: 600;
font-size: 0.9rem;
transition: var(--transition);
}

.nav-btn:hover {
background: #d62839;
}

/* Optional user avatar */
.nav-avatar {
width: 34px;
height: 34px;
border-radius: 50%;
overflow: hidden;
border: 2px solid var(--nav-accent);
cursor: pointer;
transition: var(--transition);
}

.nav-avatar:hover {
opacity: .85;
}

/* ---------------------------
MOBILE MENU
----------------------------*/
.nav-toggle {
display: none;
cursor: pointer;
flex-direction: column;
gap: 4px;
}

.nav-toggle span {
width: 24px;
height: 3px;
background: var(--nav-text);
border-radius: 4px;
transition: var(--transition);
}

/* Mobile Behavior */
@media (max-width: 768px) {

.nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #050509;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem 2.5rem;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-links.open {
    transform: translateY(0);
}

.nav-toggle {
    display: flex;
}
}


/* ========== HERO SLIDER ========== */

.hero-slider {
position: relative;
overflow: hidden;
min-height: 60vh;
background: #000;
color: #fff;
}

/* Each slide (desktop / default behaviour) */
.hero-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: translateX(4%);
transition: opacity 0.8s ease, transform 0.8s ease;
display: flex;
align-items: center;
justify-content: flex-start;
pointer-events: none;
}

.hero-slide.is-active {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
z-index: 1;
}

/* Slide colour themes */
.hero-slide--red {
background: radial-gradient(circle at top left, #e50000 0%, #000 55%, #000 100%);
}

.hero-slide--purple {
background: radial-gradient(circle at top right, #7c3aed 0%, #000 55%, #000 100%);
}

.hero-slide--dark {
background: radial-gradient(circle at center, #1f2933 0%, #000 60%, #000 100%);
}

/* Slide content wrapper */
.hero-content {
position: relative;
z-index: 2;
padding: 80px 16px;
max-width: 1200px;
}

/* Layout inside slide */
.hero-layout {
display: flex;
flex-direction: column;
gap: 2.25rem;
}

/* TEXT AREA */
.hero-copy {
flex: 1.2;
}

.hero-eyebrow {
text-transform: uppercase;
letter-spacing: 0.2em;
font-size: 0.75rem;
margin-bottom: 0.75rem;
opacity: 0.85;
}

.hero-title {
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.1;
margin-bottom: 1rem;
text-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.hero-text {
font-size: 1rem;
max-width: 480px;
margin-bottom: 1.75rem;
opacity: 0.9;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

/* BUTTONS */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
border-radius: 999px;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
border: 1px solid transparent;
transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
cursor: pointer;
}

.btn-primary {
background: #e50000;
color: #fff;
box-shadow: 0 10px 30px rgba(229,0,0,0.5);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 14px 40px rgba(229,0,0,0.6);
}

.btn-ghost {
background: transparent;
border-color: rgba(255,255,255,0.6);
color: #fff;
}

.btn-ghost:hover {
background: rgba(255,255,255,0.1);
}

/* PRODUCT IMAGE AREA */
.hero-media {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}

.hero-media-card {
background: transparent;
padding: 0;
border: none;
max-width: 380px;
width: 100%;
}

.hero-product-img {
display: block;
width: 100%;
height: auto;
object-fit: contain;
border-radius: 16px;
}

/* ARROWS */
.hero-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border-radius: 999px;
border: none;
background: rgba(0,0,0,0.6);
color: #fff;
display: grid;
place-items: center;
cursor: pointer;
z-index: 3;
font-size: 1.4rem;
transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow--prev {
left: 16px;
}

.hero-arrow--next {
right: 16px;
}

.hero-arrow:hover {
background: rgba(0,0,0,0.85);
transform: translateY(-50%) scale(1.06);
}

/* DOTS */
.hero-dots {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 3;
}

.hero-dot {
width: 9px;
height: 9px;
border-radius: 999px;
border: none;
background: rgba(255,255,255,0.3);
cursor: pointer;
transition: background 0.2s ease, width 0.2s ease;
}

.hero-dot.is-active {
background: #e50000;
width: 18px;
}

/* ========== MOBILE ========== */

@media (max-width: 767px) {

.hero-slider {
  min-height: auto;
  padding-bottom: 2rem;
  overflow: visible; /* allow content to define height */
}

/* Make slides normal-flow on mobile so height works */
.hero-slide {
  position: relative;
  inset: auto;
  transform: none;
  display: none;
  pointer-events: none;
}

.hero-slide.is-active {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-content {
  padding: calc(var(--nav-height) + 16px) 16px 32px;
}

.hero-layout {
  flex-direction: column;
  gap: 1.8rem;
}

/* Hide product image on mobile for clean layout */
.hero-media {
  display: none;
}

.hero-copy {
  text-align: left;
  max-width: 100%;
}

.hero-actions {
  justify-content: flex-start;
}
}

/* ========== TABLET & DESKTOP ========== */

@media (min-width: 768px) {
.hero-content {
  padding: 120px 24px;
}

.hero-layout {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 540px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
}

.hero-text {
  font-size: 1.05rem;
}
}

@media (min-width: 1024px) {
.hero-slider {
  min-height: 70vh;
}

.hero-content {
  padding-inline: 32px;
}
}


/* -----------------
     Promo Bar
   -----------------
*/
.promo-bar {
  width: 100%;
  color: #fff;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 40;

  /* Distressed splatter texture (dark base, light speckles) */
  background-color: #050509;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'>\
    <rect width='160' height='160' fill='%23050509'/>\
    <!-- random speckle clusters -->\
    <path d='M20 25c3 4 1 7-2 7s-7-3-6-6 6-5 8-1z' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <path d='M50 18c2 3 0 5-3 6-3 0-5-2-5-4s3-5 8-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M82 30c4 3 3 8-1 9-4 2-8-2-8-5s4-8 9-4z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M120 22c3 2 2 5 0 7-3 1-6-1-6-4 0-3 3-6 6-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M135 40c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M30 70c4 3 2 7-2 8-3 0-6-2-6-5s4-8 8-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M70 65c3 4 1 7-3 8-3 0-6-2-6-5s4-8 9-3z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M110 70c4 4 2 8-2 9s-7-2-7-5 5-9 9-4z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M140 85c3 3 1 6-2 7-4 1-7-3-6-6s5-6 8-1z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M25 110c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M60 120c4 3 2 7-2 8-3 0-6-2-6-5s4-8 8-3z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <path d='M95 115c3 4 1 7-3 8s-7-3-6-6 5-7 9-2z' fill='%23f5f5f7' fill-opacity='0.55'/>\
    <path d='M130 120c3 3 2 6-1 7-4 2-7-2-7-5 0-3 4-7 8-2z' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <!-- small single specks -->\
    <circle cx='15' cy='50' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='45' cy='45' r='1.2' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='75' cy='50' r='1.3' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='105' cy='48' r='1.1' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='145' cy='60' r='1.5' fill='%23f5f5f7' fill-opacity='0.65'/>\
    <circle cx='35' cy='90' r='1.3' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='80' cy='95' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
    <circle cx='115' cy='100' r='1.2' fill='%23f5f5f7' fill-opacity='0.6'/>\
    <circle cx='55' cy='135' r='1.3' fill='%23f5f5f7' fill-opacity='0.65'/>\
    <circle cx='125' cy='135' r='1.4' fill='%23f5f5f7' fill-opacity='0.7'/>\
  </svg>");
  background-size: 160px 160px;
  background-repeat: repeat;
}

.promo-content {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: promoFade 0.6s ease forwards;
}

.promo-content h2 {
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

/* Fade-in animation */
@keyframes promoFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: smaller text on very small screens */
@media (max-width: 480px) {
  .promo-content {
    font-size: 0.9rem;
  }
}


/* -----------------------
   Product Highlight
------------------------*/
.product-highlight {
  width: 100%;
  padding: 3.5rem 1.5rem;
  background: #050509;          /* dark to match hero/nav */
  color: #fff;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;  /* text + image */
  gap: 2.5rem;
  align-items: center;
}

/* Text/content side */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav-accent);
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #e5e5e5;
  max-width: 520px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #c5c5c5;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Buttons */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.product-btn-primary,
.product-btn-ghost {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.product-btn-primary {
  background: #e50000;
  color: #fff;
}

.product-btn-primary:hover {
  background: #ff2538;
  transform: translateY(-1px);
}

.product-btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.product-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* Image side */
.product-media {
  justify-self: center;
}

.product-media-inner {
  max-width: 360px;
  width: 100%;
}

.product-media-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(0,0,0,0.8);
  object-fit: contain;
}

/* -----------------------
   Responsive
------------------------*/
@media (max-width: 768px) {
  .product-highlight {
    padding: 2.5rem 1.25rem;
  }

  .product-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-media {
    order: -1; /* image above text on mobile; remove if you prefer opposite */
  }

  .product-media-inner {
    max-width: 260px;
  }
}

/* ---------------------------
        FOOTER
--------------------------- */
.site-footer {
  background: #050509;
  color: #fff;
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 3rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* ---------------------------
        Brand Section
--------------------------- */
.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 260px;
  color: #d4d4d4;
}

/* ---------------------------
        Links
--------------------------- */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--nav-accent);
}

/* ---------------------------
        Social Icons
--------------------------- */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  background: var(--nav-accent);
  transform: translateY(-3px);
}

/* ---------------------------
        Footer Bottom
--------------------------- */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #999;
}

/* ---------------------------
        Responsive
--------------------------- */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .social-icons {
    margin-bottom: 1rem;
  }
}


/* ---------------------------
   Product Carousel Section
--------------------------- */
.product-carosel {
  padding: 3rem 1.5rem;
  background: #050509; /* same base as hero/nav so it fits */
  color: #fff;
}

.pc-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #090910;
  border-radius: 22px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

/* Header */
.pc-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.pc-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pc-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #c5c5c5;
}

/* Wrapper for arrows + track */
.pc-track-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

/* Arrows */
.pc-arrow {
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pc-arrow:hover {
  background: var(--nav-accent);
  transform: translateY(-1px);
}

/* Track – scrollable row of cards */
.pc-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.2rem 0.6rem;
  scrollbar-width: none;
}
.pc-track::-webkit-scrollbar {
  display: none;
}

/* Individual product cards */
.pc-card {
  flex: 0 0 190px;             /* base width */
  max-width: 210px;
  background: #12121b;
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.9);
  border-color: rgba(255,255,255,0.18);
}

/* Image */
.pc-image {
  border-radius: 12px;
  overflow: hidden;
  background: #050509;
}

.pc-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Text info */
.pc-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pc-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.pc-meta {
  font-size: 0.8rem;
  color: #b3b3b3;
}

.pc-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--nav-accent);
  margin-top: 0.15rem;
}

/* ---------------------------
   Responsive
--------------------------- */
@media (max-width: 768px) {
  .product-carosel {
    padding: 2.25rem 1.25rem;
  }

  .pc-shell {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .pc-track-wrapper {
    grid-template-columns: 1fr;     /* arrows hide on mobile */
  }

  .pc-arrow {
    display: none;
  }

  .pc-track {
    gap: 0.9rem;
  }

  .pc-card {
    flex: 0 0 70%;                  /* wider cards on mobile */
    max-width: 70%;
  }
}

/* ---------------------------
   Auth Pages (Login/Register)
--------------------------- */

.auth-page {
  min-height: calc(100vh - var(--nav-height));
  padding: 4rem 1.5rem;
  background:
    radial-gradient(circle at top, #111 0%, #050509 40%, #020206 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glass + poster hybrid card */
.auth-card {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  padding: 2.4rem 2.1rem;
  position: relative;

  /* glass / overlay */
  background: rgba(5, 5, 12, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* subtle top accent bar like a poster */
.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--nav-accent),
    #f97316
  );
  opacity: 0.9;
}

/* Header */
.auth-header {
  margin-bottom: 1.6rem;
}

.auth-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--nav-accent);
}

.auth-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ccccd9;
}

/* Form layout */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Fields */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.auth-field label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e5f0;
}

.auth-field input {
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 15, 0.95);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.08s ease;
}

.auth-field input::placeholder {
  color: #77788a;
}

.auth-field input:focus {
  border-color: var(--nav-accent);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.4);
  background: #090919;
  transform: translateY(-1px);
}

/* Remember + forgot row */
.auth-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #c0c0cf;
}

.auth-checkbox input {
  width: 14px;
  height: 14px;
  accent-color: var(--nav-accent);
  cursor: pointer;
}

/* Button – bold PWE feel */
.auth-btn-primary {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: none;
  background: var(--nav-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.auth-btn-primary:hover {
  background: #ff2439;
  box-shadow: 0 14px 32px rgba(230, 57, 70, 0.7);
  transform: translateY(-1px);
}

/* Links + error text */
.auth-switch {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #c5c5d2;
  text-align: center;
}

.auth-link {
  color: var(--nav-accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-link-small {
  font-size: 0.8rem;
}

.auth-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #ff6b6b;
  text-align: center;
}

/* ---------------------------
   Responsive tweaks
--------------------------- */
@media (max-width: 768px) {
  .auth-page {
    padding: 3rem 1.25rem;
  }

  .auth-card {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .auth-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .auth-page {
    padding: 2.5rem 1rem;
  }

  .auth-card {
    padding: 1.8rem 1.2rem;
  }

  .auth-header h1 {
    letter-spacing: 0.06em;
  }
}
