 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  --radius: 22px;
}
html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo span {
  color: var(--gold);
}
.menu-wrap {
  position: relative;
}

.menu-button {
  background: var(--gold);
  color: #080808;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.dropdown {
  position: absolute;
  right: 0;
  top: 44px;
  width: 235px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 14, 14, 0.97);
  box-shadow: var(--shadow);
  display: none;
}
.menu-wrap:hover .dropdown,
.dropdown:hover {
  display: grid;
  gap: 6px;
}

.dropdown a {
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}

.dropdown a:hover {
  background: var(--gold-soft);
  color: var(--text);
}
/* ================= GLOBAL LAYOUT ================= */

.page-shell {
  width: min(1200px, 86%);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  margin-bottom: 24px;

  /* GOLD TEXT EFFECT */
 background: linear-gradient(
  90deg,
  #f5e6b8 0%,
  #d4af37 30%,
  #c9a227 50%,
  #d4af37 70%,
  #f5e6b8 100%
);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* GLOW */
  text-shadow:
  0 0 8px rgba(212, 175, 55, 0.35),
  0 0 18px rgba(212, 175, 55, 0.2),
  0 0 40px rgba(212, 175, 55, 0.12);

  /* DEPTH */
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/logo.png") center/contain no-repeat;
  opacity: 0.155; /* controls fade */
  pointer-events: none;
  z-index: 0;
}

..hero-content {
  position: relative;
  z-index: 2;
  max-width: 890px;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero p,
.page-hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 34px;

  text-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}
.btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--gold);
  color: #090909;

  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.4),
    0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn.secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-3px);
}
.section {
  padding: 90px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.section-header p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

/* ================= BOOK CARDS ================= */

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.book-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.book-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.45);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
}

.book-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-info h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.book-info p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ================= INDIVIDUAL BOOK PAGE ================= */

.book-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 54px;
  padding: 80px 7%;
}

.book-hero-cover-wrap {
  display: flex;
  justify-content: center;
}

.book-hero-cover {
  width: min(440px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75);
}

.book-hero-text h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.book-hero-text p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 26px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.meta-pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}
/* ================= PAGE HERO ================= */

.page-hero {
  min-height: 48vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 7%;
  border-bottom: 1px solid var(--line);
}
/* ================= FOOTER ================= */

.footer {
  padding: 42px 7%;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--text);
}
/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .card-grid,
  .book-grid,
  .book-hero {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 1fr;
  }

  .book-card .book-cover {
    max-width: 280px;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 12px;
  }

  .book-hero {
    padding-top: 45px;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding: 0 5%;
  }

  .logo {
    font-size: 1rem;
  }

  .menu-button {
    padding: 10px 14px;
  }

  .hero h1,
  .page-hero h1,
  .book-hero-text h1 {
    font-size: 3rem;
  }
}
.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: rgba(10, 10, 10, 0.95);
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.25),
    0 20px 55px rgba(0, 0, 0, 0.65);
  z-index: 9999;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast strong {
  color: var(--gold);
}.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: rgba(10, 10, 10, 0.95);
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.25),
    0 20px 55px rgba(0, 0, 0, 0.65);
  z-index: 9999;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast strong {
  color: var(--gold);
}

/* ===== CART LAYOUT ===== */

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* ===== CART ITEMS ===== */

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
  transition: 0.25s ease;
}

.cart-item:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-3px);
}

.cart-item h3 {
  font-size: 1.2rem;
}

.cart-item p {
  color: var(--muted);
}

/* ===== REMOVE BUTTON ===== */

.remove-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition: 0.25s;
}

.remove-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== SUMMARY PANEL ===== */

.cart-summary {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 25px;
  height: fit-content;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.cart-summary h2 {
  margin-bottom: 20px;
}

/* ===== TOTAL ROW ===== */
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* ===== CHECKOUT BUTTON ===== */

.checkout-btn {
  width: 100%;
  font-size: 1.1rem;
}

/* ===== EMPTY CART ===== */

.cart-empty {
  text-align: center;
  padding: 60px;
  color: var(--muted);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.payment-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.025)
  );
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.payment-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.payment-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.payment-card strong {
  color: var(--gold);
}

.payment-note {
  margin-top: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.payment-note h2 {
  margin-bottom: 10px;
}

.payment-note p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
}
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subscription-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.025)
  );
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.subscription-card.featured {
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow:
    0 0 35px rgba(212,175,55,0.22),
    var(--shadow);
}

.subscription-card h2 {
  font-size: 1.8rem;
  margin: 12px 0;
}

.subscription-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.subscription-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.subscription-card li {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.subscription-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.subscription-card .btn {
  margin-top: auto;
}

@media (max-width: 900px) {
  .subscription-grid {
    grid-template-columns: 1fr;
  }

  .subscription-card.featured {
    transform: none;
  }
}
.price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin: 8px 0 16px;
}
/* ===== MEMBERS CINEMATIC PAGES ===== */

.member-hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 7%;
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.12), transparent 35%),
    linear-gradient(180deg, rgba(0,0,0,0.2), #050505);
  border-bottom: 1px solid var(--line);
}

.member-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  text-transform: uppercase;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.member-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.15rem;
}

.member-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.025)
  );
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.45);
}

.member-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.member-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* ===== PREMIUM M LIST PAGE ===== */

.m-list-hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px 7%;
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.26), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(180deg, #0b0904 0%, #050505 90%);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  overflow: hidden;
}

.m-list-hero h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  text-transform: uppercase;
  letter-spacing: -0.08em;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #fff6d5,
    #d4af37,
    #c9a227,
    #fff6d5
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(212,175,55,0.35),
    0 0 60px rgba(212,175,55,0.18);
}

.m-list-hero p {
  color: #d8d0bd;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.18rem;
}

.premium-card {
  border-color: rgba(212,175,55,0.45);
  background:
    linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.025));
  box-shadow:
    0 0 35px rgba(212,175,55,0.2),
    var(--shadow);
}
.auth-cinema-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 80px 7%;
  background:
    radial-gradient(circle at 25% 40%, rgba(212,175,55,0.18), transparent 28%),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.06), transparent 24%),
    linear-gradient(180deg, #090806 0%, #050505 100%);
}

.auth-portal {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.auth-left {
  padding: 40px;
}

.auth-left h1 {
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin: 18px 0 24px;
  background: linear-gradient(90deg, #fff6d5, #d4af37, #f5e6b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-left p {
  color: var(--muted);
  max-width: 590px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.auth-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.auth-perks span {
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
  font-size: 0.85rem;
  font-weight: 800;
}

.cinematic-auth {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.025)
  );
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 30px;
  padding: 38px;
  box-shadow:
    0 0 45px rgba(212,175,55,0.18),
    0 30px 90px rgba(0,0,0,0.75);
}

.cinematic-auth h2 {
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cinematic-auth input {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  outline: none;
}

.cinematic-auth input:focus {
  border-color: var(--gold);
}

.cinematic-auth .btn {
  width: 100%;
  margin-top: 8px;
}

.auth-switch {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.auth-switch a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 900px) {
  .auth-portal {
    grid-template-columns: 1fr;
  }

  .auth-left {
    text-align: center;
    padding: 10px;
  }

  .auth-left p {
    margin: 0 auto;
  }

  .auth-perks {
    justify-content: center;
  }
}
.signup-cinema-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 90px 7%;
  background:
    radial-gradient(circle at 18% 35%, rgba(212,175,55,0.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 70% 85%, rgba(212,175,55,0.12), transparent 28%),
    linear-gradient(180deg, #0b0904 0%, #050505 85%);
  overflow: hidden;
}

.signup-portal {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
  position: relative;
}

.signup-portal::before {
  content: "";
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 38px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(212,175,55,0.06);
}

.signup-left {
  position: relative;
  z-index: 2;
  padding: 42px;
}

.signup-left h1 {
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin: 18px 0 28px;
  background: linear-gradient(
    90deg,
    #fff6d5,
    #d4af37,
    #c9a227,
    #f7e7b2
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(212,175,55,0.28),
    0 0 70px rgba(212,175,55,0.14);
}

.signup-left p {
  color: #d8d0bd;
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.85;
}

.signup-luxury-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.signup-luxury-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}

.signup-luxury-list span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.signup-luxury-list strong {
  color: var(--text);
}

.signup-box {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  border: 1px solid rgba(212,175,55,0.48);
  border-radius: 32px;
  padding: 42px;
  box-shadow:
    0 0 55px rgba(212,175,55,0.2),
    0 35px 100px rgba(0,0,0,0.8);
}

.signup-box h2 {
  font-size: 2.6rem;
  text-transform: uppercase;
  margin: 16px 0 10px;
}

.signup-box p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.signup-box input {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  padding: 16px 18px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.42);
  color: var(--text);
  outline: none;
}

.signup-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
}

.signup-box .btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .signup-portal {
    grid-template-columns: 1fr;
  }

  .signup-left {
    text-align: center;
    padding: 12px;
  }

  .signup-left p {
    margin: 0 auto;
  }
}
.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  white-space: nowrap; /* prevents line breaks */
  font-size: 16px;
  font-weight: 600;

  padding: 18px 28px;
}

.price-text {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;

  letter-spacing: 1px;
}
.price-btn {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.price-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.9);
}
.subscription-grid {
  align-items: stretch;
}

.subscription-card {
  min-height: 620px;
  overflow: hidden;
}

.subscription-card .price {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 28px 0;
}

.subscription-card .btn,
.subscription-card button {
  width: 100%;
  min-height: 62px;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  padding: 16px 22px;
  margin-top: auto;
}

.subscription-card .price-text {
  display: inline-block;
  font-size: 1.20rem;
  font-weight: 900;
  color: #fff;
  margin-left: 9px;
}

.subscription-card ul {
  margin-bottom: 30px;
}

.subscription-card li {
  font-size: 0.98rem;
}

.subscription-card.featured {
  min-height: 665px;
}
.subscription-card .btn,
.subscription-card button {
  align-self: flex-start;   /* moves button left */
  margin-left: 10px;        /* fine control */
}
.subscription-card {
  display: flex;
  flex-direction: column;
}

.subscription-card .btn {
  margin-left: 0;
}
.auth-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.auth-box.cinematic {
  width: 420px;
  padding: 50px 40px;
  border-radius: 18px;

  background: linear-gradient(145deg, #0a0a0a, #121212);
  border: 1px solid rgba(212, 175, 55, 0.3);

  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.15),
    inset 0 0 30px rgba(212, 175, 55, 0.05);

  text-align: center;
}

.auth-box.cinematic h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.auth-box.cinematic p {
  color: #aaa;
  margin-bottom: 25px;
}

.auth-box.cinematic input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;

  background: #111;
  color: #fff;
  margin-bottom: 20px;

  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.auth-box.cinematic .btn {
  width: 100%;
  border-radius: 999px;

  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  transition: all 0.25s ease;
}

.auth-box.cinematic .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.9);
}
.tagline {
  font-size: 0.9rem;
  color: #d4af37;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.subscription-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* forces everything left */
}

.subscription-card .btn {
  width: 100%;
  margin-left: 0;
}
.subscription-card .btn {
  width: calc(100% - 40px); /* matches inner padding */
  margin-left: 0;
}

.archive-tease {
  color: var(--gold) !important;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.shipping-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.shipping-form {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.shipping-form h3 {
  margin-bottom: 14px;
}

.shipping-form input {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--text);
}

.shipping-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ===== SHIPPING FORM OVERLAP FIX ===== */

.cart-summary {
  overflow: visible;
}

.shipping-form {
  width: 100%;
  display: block;
}

.shipping-form input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1100px) {
  .shipping-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    width: 100%;
  }
}

/* ===== FINAL CHECKOUT POLISH ===== */

.total-row {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 10px;
  font-weight: 900;
  color: var(--gold);
}

.shipping-form {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.shipping-form h3 {
  margin-bottom: 14px;
}

.shipping-form input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--text);
}

.shipping-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1100px) {
  .shipping-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.checkout-btn {
  margin-top: 6px;
}

.success-note {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== ADMIN PANEL ===== */

.admin-input {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.38);
  color: var(--text);
}

.admin-input:focus {
  outline: none;
  border-color: var(--gold);
}

.admin-textarea {
  min-height: 160px;
  resize: vertical;
}

.admin-content-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.admin-item {
  position: relative;
}

/* ===== CART FINAL CLEAN FIX ===== */

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}

.cart-summary {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  position: sticky;
  top: 110px;
}

.cart-summary * {
  box-sizing: border-box;
}

.shipping-form,
.shipping-note {
  width: 100%;
}

.shipping-form input {
  width: 100%;
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 980px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    max-width: 100%;
    position: static;
  }
}

@media (max-width: 520px) {
  .shipping-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== WHOLESALE PAGE ===== */

.pricing-table {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.pricing-row span {
  color: var(--muted);
}

.pricing-row strong {
  color: var(--gold);
  text-align: right;
}

@media (max-width: 650px) {
  .pricing-row {
    flex-direction: column;
  }

  .pricing-row strong {
    text-align: left;
  }
}
