:root {
  --dusty-rose: #c69aa3;
  --rose-light: #f2e6e9;
  --pure-white: #fdfbfb;
  --charcoal: #262326;
  --slate: #5b585c;
  --line: rgba(38, 35, 38, 0.14);
  --shadow: 0 24px 60px rgba(38, 35, 38, 0.12);
}

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

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--charcoal);
  background: var(--pure-white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero,
.section-title,
.product-card,
.hero-card,
.account-card,
.contact-grid > div,
.faq-grid details,
.newsletter,
.footer-grid > div {
  animation: fadeUp 0.7s ease both;
}

.hero-text h1,
.hero-text p,
.hero-actions,
.hero-meta {
  animation: fadeScale 0.7s ease both;
}

.hero-text h1 {
  animation-delay: 0.05s;
}

.hero-text p {
  animation-delay: 0.12s;
}

.hero-actions {
  animation-delay: 0.18s;
}

.hero-meta {
  animation-delay: 0.24s;
}

.product-card {
  animation-delay: 0.05s;
}

.hero-card {
  animation-delay: 0.1s;
}

.account-card {
  animation-delay: 0.12s;
}

.product-grid .product-card:nth-child(1) { animation-delay: 0.04s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.08s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.12s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.16s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.2s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.24s; }
.product-grid .product-card:nth-child(7) { animation-delay: 0.28s; }
.product-grid .product-card:nth-child(8) { animation-delay: 0.32s; }
.product-grid .product-card:nth-child(9) { animation-delay: 0.36s; }
.product-grid .product-card:nth-child(10) { animation-delay: 0.4s; }
.product-grid .product-card:nth-child(11) { animation-delay: 0.44s; }
.product-grid .product-card:nth-child(12) { animation-delay: 0.48s; }

.trust-grid .trust-card,
.coa-grid .coa-card,
.account-grid .account-card {
  animation: fadeUp 0.7s ease both;
}

.trust-grid .trust-card:nth-child(1) { animation-delay: 0.06s; }
.trust-grid .trust-card:nth-child(2) { animation-delay: 0.12s; }
.trust-grid .trust-card:nth-child(3) { animation-delay: 0.18s; }
.trust-grid .trust-card:nth-child(4) { animation-delay: 0.24s; }

.coa-grid .coa-card:nth-child(1) { animation-delay: 0.04s; }
.coa-grid .coa-card:nth-child(2) { animation-delay: 0.08s; }
.coa-grid .coa-card:nth-child(3) { animation-delay: 0.12s; }
.coa-grid .coa-card:nth-child(4) { animation-delay: 0.16s; }
.coa-grid .coa-card:nth-child(5) { animation-delay: 0.2s; }
.coa-grid .coa-card:nth-child(6) { animation-delay: 0.24s; }
.coa-grid .coa-card:nth-child(7) { animation-delay: 0.28s; }
.coa-grid .coa-card:nth-child(8) { animation-delay: 0.32s; }

.footer-grid > div {
  animation: fadeUp 0.7s ease both;
}

.hero .molecule {
  animation: floatSoft 6s ease-in-out infinite;
}

.promo-banner {
  background: linear-gradient(120deg, var(--dusty-rose), #f7e3e6, var(--dusty-rose));
  background-size: 200% 200%;
  animation: shimmer 6s ease-in-out infinite;
}

.primary,
.ghost {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(42, 38, 41, 0.12);
}

.product-card,
.account-card,
.contact-grid > div,
.faq-grid details {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.account-card:hover,
.contact-grid > div:hover,
.faq-grid details:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(42, 38, 41, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.bg-wrap {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(198, 154, 163, 0.25), transparent 55%),
    radial-gradient(circle at 78% 10%, rgba(198, 154, 163, 0.18), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(38, 35, 38, 0.12), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(242, 230, 233, 0.6));
  pointer-events: none;
  z-index: -2;
}

.bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><g fill='none' stroke='rgba(38,35,38,0.08)' stroke-width='1'><path d='M0 30 H180'/><path d='M0 90 H180'/><path d='M0 150 H180'/><path d='M30 0 V180'/><path d='M90 0 V180'/><path d='M150 0 V180'/></g></svg>");
  opacity: 0.5;
  z-index: -1;
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: 0.7rem;
}

h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.02em;
}

.promo-banner {
  background: var(--charcoal);
  color: var(--pure-white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
  z-index: 40;
}

.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--dusty-rose);
  color: white;
  font-weight: 700;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.logo-title {
  font-weight: 700;
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--slate);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.nav-links a.active {
  color: var(--charcoal);
  font-weight: 600;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width 0.25s ease;
}

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

.dropdown {
  position: relative;
}

.dropdown-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 0.8rem;
  display: grid;
  gap: 0.5rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-input:checked + .dropdown-toggle + .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: var(--rose-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}


.primary,
.ghost {
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
}

.primary {
  background: var(--charcoal);
  color: white;
}

.primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.ghost:hover {
  background: var(--rose-light);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 1.2rem;
}

.lead {
  color: var(--slate);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-meta h4 {
  font-size: 0.95rem;
}

.hero-meta p {
  color: var(--slate);
  font-size: 0.85rem;
}

.hero-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 154, 163, 0.2);
  border-radius: 24px;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.tag {
  background: var(--rose-light);
  color: var(--charcoal);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.price-lines {
  display: grid;
  gap: 1rem;
}

.price-lines h3 {
  font-size: 1.5rem;
}

.price-lines p {
  font-size: 1.15rem;
  color: var(--dusty-rose);
  font-weight: 600;
}

.small {
  font-size: 0.8rem;
  color: var(--slate);
}

.molecule {
  position: absolute;
  right: 1.2rem;
  bottom: 0.4rem;
  color: rgba(198, 154, 163, 0.4);
  width: 140px;
  height: 140px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.shop,
.trust,
.details,
.faq,
.contact,
.account {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.search-wrap input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  min-width: 260px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.chip {
  border: 1px solid var(--line);
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(42, 38, 41, 0.12);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(38, 35, 38, 0.12);
  padding: 1.1rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(38, 35, 38, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-image {
  width: 100%;
  height: clamp(260px, 36vw, 320px);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 0.6rem;
  border: 1px solid rgba(38, 35, 38, 0.12);
}

.product-image img {
  width: clamp(190px, 30vw, 260px);
  height: clamp(190px, 30vw, 260px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 20px rgba(38, 35, 38, 0.22));
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(38, 35, 38, 0.12);
  border-color: rgba(38, 35, 38, 0.18);
}

.product-card h3 {
  font-size: 1.1rem;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--slate);
}

.price {
  font-weight: 700;
  color: var(--dusty-rose);
  font-size: 1.15rem;
}

.product-card .ghost,
.product-card .primary {
  width: 100%;
  text-align: center;
}

.badge {
  position: absolute;
  top: 1.1rem;
  right: -3.1rem;
  background: #a0333a;
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 3.4rem;
  transform: rotate(45deg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-card {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: white;
}

.coa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.coa-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 0.8rem;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.coa-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.detail-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail-panels div {
  padding: 1.8rem;
  border-radius: 20px;
  background: var(--rose-light);
}

.detail-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--rose-light);
  margin-bottom: 1rem;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  background: white;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  background: white;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.contact-grid .primary {
  justify-self: start;
  margin-top: 0.4rem;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.account-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem;
  background: white;
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.account-details {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--slate);
}

.account-details strong {
  color: var(--charcoal);
  font-weight: 600;
}

.admin {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.admin.hidden {
  display: none;
}

.admin-guard {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 2.5rem;
}

.admin-guard-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
  background: white;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.admin-guard-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}

.admin-login {
  display: grid;
  gap: 0.8rem;
}

.admin-status {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--slate);
}

.admin-status strong {
  color: var(--charcoal);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem;
  background: white;
  display: grid;
  gap: 1rem;
}

.admin-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.admin-table {
  display: grid;
  gap: 0.6rem;
}

.admin-filters {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0.8rem;
}

.admin-filters input,
.admin-filters select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}

.admin-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 0.7fr 1.4fr;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

.admin-row strong {
  color: var(--charcoal);
}

.admin-row select,
.admin-row button {
  font-size: 0.8rem;
}

.admin-order {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.admin-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.code-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.code-pill {
  background: var(--rose-light);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.account-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.link-button {
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

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

.account-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.account-dashboard {
  background: var(--rose-light);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.dashboard-stats h4 {
  font-size: 1.1rem;
}

.redeem-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.sales-list {
  display: grid;
  gap: 0.6rem;
}

.sales-item {
  background: white;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 2.5rem 2rem;
  background: white;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.newsletter form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.newsletter input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  min-width: 220px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 90px;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-social {
  display: grid;
  gap: 0.5rem;
}

.footer-social a {
  color: var(--charcoal);
  font-size: 0.92rem;
}

.footer-social a:hover {
  color: var(--dusty-rose);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: white;
  border-left: 1px solid var(--line);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: -18px 0 40px rgba(38, 35, 38, 0.12);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-header h3 {
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

#closeCart {
  border: 1px solid var(--line);
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#closeCart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(42, 38, 41, 0.12);
}

#cartItems {
  flex: 1;
  display: grid;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}

#cartItems > p {
  color: var(--slate);
  text-align: center;
  margin-top: 2rem;
}

.cart-item {
  display: grid;
  gap: 0.3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.cart-item-main {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.7rem;
  align-items: center;
}

.cart-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(38, 35, 38, 0.12);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cart-item-thumb img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.cart-item-info strong {
  display: block;
}

.cart-item-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.cart-item-actions button {
  border: 1px solid var(--line);
  background: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
}

.cart-item-actions .remove {
  width: auto;
  height: 28px;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #a0333a;
  border-color: rgba(160, 51, 58, 0.3);
}

.cart-item-actions .remove:hover {
  background: rgba(160, 51, 58, 0.08);
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total strong {
  font-size: 1.05rem;
}

.cart-footer .primary,
.cart-footer .ghost {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(38, 35, 38, 0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.chat-widget {
  position: fixed;
  right: 1.5rem;
  bottom: calc(2rem + 72px);
  z-index: 50;
  display: grid;
  gap: 0.6rem;
}

.chat-toggle {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(38, 35, 38, 0.12);
}

.chat-panel {
  width: min(360px, 90vw);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(38, 35, 38, 0.14);
  display: none;
  overflow: hidden;
}

.chat-panel.active {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--rose-light);
}

.chat-close {
  border: 1px solid var(--line);
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
}

.chat-body {
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.6rem;
  max-height: 320px;
  overflow-y: auto;
}

.chat-bubble {
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-bubble.ai {
  background: var(--rose-light);
}

.chat-bubble.user {
  background: #262326;
  color: white;
  justify-self: end;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.8rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.chat-input input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

@media (max-width: 720px) {
  .chat-widget {
    right: 1rem;
    bottom: calc(1rem + 72px);
  }
}

.modal-content {
  background: white;
  border-radius: 22px;
  padding: 2rem;
  width: min(520px, 90vw);
  position: relative;
  display: grid;
  gap: 1rem;
}

.modal-content input {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1rem;
}

.modal-content textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-family: inherit;
  resize: vertical;
}

.checkout-form {
  display: grid;
  gap: 0.8rem;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

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

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dusty-rose);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 25;
}

@media (max-width: 1200px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    order: 2;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .primary,
  .nav-actions .ghost {
    padding: 0.5rem 1.05rem;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    order: 2;
  }
}

@media (max-width: 992px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    display: none;
    z-index: 30;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle-input:checked ~ .nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    width: 100%;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 1px solid var(--line);
    box-shadow: none;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-input:checked + .dropdown-toggle + .dropdown-menu {
    display: grid;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .promo-banner {
    font-size: 0.8rem;
  }

  .nav-wrap {
    padding: 1rem 1.5rem;
  }

  .hero,
  .shop,
  .trust,
  .details,
  .faq,
  .contact {
    padding: 3rem 1.5rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .primary,
  .nav-actions .ghost {
    width: 100%;
    text-align: center;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-wrap {
    width: 100%;
  }

  .search-wrap input {
    width: 100%;
    min-width: 0;
  }

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

  .product-card {
    padding: 1.2rem;
  }

  .detail-panels,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter form {
    width: 100%;
  }

  .newsletter input {
    width: 100%;
    min-width: 0;
  }

  .cart-drawer {
    width: 100%;
  }

  .modal-content {
    padding: 1.4rem;
    width: min(92vw, 520px);
  }
}

@media (max-width: 480px) {
  .promo-banner {
    padding: 0.6rem 0.8rem;
  }

  .nav-wrap {
    padding: 0.9rem 1.1rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .hero-card {
    padding: 1.4rem;
  }

  .price-lines h3 {
    font-size: 1.2rem;
  }

  .price-lines p {
    font-size: 1rem;
  }

  .primary,
  .ghost {
    padding: 0.55rem 1rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }
}

.shop,
.trust,
.details,
.faq,
.contact,
.account,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

