/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Nunito:wght@400;600;700&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #160d20;        /* deep plum */
  --surface:   #1f1230;        /* slightly lighter plum */
  --border:    #3b1f52;        /* purple border */
  --accent:    #f472b6;        /* hot pink */
  --accent-dk: #db2777;        /* deeper pink */
  --accent2:   #c084fc;        /* lavender */
  --text:      #fce7f3;        /* very soft pink-white */
  --muted:     #a78bbd;        /* muted lavender */
  --radius:    12px;
  --max-w:     1100px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,13,32,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

nav { display: flex; gap: 2rem; }

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, #2d0a3e 0%, #160d20 55%, #1a0d2e 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Soft blurred glow blobs for depth */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.hero::before {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -180px; left: -120px;
}
.hero::after {
  width: 400px; height: 400px;
  background: var(--accent2);
  bottom: -160px; right: -100px;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(244,114,182,0.4);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  position: relative;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: 2.2rem; color: var(--accent); margin-bottom: 0.5rem; }
.page-hero p  { color: var(--muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(244,114,182,0.35);
  font-family: 'Nunito', sans-serif;
}

.btn:hover  { opacity: 0.88; box-shadow: 0 6px 28px rgba(244,114,182,0.5); }
.btn:active { transform: scale(0.97); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--accent); }
.feature p  { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   PRODUCT GRID / CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244,114,182,0.18), 0 0 0 1px rgba(244,114,182,0.1);
}

/* Real product photos */
.card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Two-photo hover gallery */
.card-img-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.card-img-gallery .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.35s ease;
}

.card-img-gallery .gallery-main { opacity: 1; }
.card-img-gallery .gallery-alt  { opacity: 0; }

.card:hover .gallery-main { opacity: 0; }
.card:hover .gallery-alt  { opacity: 1; }

/* Image dot indicators */
.card-img-dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
}
.card-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.35s ease;
}
.card-img-dot.dot-active { background: rgba(255,255,255,0.9); }
.card:hover .card-img-dot.dot-active { background: rgba(255,255,255,0.35); }
.card:hover .card-img-dot:not(.dot-active) { background: rgba(255,255,255,0.9); }

/* Placeholder until you drop in real photos */
.placeholder-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #2a1040, #1f1230);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card-body h3 { font-size: 1.05rem; }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  align-self: flex-start;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem 0;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--surface); }

.contact-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: #0e0918;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

footer p       { color: var(--muted); font-size: 0.9rem; }
.footer-note   { margin-top: 0.4rem; font-size: 0.8rem; }

/* ============================================================
   BUY MODAL
   ============================================================ */

#buy-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#buy-modal.bm-active {
  opacity: 1;
  pointer-events: all;
}

.bm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 18, 0.88);
  backdrop-filter: blur(6px);
}

.bm-dialog {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(244,114,182,0.15);
  animation: bm-slide-up 0.28s cubic-bezier(0.34,1.26,0.64,1) both;
}

@keyframes bm-slide-up {
  from { transform: translateY(30px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.bm-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.bm-close:hover { background: rgba(244,114,182,0.3); }

/* Inner layout: image left, content right */
.bm-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.bm-inner.bm-no-img {
  grid-template-columns: 1fr;
}

/* Single image layout — image on top, content below */
.bm-dialog-narrow {
  max-width: 500px;
}

.bm-inner.bm-single-img {
  grid-template-columns: 1fr;
}

.bm-inner.bm-single-img .bm-img-col {
  border-right: none;
  border-bottom: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
}

.bm-inner.bm-single-img .bm-stacked-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.bm-img-col {
  border-right: 1px solid var(--border);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 16px 0 0 16px;
  position: relative;
}

.bm-stacked-img {
  width: 100%;
  display: block;
  background: #0e0918;
}

.bm-stacked-img + .bm-stacked-img {
  border-top: 3px solid var(--bg);
}


.bm-content-col {
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.bm-product-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  padding-right: 2.5rem;
  line-height: 1.3;
}

.bm-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Option rows */
.bm-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bm-option {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}

.bm-option:not(.bm-locked):hover {
  border-color: var(--accent);
  background: rgba(244,114,182,0.05);
}

.bm-option.bm-selected {
  border-color: var(--accent);
  background: rgba(244,114,182,0.08);
}

.bm-option.bm-locked {
  cursor: default;
  opacity: 0.85;
}

.bm-option.bm-premium {
  border-color: #a16207;
  background: linear-gradient(135deg, rgba(161,98,7,0.12), rgba(234,179,8,0.06));
}

.bm-option.bm-premium:hover {
  border-color: #ca8a04;
  background: linear-gradient(135deg, rgba(161,98,7,0.2), rgba(234,179,8,0.1));
}

.bm-option.bm-premium.bm-selected {
  border-color: #eab308;
  background: linear-gradient(135deg, rgba(161,98,7,0.25), rgba(234,179,8,0.12));
}

.bm-option.bm-premium .bm-opt-label {
  color: #fde68a;
}

.bm-option.bm-premium .bm-opt-price {
  color: #fbbf24;
  background: rgba(234,179,8,0.15);
  border-color: rgba(234,179,8,0.3);
}

/* Mid tier — Extended Wear & Playtime Worn */
.bm-option.bm-tier-mid {
  border-color: rgba(192,132,252,0.3);
  background: linear-gradient(135deg, rgba(192,132,252,0.06), rgba(244,114,182,0.04));
}

.bm-option.bm-tier-mid:not(.bm-locked):hover {
  border-color: rgba(192,132,252,0.55);
  background: linear-gradient(135deg, rgba(192,132,252,0.12), rgba(244,114,182,0.07));
}

.bm-option.bm-tier-mid.bm-selected {
  border-color: #c084fc;
  background: linear-gradient(135deg, rgba(192,132,252,0.16), rgba(244,114,182,0.09));
}

.bm-option.bm-tier-mid .bm-opt-label {
  color: #d8b4fe;
}

.bm-option.bm-tier-mid .bm-opt-price {
  color: #c084fc;
  background: rgba(192,132,252,0.15);
  border-color: rgba(192,132,252,0.28);
}

/* Hide native checkbox, style via the label */
.bm-checkbox {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  margin-top: 0.15rem;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  cursor: pointer;
}

.bm-checkbox:checked {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
}

.bm-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.bm-checkbox:disabled { cursor: default; }

.bm-opt-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bm-opt-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.bm-opt-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.bm-opt-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.bm-opt-price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
  align-self: center;
  background: rgba(244,114,182,0.12);
  border: 1px solid rgba(244,114,182,0.22);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
}

/* Total row */
.bm-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.bm-shipping-note {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  text-align: right;
  margin-top: -0.25rem;
  padding: 0 0.25rem;
}

.bm-total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.bm-total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.15s;
}

/* Contact fields */
.bm-contact-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem 1.1rem;
}

.bm-contact-heading {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.bm-contact-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.bm-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bm-contact-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bm-platform-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
  text-align: right;
}

.bm-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  background: #0e0918;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.bm-input-wrap:focus-within {
  border-color: var(--accent);
}

.bm-at {
  padding: 0 0.4rem 0 0.75rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  user-select: none;
}

.bm-contact-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
}

.bm-contact-input::placeholder { color: var(--border); }

/* Disabled Order button state */
.bm-order-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success state */
.bm-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
  text-align: center;
  animation: bm-fade-in 0.3s ease both;
}

@keyframes bm-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bm-success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 0 24px rgba(244,114,182,0.45);
}

.bm-success-msg {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  max-width: 260px;
  line-height: 1.4;
}

.bm-success-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.5;
  margin-top: -0.25rem;
}

/* Tier dividers */
.bm-tier-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.55;
  margin: 0.15rem 0;
}
.bm-tier-divider::before,
.bm-tier-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Action buttons — sticky at bottom of content col */
.bm-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  background: var(--surface);
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.bm-cancel-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  font-family: inherit;
  transition: color 0.2s;
}
.bm-cancel-btn:hover { color: var(--text); }

.bm-order-error {
  font-size: 0.82rem;
  color: #f87171;
  margin-top: -0.25rem;
}

/* Responsive: stack on narrow screens */
@media (max-width: 620px) {
  .bm-inner {
    grid-template-columns: 1fr;
  }
  .bm-img-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
    max-height: 220px;
  }
  .bm-product-img { object-position: center 20%; }
  .bm-content-col { padding: 1.25rem; }
  .bm-product-name { font-size: 1.4rem; }
}

/* ============================================================
   STOCK BADGES
   ============================================================ */

/* The image containers need relative positioning for the badge overlay */
.card-img-gallery,
.placeholder-img { position: relative; }

.stock-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 5;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  pointer-events: none;
}

.stock-in   { background: #22c55e; color: #fff; }
.stock-low  { background: #f59e0b; color: #0f0f0f; }
.stock-out  { background: rgba(100,100,120,0.85); color: #ccc; }
.stock-sold { background: #7c3aed; color: #fff; }

.card-sold { opacity: 0.55; }

/* ============================================================
   LIGHTBOX
   ============================================================ */

/* Make gallery containers and standalone images show a pointer */
.card-img-gallery,
img.card-img { cursor: zoom-in; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#lightbox.lb-active {
  opacity: 1;
  pointer-events: all;
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 18, 0.92);
  backdrop-filter: blur(6px);
}

.lb-stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lb-img.lb-img-visible { opacity: 1; }

/* Close button */
.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(244,114,182,0.35); }

/* Prev / Next arrows */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover,
.lb-next:hover { background: rgba(244,114,182,0.35); }

/* Photo counter */
.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   AGE GATE
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.ag-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 18, 0.97);
  backdrop-filter: blur(8px);
}

.ag-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.75rem 2.25rem 2rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(244,114,182,0.1);
}

.ag-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.ag-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.ag-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ag-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.ag-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ag-exit {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.ag-exit:hover { border-color: var(--muted); color: var(--text); }

.ag-note {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  nav { gap: 1rem; }
  .hero { padding: 4rem 0; }
  .section { padding: 3rem 0; }
}
