:root {
  color-scheme: light;
  --ink: #181f1d;
  --muted: #64716d;
  --paper: #fffdf7;
  --paper-strong: #fff6df;
  --soft: #f2f7ef;
  --line: #dce4da;
  --green: #b55216;
  --green-dark: #5a230d;
  --gold: #e08424;
  --gold-dark: #8a3d10;
  --rose: #9b3a1f;
  --blue: #7a3516;
  --teal: #c46a1d;
  --shadow: 0 24px 64px rgba(70, 31, 12, 0.17);
  --soft-shadow: 0 12px 34px rgba(70, 31, 12, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(181, 82, 22, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(224, 132, 36, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

button,
a,
input,
select,
textarea {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 clamp(16px, 2vw, 36px);
  background:
    linear-gradient(90deg, #120704, #4a1c0b 46%, #8a3d10);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
}

.announcement-bar button,
.announcement-bar a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.announcement-bar a {
  width: 24px;
  height: 24px;
  font-size: 20px;
}

.announcement-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 54px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  min-height: 92px;
  margin: 0 clamp(10px, 1.8vw, 28px);
  padding: 12px clamp(14px, 2vw, 28px);
  border: 1px solid rgba(224, 132, 36, 0.22);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 232, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(70, 31, 12, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand:hover,
.brand:focus-visible {
  transform: none;
  box-shadow: none;
}

.brand-logo {
  width: clamp(230px, 20vw, 330px);
  height: auto;
  max-height: 76px;
  border-radius: 6px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(70, 31, 12, 0.12));
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #101010;
  background: #ffe100;
  color: #101010;
  box-shadow: none;
  font-size: 25px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.brand strong {
  color: #242225;
  font-size: clamp(34px, 3.15vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  border: 1px solid rgba(224, 132, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #3d332c;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  white-space: nowrap;
}

.main-nav .has-menu::after {
  content: "⌄";
  margin-left: 7px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #fff4dc;
  color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(181, 82, 22, 0.12);
  transform: translateY(-1px);
}

.cart-button,
.icon-button,
.filter-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 44px;
  padding: 10px 14px;
  border-color: rgba(181, 82, 22, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(70, 31, 12, 0.08);
  color: #3d332c;
  font-size: 14px;
  font-weight: 850;
}

.cart-button:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.cart-button strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(224, 132, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.header-icon {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 999px;
  color: #3d332c;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.header-icon.accent {
  background: linear-gradient(135deg, #1c8f42, #0f6f34);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 111, 52, 0.2);
  font-size: 14px;
}

.header-icon:hover,
.header-icon:focus-visible {
  background: #fff4dc;
  color: var(--green-dark);
  transform: translateY(-1px);
}

.header-icon.accent:hover,
.header-icon.accent:focus-visible {
  background: linear-gradient(135deg, #0f6f34, #094f25);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: stretch;
  min-height: calc(100vh - 82px);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(46px, 6vw, 86px) clamp(22px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 42px 4vw auto auto;
  width: min(580px, 42vw);
  height: min(580px, 42vw);
  border: 1px solid rgba(224, 132, 36, 0.24);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(224, 132, 36, 0.14) 0 4deg, transparent 4deg 15deg),
    radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 64%);
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.hero-copy > p:not(.eyebrow),
.section-heading > p,
.consult-banner p,
.newsletter p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.hero-badges,
.section-heading,
.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 26px;
}

.hero-badges {
  margin-top: 24px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(224, 132, 36, 0.38);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.76);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  border-color: var(--green-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 13px 28px rgba(181, 82, 22, 0.24);
}

.button.ghost {
  background: #fff;
  color: var(--green);
}

.button.danger {
  border-color: rgba(163, 64, 99, 0.28);
  background: #fff0f4;
  color: var(--rose);
}

.button.compact {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.button.full {
  width: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.hero-media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(13, 30, 26, 0.46)),
    linear-gradient(135deg, rgba(224, 132, 36, 0.25), transparent 38%);
  content: "";
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 42px rgba(14, 30, 26, 0.22);
}

.hero-card span {
  display: block;
  color: var(--gold-dark);
  font-weight: 950;
}

.hero-card strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  font-size: 23px;
  line-height: 1.05;
}

.feature-marquee {
  overflow: hidden;
  background: #0a0a0a;
  color: #f4f0e9;
}

.feature-track {
  display: flex;
  width: max-content;
  min-height: 68px;
  align-items: center;
  gap: 76px;
  animation: marquee 34s linear infinite;
  font-weight: 850;
  white-space: nowrap;
}

.feature-track span:nth-child(even) {
  color: #c6a675;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.consult-banner,
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(22px, 5vw, 72px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(224, 132, 36, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.92), rgba(239, 247, 242, 0.92)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.consult-banner h2,
.newsletter h2 {
  max-width: 780px;
}

.consult-banner p,
.newsletter p {
  max-width: 720px;
  margin-bottom: 0;
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(22px, 5vw, 72px);
}

.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
}

.section-heading > p {
  max-width: 560px;
  margin-bottom: 0;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 12px 4px 18px;
  scroll-snap-type: x proximity;
}

.category-card,
.product-card,
.purpose-card,
.review-card,
.chakra-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.category-card {
  position: relative;
  display: grid;
  min-width: 120px;
  justify-items: center;
  gap: 12px;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
  overflow: visible;
}

.category-card img {
  width: 92px;
  height: 92px;
  min-height: 0;
  border: 2px solid rgba(224, 132, 36, 0.5);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.category-card::after {
  display: none;
}

.category-card span,
.category-card strong {
  position: static;
  z-index: 1;
  text-align: center;
}

.category-card span {
  color: var(--green-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.category-card strong {
  display: none;
}

.category-card:hover,
.product-card:hover,
.purpose-card:hover,
.review-card:hover,
.chakra-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 132, 36, 0.56);
  box-shadow: 0 24px 54px rgba(70, 31, 12, 0.15);
}

.category-card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-note {
  max-width: 780px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px dashed rgba(181, 82, 22, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  text-align: center;
}

.whatsapp-note a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-section,
.reviews-section {
  background:
    linear-gradient(135deg, rgba(181, 82, 22, 0.065), rgba(255, 238, 210, 0.7)),
    var(--soft);
}

.shop-section {
  overflow: hidden;
  padding: 56px clamp(20px, 5vw, 72px);
  background: #fff;
}

.best-seller-heading {
  justify-content: space-between;
  margin: 0 0 28px;
  text-align: left;
}

.best-seller-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.filters {
  justify-content: flex-end;
}

.filter-button {
  min-height: 38px;
  padding: 8px 13px;
  border-color: var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  box-shadow: 0 10px 22px rgba(181, 82, 22, 0.17);
}

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

.shop-section .product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-section .product-card {
  min-height: auto;
  border: 1px solid #ece7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.product-visual {
  position: relative;
  overflow: hidden;
}

.shop-section .product-visual {
  margin: 12px 12px 0;
  border-radius: 8px;
}

.product-image {
  aspect-ratio: 1.08;
  background: var(--soft);
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

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

.product-card:hover .product-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.shop-section .product-badge {
  top: 0;
  left: 18px;
  display: grid;
  width: 68px;
  min-height: 66px;
  place-items: start center;
  padding: 7px 4px 10px;
  border: 0;
  border-radius: 0;
  background: #ffd300;
  color: #231d12;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  font-size: 11px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.shop-section .product-badge small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  font-weight: 900;
  line-height: 1.05;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.shop-section .product-body {
  gap: 6px;
  padding: 16px 18px 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
}

.shop-section .product-meta,
.shop-section .product-body p {
  display: none;
}

.product-body h3 {
  margin: 0;
}

.shop-section .product-body h3 {
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.22;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffc247;
  font-size: 17px;
  line-height: 1;
}

.product-rating small {
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1;
}

.product-body p,
.chakra-list p,
.review-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.shop-section .price-row {
  align-items: end;
  margin-top: auto;
}

.price-row strong {
  font-size: 18px;
}

.shop-section .price-row strong {
  color: #111;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 950;
}

.shop-section .price-row s {
  margin-left: 6px;
  color: #9a9a9a;
  font-size: 17px;
}

.add-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--gold-dark);
  cursor: pointer;
  font-weight: 900;
}

.shop-section .add-button {
  min-width: 108px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-size: 16px;
}

.add-button:hover {
  border-color: var(--gold-dark);
  background: var(--gold);
  color: #fff;
}

.shop-section .add-button:hover {
  background: #8a3d10;
}

.purpose-showcase,
.zodiac-section,
.reels-section {
  padding: 72px clamp(20px, 5vw, 72px) 46px;
  background: #fff;
}

.reviews-section {
  padding: 74px clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(224, 132, 36, 0.18), transparent 34%),
    linear-gradient(135deg, #fffaf0, #f2f7ef);
}

.purpose-showcase h2,
.zodiac-section h2 {
  margin: 0 0 28px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.purpose-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}

.purpose-tile {
  display: grid;
  grid-template-rows: minmax(170px, 1fr) auto;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #ece7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.purpose-tile img {
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.purpose-tile:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.04);
}

.purpose-tile strong {
  align-self: end;
  min-height: 54px;
  padding: 16px 12px;
  background: #fff;
  color: #2d2a26;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
}

.zodiac-section {
  padding-top: 68px;
  overflow: hidden;
}

.zodiac-section h2 {
  margin-bottom: 30px;
  font-size: clamp(30px, 3vw, 38px);
}

.reels-section {
  padding-top: 66px;
  background:
    linear-gradient(180deg, #fff, #fff8e8);
}

.reels-section .section-heading {
  max-width: 1500px;
  margin-inline: auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto;
}

.reel-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--soft-shadow);
}

.reel-card img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 320ms ease, filter 320ms ease;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.68));
  content: "";
}

.reel-card:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.045);
}

.play-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: transparent;
  font-size: 0;
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-block: 10px solid transparent;
  border-left: 15px solid var(--green-dark);
  content: "";
}

.reel-card strong {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-inline: 0;
  padding-inline: 0;
  overflow: visible;
}

.zodiac-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ece7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.zodiac-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.zodiac-card .trend-badge,
.zodiac-card .product-badge {
  position: absolute;
  z-index: 2;
}

.zodiac-card h3 {
  margin: 18px 18px 6px;
  color: #323232;
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 850;
  line-height: 1.2;
}

.zodiac-card p {
  margin: 0 18px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.zodiac-card .product-badge {
  top: 18px;
  left: 30px;
  display: grid;
  width: 54px;
  min-height: 66px;
  place-items: start center;
  padding: 7px 4px 10px;
  border: 0;
  border-radius: 0;
  background: #ffd300;
  color: #231d12;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  font-size: 17px;
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.zodiac-card .product-badge small {
  display: block;
  margin-top: 3px;
  font-size: 6px;
  font-weight: 900;
  line-height: 1.05;
}

.trend-badge {
  top: 36px;
  left: 36px;
  padding: 8px 16px;
  border-radius: 4px;
  background: #927735;
  color: #fff;
  font-weight: 900;
}

.store-row-section,
.catalog-section {
  overflow: hidden;
  padding: 66px clamp(20px, 5vw, 72px) 48px;
  background: #fff;
}

.store-row-section h2,
.catalog-section h2 {
  margin: 0 0 30px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.catalog-section > p {
  margin: -16px auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

.store-row-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 clamp(18px, 4vw, 44px) 28px;
  scroll-snap-type: x proximity;
}

.store-card {
  position: relative;
  flex: 0 0 min(424px, 84vw);
  overflow: hidden;
  border-radius: 18px;
  background: #faf9f6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  scroll-snap-align: start;
}

.store-card img {
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
}

.store-card h3 {
  overflow: hidden;
  min-height: 28px;
  margin: 18px 20px 8px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-card .product-rating {
  margin-inline: 20px;
}

.store-card .price-row {
  align-items: end;
  margin: 10px 18px 0;
}

.store-card .price-row strong {
  color: #111;
  font-size: 22px;
  font-weight: 950;
}

.store-card .price-row s {
  margin-left: 7px;
  color: #9a9a9a;
  font-size: 17px;
}

.store-card .add-button {
  min-width: 108px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-size: 16px;
}

.store-card .product-badge {
  top: 18px;
  left: 18px;
  display: grid;
  width: 54px;
  min-height: 66px;
  place-items: start center;
  padding: 7px 4px 10px;
  border: 0;
  border-radius: 0;
  background: #ffd300;
  color: #231d12;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  font-size: 17px;
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.store-card .product-badge small {
  display: block;
  margin-top: 3px;
  font-size: 6px;
  font-weight: 900;
  line-height: 1.05;
}

.catalog-section {
  padding: 56px clamp(20px, 4vw, 70px) 72px;
}

.catalog-section h2 {
  margin-bottom: 4px;
  font-size: clamp(30px, 2.8vw, 36px);
}

.catalog-section > p {
  margin: 0 0 36px;
  color: #050505;
  font-size: 19px;
  text-align: center;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.catalog-card img {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
}

.catalog-card h3 {
  min-height: 0;
  margin: 0 10px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.catalog-card div {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-inline: 10px;
  flex-wrap: wrap;
}

.catalog-card strong {
  color: #050505;
  font-size: 18px;
  font-weight: 950;
}

.catalog-card s {
  color: #999;
}

.catalog-card span {
  color: #008f12;
  font-weight: 950;
}

.catalog-card button {
  min-height: 44px;
  margin: auto 10px 10px;
  border: 0;
  border-radius: 9px;
  background: #050505;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.catalog-card button:hover {
  background: #8a3d10;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.94), rgba(239, 247, 242, 0.9)),
    #fff;
}

.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 16px;
  font-size: clamp(44px, 5vw, 72px);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.page-hero img {
  aspect-ratio: 1.25;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.category-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: #fff;
}

.category-strip a {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.category-strip a:hover,
.category-strip a.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.product-detail-page {
  padding: clamp(34px, 5vw, 70px) clamp(20px, 5vw, 72px) 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-detail-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-detail-media img {
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-copy h1 {
  max-width: 14ch;
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 68px);
}

.product-detail-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.detail-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 24px 0;
  flex-wrap: wrap;
}

.detail-price strong {
  font-size: 34px;
}

.detail-price s {
  color: #929292;
  font-size: 20px;
}

.detail-price span {
  color: #008f12;
  font-weight: 950;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.detail-points {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0;
  padding: 18px 20px 18px 38px;
  border: 1px solid rgba(224, 132, 36, 0.28);
  border-radius: 8px;
  background: #fff8e8;
  color: var(--green-dark);
  line-height: 1.5;
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 28px;
  align-items: start;
  padding: clamp(38px, 5vw, 72px) clamp(20px, 5vw, 72px);
}

.checkout-form,
.checkout-card,
.policy-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.checkout-form,
.checkout-card {
  padding: clamp(22px, 3vw, 34px);
}

.checkout-form h1,
.simple-page h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(40px, 4.6vw, 64px);
}

.checkout-form p {
  color: var(--muted);
  line-height: 1.5;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-grid textarea {
  resize: vertical;
}

.checkout-items {
  display: grid;
  gap: 14px;
}

.checkout-items article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.checkout-items img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-items strong,
.checkout-items span {
  display: block;
}

.checkout-items span {
  margin-top: 4px;
  color: var(--muted);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.payment-options {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--gold);
  background: #fff8e8;
  box-shadow: 0 0 0 4px rgba(224, 132, 36, 0.12);
}

.payment-option input {
  margin-top: 4px;
  accent-color: var(--green);
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option strong {
  color: var(--green-dark);
}

.payment-option small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.simple-page {
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 72px);
}

.simple-page > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.policy-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.policy-card,
.contact-card {
  padding: 24px;
}

.policy-card h2,
.contact-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.policy-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.55;
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.thank-you-summary {
  max-width: 680px;
  margin-top: 30px;
}

.ai-finder-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(239, 247, 242, 0.9)),
    #fff;
}

.ai-finder-copy h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(46px, 5.3vw, 76px);
}

.ai-finder-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.ai-finder-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(224, 132, 36, 0.32);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ai-finder-panel label {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 950;
}

.ai-finder-panel textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--ink);
  resize: vertical;
}

.ai-finder-panel textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(181, 82, 22, 0.13);
}

.ai-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-chip-row button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--gold-dark);
  cursor: pointer;
  font-weight: 900;
}

.ai-chip-row button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.ai-finder-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ai-results-section {
  padding: clamp(50px, 6vw, 82px) clamp(20px, 5vw, 72px);
  background: #fff;
}

#aiResultIntro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

#aiResultIntro strong,
#aiResultIntro span {
  display: block;
}

#aiResultIntro strong {
  color: var(--green-dark);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.purpose-card {
  min-height: 178px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.75), rgba(255, 255, 255, 0.96));
}

.purpose-card span {
  display: block;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.purpose-card strong {
  display: block;
  margin-top: 48px;
  color: var(--green-dark);
  line-height: 1.35;
}

.chakra-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.chakra-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.chakra-list article {
  padding: 18px;
}

.chakra-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.chakra-list h3 {
  margin-bottom: 6px;
}

.chakra-list p {
  margin-bottom: 0;
}

.chakra-image {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chakra-image img {
  height: 100%;
  object-fit: cover;
}

.rating {
  color: var(--gold-dark);
  font-size: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1500px;
  margin: 24px auto 0;
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 26px;
}

.review-feature h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.review-feature p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.review-score {
  min-width: 220px;
  padding: 22px;
  border: 1px solid rgba(224, 132, 36, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.review-score strong,
.review-score span,
.review-score small {
  display: block;
}

.review-score strong {
  color: var(--green-dark);
  font-size: 48px;
  line-height: 1;
}

.review-score span {
  margin-top: 8px;
  color: #ffc247;
  letter-spacing: 0;
}

.review-score small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border-color: rgba(224, 132, 36, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(224, 132, 36, 0.11), transparent 34%),
    linear-gradient(180deg, #fff, #fffaf0),
    #fff;
}

.featured-review {
  background:
    radial-gradient(circle at top right, rgba(181, 82, 22, 0.2), transparent 34%),
    linear-gradient(135deg, #fff, #fff3d3);
  transform: translateY(-12px);
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #fff;
  font-weight: 950;
}

.review-card .review-avatar {
  color: #fff;
  font-size: 14px;
}

.review-card p {
  margin-bottom: 0;
  font-size: 17px;
}

.review-card strong {
  display: block;
  color: var(--green-dark);
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.review-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 850;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(22px, 5vw, 72px) clamp(76px, 8vw, 110px);
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.trust-strip article {
  padding: 30px;
  background: #fff;
}

.trust-strip article::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  content: "";
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.newsletter {
  margin-bottom: clamp(60px, 8vw, 100px);
  background:
    linear-gradient(135deg, #4a1c0b, #7b2f12 58%, #b55216);
  color: #fff;
}

.newsletter .eyebrow,
.newsletter p {
  color: #ffe5a6;
}

.newsletter form {
  display: grid;
  min-width: min(420px, 100%);
  gap: 10px;
}

.newsletter input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.newsletter input:focus {
  outline: 0;
  border-color: #ffe5a6;
  box-shadow: 0 0 0 4px rgba(255, 229, 166, 0.18);
}

.admin-page {
  padding: clamp(30px, 5vw, 70px) clamp(18px, 4vw, 58px);
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(74, 28, 11, 0.92), rgba(123, 47, 18, 0.9)),
    var(--paper);
}

.admin-login-card {
  display: grid;
  width: min(430px, 100%);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: var(--shadow);
}

.admin-login-card .brand-mark {
  margin-bottom: 4px;
}

.admin-login-card .brand-logo {
  width: min(240px, 100%);
  max-height: none;
  margin-bottom: 4px;
}

.admin-login-card h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: 48px;
}

.admin-login-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-login-card input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-shell[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-logout {
  padding: 9px 11px;
  border: 1px solid rgba(163, 64, 99, 0.24);
  border-radius: 999px;
  background: #fff0f4;
  color: var(--rose);
  cursor: pointer;
  font-weight: 850;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(224, 132, 36, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.94), rgba(239, 247, 242, 0.92)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.admin-hero h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: 64px;
}

.admin-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
}

.admin-orders {
  margin-top: 22px;
}

.admin-form,
.admin-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.admin-form {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 15px;
  padding: 22px;
}

.admin-form-header,
.admin-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-form h2,
.admin-list h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

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

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(181, 82, 22, 0.13);
}

.admin-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.admin-list {
  padding: 22px;
}

.admin-list-header {
  margin-bottom: 16px;
}

.admin-list-header strong {
  color: var(--gold-dark);
}

.admin-product-list {
  display: grid;
  gap: 12px;
}

.admin-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.52), #fff);
}

.admin-product img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.admin-product span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-product h3 {
  margin-bottom: 5px;
}

.admin-product p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-product strong {
  color: var(--green-dark);
}

.admin-product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.order-card {
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
}

.order-actions label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.order-actions select {
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.track-form {
  max-width: 720px;
  margin: 28px 0;
  padding: clamp(20px, 3vw, 28px);
}

#newsletterResult {
  min-height: 22px;
  margin: 0;
  color: #fff8e6;
  font-size: 14px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(54, 23, 9, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: flex;
  width: min(430px, 100%);
  height: 100%;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

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

.cart-header,
.cart-footer {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

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

.cart-header h2 {
  margin: 0;
  font-size: 26px;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-color: var(--line);
  border-radius: 50%;
  background: #fff;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p,
.empty-cart {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.empty-cart {
  margin-top: 22px;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--rose);
  cursor: pointer;
  font-weight: 900;
}

.cart-footer {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-footer div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(340px, 1.1fr) minmax(0, 2fr);
  gap: 34px;
  min-height: 560px;
  padding: 72px clamp(20px, 4vw, 64px) 230px;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 223, 178, 0.88)),
    url("images/footer-landscape.svg") bottom center / 100% auto no-repeat,
    #fff7e5;
}

.site-footer .brand {
  margin-bottom: 18px;
}

.site-footer .brand strong {
  font-size: clamp(34px, 3vw, 48px);
}

.site-footer p {
  max-width: 620px;
  margin: 0 0 14px;
  color: #000;
  font-size: 17px;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.footer-socials a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #ded8ca;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 24px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 34px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.footer-links a {
  color: #000;
  font-size: 16px;
  line-height: 1.22;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 8px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

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

  .shop-section .product-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .shop-section .product-card {
    flex: 0 0 min(280px, 72vw);
    scroll-snap-align: start;
  }

  .purpose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 180px;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }

  .purpose-showcase-grid,
  .zodiac-grid,
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-feature {
    grid-template-columns: 1fr;
  }

  .review-score {
    width: min(320px, 100%);
  }

  .hero,
  .chakra-layout,
  .page-hero,
  .product-detail-layout,
  .checkout-page,
  .ai-finder-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 68px;
  }
}

@media (max-width: 780px) {
  .announcement-bar {
    grid-template-columns: auto minmax(220px, 1fr) auto;
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .announcement-bar button {
    width: 24px;
    height: 24px;
    font-size: 25px;
  }

  .announcement-icons {
    gap: 6px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    top: 46px;
    min-height: 82px;
    gap: 10px;
    margin: 0 8px;
    padding: 10px;
    border-radius: 0 0 14px 14px;
  }

  .brand-logo {
    width: min(220px, 60vw);
    max-height: 62px;
  }

  .brand {
    padding: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand strong {
    font-size: 29px;
  }

  .main-nav {
    gap: 6px;
    width: 100%;
    border-radius: 16px;
  }

  .main-nav a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .header-actions {
    gap: 6px;
    padding: 6px;
  }

  .header-icon {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .header-icon.accent {
    font-size: 13px;
  }

  .cart-button {
    width: auto;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .cart-button span {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-media {
    min-height: 310px;
  }

  .section {
    padding: 62px 20px;
  }

  .category-grid {
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 18px;
  }

  .category-card {
    min-width: 104px;
  }

  .category-card img {
    width: 78px;
    height: 78px;
  }

  .category-card span {
    font-size: 13px;
  }

  .consult-banner,
  .newsletter,
  .site-footer,
  .admin-hero,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-form {
    position: static;
  }

  .admin-hero h1 {
    font-size: 42px;
  }

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

  .admin-fields {
    grid-template-columns: 1fr;
  }

  .admin-product {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .admin-product-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .purpose-grid,
  .chakra-list,
  .review-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .purpose-showcase,
  .zodiac-section,
  .reels-section,
  .reviews-section {
    padding: 54px 18px 34px;
  }

  .purpose-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-tile {
    min-height: 180px;
  }

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

  .reels-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .reel-card {
    flex: 0 0 min(260px, 78vw);
    min-height: 360px;
    scroll-snap-align: start;
  }

  .reel-card img {
    min-height: 360px;
  }

  .review-feature h2 {
    font-size: 34px;
  }

  .featured-review {
    transform: none;
  }

  .zodiac-card h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .store-row-section {
    padding-top: 48px;
  }

  .catalog-section {
    padding: 44px 18px 54px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .catalog-card h3 {
    min-height: 0;
  }

  .site-footer {
    padding: 44px 20px 130px;
    background-size: 190% auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .footer-links h3 {
    font-size: 21px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .filters {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-button {
    min-width: max-content;
  }

  .footer-brand {
    min-width: 0;
  }
}
