:root {
  --ink: #080507;
  --ink-soft: #171013;
  --paper: #fff8f8;
  --muted: #84777a;
  --line: rgba(255, 255, 255, 0.14);
  --red: #9b0714;
  --red-bright: #e5172b;
  --rose: #ffe5e8;
  --gold: #d7b56d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.light-page {
  background: #fff8f8;
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(229, 23, 43, 0.18), transparent 28rem),
    radial-gradient(circle at 80% 8%, rgba(215, 181, 109, 0.1), transparent 22rem),
    var(--ink);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.nav-shell {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 5, 7, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.18rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(229, 23, 43, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px 0 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8, 5, 7, 0.18), rgba(8, 5, 7, 0.48) 45%, #080507 96%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.light-particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 42%, rgba(229,23,43,0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 70%, rgba(215,181,109,0.34) 0 1px, transparent 2px);
  background-size: 180px 220px, 240px 260px, 320px 300px;
  animation: floatLights 16s linear infinite;
  opacity: 0.65;
}

@keyframes floatLights {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -40px, 0); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd2d7;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--red-bright);
}

.hero h1,
.section-title {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.86;
  max-width: 900px;
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-soft,
.icon-btn {
  border: 0;
  border-radius: var(--radius);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  font-weight: 800;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 18px 42px rgba(229, 23, 43, 0.34);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark {
  color: white;
  background: var(--ink);
}

.btn-soft {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 5, 7, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-soft:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.12);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div {
  padding: 18px 20px;
  background: rgba(8, 5, 7, 0.82);
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-size: 0.94rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.section {
  padding: 86px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  background: #20181a;
}

.category-card img,
.reel-card img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card::after,
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
  z-index: 1;
}

.category-card span,
.reel-card span {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-weight: 900;
}

.category-card:hover img,
.reel-card:hover img,
.product-card:hover img {
  transform: scale(1.06);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  color: var(--ink);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eadadc;
}

.product-media span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 5, 7, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 2px 0;
}

.product-title {
  display: block;
  font-weight: 900;
  line-height: 1.25;
}

.product-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-row {
  text-align: right;
  white-space: nowrap;
}

.price-row del {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.reel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border-radius: var(--radius);
  background: #20181a;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card,
.glass-panel,
.summary-card,
.admin-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.review-card {
  padding: 22px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.newsletter-band {
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 60px);
  background:
    linear-gradient(135deg, rgba(155, 7, 20, 0.92), rgba(8, 5, 7, 0.96)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
  color: white;
}

.footer {
  padding: 64px 0 112px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #060405;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.68);
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  border: 0;
  padding: 0 16px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 92px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.32);
}

.mobile-nav {
  position: fixed;
  z-index: 55;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 5, 7, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.mobile-nav a {
  display: grid;
  place-items: center;
  gap: 1px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.mobile-nav a span {
  font-size: 1.05rem;
}

.mobile-nav a.active {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  box-shadow: var(--shadow);
  transition: 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.page-hero {
  padding: 138px 0 42px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  border: 1px solid rgba(8, 5, 7, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
  cursor: pointer;
}

.chip.active {
  background: var(--ink);
  color: white;
}

.detail-grid,
.checkout-grid,
.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
}

.gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eadadc;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb-row button {
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.thumb-row button.active {
  border-color: var(--red);
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.option-row label {
  cursor: pointer;
}

.option-row input {
  position: absolute;
  opacity: 0;
}

.option-row span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 5, 7, 0.16);
  border-radius: var(--radius);
  background: white;
  padding: 0 12px;
}

.option-row input:checked + span {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 23, 43, 0.12);
}

.summary-card {
  background: white;
  color: var(--ink);
  border-color: rgba(8, 5, 7, 0.08);
  box-shadow: 0 24px 70px rgba(70, 20, 26, 0.12);
  padding: 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(8, 5, 7, 0.08);
}

.cart-item img {
  width: 96px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(8, 5, 7, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button,
.qty-control input {
  width: 38px;
  height: 36px;
  border: 0;
  background: white;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 800;
  font-size: 0.82rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 5, 7, 0.12);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

.payment-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(8, 5, 7, 0.1);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.payment-card.primary {
  border-color: rgba(229, 23, 43, 0.42);
  background: #fff1f2;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #090607;
  color: white;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: #060405;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.admin-sidebar button,
.admin-tab {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  cursor: pointer;
}

.admin-sidebar button.active,
.admin-tab.active {
  background: rgba(229, 23, 43, 0.16);
  color: white;
}

.admin-main {
  padding: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-card {
  padding: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.table-scroll {
  overflow-x: auto;
}

.modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.modal.open {
  display: grid;
}

.modal-panel {
  width: min(880px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
}

@media (max-width: 980px) {
  .nav-toggle,
  .mobile-nav {
    display: grid;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border-radius: 26px;
    background: rgba(8, 5, 7, 0.94);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: grid;
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .reel-row,
  .review-grid,
  .footer-grid,
  .detail-grid,
  .checkout-grid,
  .cart-grid,
  .admin-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .reel-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .reel-card {
    min-width: 68vw;
    scroll-snap-align: start;
  }

  .section-head,
  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-lockup span {
    font-size: 1rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5.4rem);
  }

  .section {
    padding: 58px 0;
  }

  .category-card {
    min-height: 180px;
  }

  .product-info {
    display: grid;
  }

  .price-row {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 78px 1fr;
  }

  .cart-item img {
    width: 78px;
    height: 98px;
  }

  .cart-item > .price-row {
    grid-column: 2;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 86px;
  }
}

