@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Lato:wght@300;400;700&display=swap");

:root {
  --background: hsl(30 25% 96%);
  --foreground: hsl(20 15% 15%);
  --card: hsl(30 20% 98%);
  --primary: hsl(14 65% 45%);
  --primary-dark: hsl(14 68% 36%);
  --primary-foreground: hsl(30 25% 96%);
  --secondary: hsl(35 30% 90%);
  --muted: hsl(30 15% 90%);
  --muted-foreground: hsl(20 10% 45%);
  --accent: hsl(40 75% 50%);
  --border: hsl(30 20% 85%);
  --forest: hsl(150 30% 25%);
  --cream: hsl(35 40% 95%);
  --radius: 0.5rem;
  --shadow: 0 18px 50px rgb(70 43 29 / 0.12);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  line-height: 1.08;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--border);
  background: rgb(249 246 242 / 0.94);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: auto;
  height: 40px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  display: block;
  color: rgb(42 36 33 / 0.7);
  font-size: 0.86rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.5;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--primary);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  font-weight: 400;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.nav-bar > .menu-toggle {
  margin-left: auto;
}

.icon-button {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgb(42 36 33 / 0.74);
  transition: color 180ms ease, background 180ms ease;
}

.icon-button:hover {
  color: var(--primary);
  background: var(--secondary);
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.62rem;
  font-weight: 700;
}

.cart-count.visible {
  display: grid;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
}

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

.mobile-nav a {
  padding: 0.55rem 0;
  text-align: right;
}

.hero {
  min-height: max(500px, 80vh);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: rgb(42 36 33 / 0.53);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 3rem));
  color: var(--primary-foreground);
  animation: rise-in 800ms ease both;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 4.25rem);
  text-shadow: 0 3px 16px rgb(0 0 0 / 0.25);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.3);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  box-shadow: 0 8px 22px rgb(176 69 40 / 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 10px 28px rgb(176 69 40 / 0.24);
}

.button-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--secondary);
}

.button-small {
  min-height: 36px;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
}

.amazon-btn {
  min-width: 200px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #a88734;
  border-radius: 3px;
  background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.4) inset;
  color: #111;
  font-family: "Amazon Ember", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
  transition: background 100ms ease, border-color 100ms ease;
  user-select: none;
}

.amazon-btn:hover {
  border-color: #a07820;
  background: linear-gradient(to bottom, #f5d78e, #eeba35);
}

.amazon-btn:active {
  background: linear-gradient(to bottom, #eeba35, #f0c14b);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.2) inset;
}

.section {
  padding: 4.6rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(2.25rem, 4vw, 3.1rem);
}

.lead {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.8;
}

.center {
  text-align: center;
}

.home-intro {
  max-width: 790px;
}

.category-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.category-card {
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(14 65% 45% / 0.11), hsl(40 75% 50% / 0.14));
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, hsl(14 65% 45% / 0.18), hsl(40 75% 50% / 0.2));
  box-shadow: var(--shadow);
}

.category-card .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.9rem;
  color: var(--primary);
}

.category-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.85rem;
}

.category-card p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.page-hero {
  padding: 3.4rem 0 2.6rem;
  text-align: center;
}

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

.product-card,
.guide-card,
.aroma-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover,
.guide-card:hover,
.aroma-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.square-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.square-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .square-media img,
.guide-card:hover .square-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 1rem;
}

.category-label {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.28rem;
}

.product-card h2 a:hover,
.product-card h3 a:hover {
  color: var(--primary);
}

.card-description {
  min-height: 3.1rem;
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  line-height: 1.55;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.breadcrumb:hover {
  color: var(--primary);
}

.product-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6rem;
}

.product-detail-image {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.product-detail-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-copy h1 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}

.product-detail-copy .price {
  font-size: 1.55rem;
}

.long-description {
  margin: 1.5rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.product-detail-copy .button {
  align-self: flex-start;
  margin-top: 1.8rem;
}

.product-detail-copy .amazon-btn {
  align-self: flex-start;
  margin-top: 1.8rem;
}

.guide-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.guide-card {
  width: 100%;
  display: block;
  padding: 0;
  border: 1px solid var(--border);
  font: inherit;
  text-align: left;
  color: inherit;
}

.guide-card .square-media {
  position: relative;
}

.guide-card .play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(42 36 33 / 0.25);
  opacity: 0;
  transition: opacity 220ms ease;
}

.guide-card:hover .play-overlay,
.guide-card:focus-visible .play-overlay {
  opacity: 1;
}

.play-disc {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.guide-card h2 {
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}

.guide-subtitle {
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-size: 0.74rem;
}

.guide-card .card-description {
  min-height: auto;
}

.guide-card .card-body,
.guide-card .square-media,
.guide-card .guide-subtitle,
.guide-card .card-description {
  display: block;
}

.audio-player {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  width: min(440px, calc(100% - 2rem));
  display: none;
  padding: 1rem 1.15rem;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 22px 60px rgb(54 34 25 / 0.25);
}

.audio-player.visible {
  display: block;
  animation: player-in 320ms ease both;
}

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

.audio-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-family: var(--heading);
  font-weight: 700;
}

.audio-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-range {
  width: 100%;
  margin: 0.9rem 0 0.15rem;
  accent-color: var(--primary);
}

.audio-times {
  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 0.72rem;
}

.audio-controls {
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
}

.audio-play {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--primary);
}

.audio-play .icon {
  width: 38px;
  height: 38px;
}

.audio-status {
  min-height: 1.15rem;
  margin: 0.35rem 0 0;
  color: var(--primary);
  font-size: 0.74rem;
  text-align: center;
}

.aroma-intro {
  margin-bottom: 3.5rem;
}

.aroma-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.aroma-card {
  padding: 1.35rem;
}

.aroma-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.aroma-heading span {
  font-size: 1.65rem;
}

.aroma-heading h2 {
  margin: 0;
  font-size: 1.38rem;
}

.aroma-card p {
  margin: 0.75rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.benefits {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.benefits strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefits p {
  margin-top: 0;
  color: rgb(42 36 33 / 0.82);
}

.henna-hero {
  position: relative;
  overflow: hidden;
  padding: 5.7rem 0;
  background:
    radial-gradient(circle at 10% 20%, rgb(230 170 72 / 0.28), transparent 34%),
    radial-gradient(circle at 90% 75%, rgb(60 103 75 / 0.22), transparent 30%),
    linear-gradient(135deg, #762f20, #b44e2d 58%, #cb7a35);
  color: #fff9ef;
}

.henna-hero::before,
.henna-hero::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgb(255 244 218 / 0.22);
  border-radius: 50%;
}

.henna-hero::before {
  top: -140px;
  right: 4%;
  box-shadow: 0 0 0 28px rgb(255 244 218 / 0.04), 0 0 0 56px rgb(255 244 218 / 0.03);
}

.henna-hero::after {
  bottom: -185px;
  left: 5%;
  box-shadow: 0 0 0 34px rgb(255 244 218 / 0.04);
}

.henna-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 4rem;
}

.henna-hero h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
}

.henna-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgb(255 249 239 / 0.88);
  font-size: 1.05rem;
}

.henna-bowl {
  width: min(320px, 90%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin: auto;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 50%;
  background: rgb(255 247 225 / 0.12);
  box-shadow: inset 0 0 70px rgb(63 24 16 / 0.32), 0 35px 75px rgb(55 18 12 / 0.28);
}

.henna-bowl::before {
  content: "";
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, #d9934b 0 5%, transparent 6%),
    radial-gradient(circle at 62% 54%, #7e311e 0 6%, transparent 7%),
    radial-gradient(circle at 44% 70%, #9a4125 0 4%, transparent 5%),
    radial-gradient(circle at 50% 50%, #ad4d28, #692415 72%);
  box-shadow: inset 0 8px 18px rgb(255 198 120 / 0.22);
}

.henna-bowl::after {
  content: "Lawsonia inermis";
  position: absolute;
  bottom: -2.5rem;
  font-family: var(--heading);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3.4rem;
}

.article-content {
  max-width: 790px;
}

.article-content h2 {
  margin: 3rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 1.6rem 0 0.65rem;
  font-size: 1.5rem;
}

.article-content p,
.article-content li {
  color: rgb(42 36 33 / 0.78);
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li {
  margin-bottom: 0.65rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.fact {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
}

.fact strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--heading);
  font-size: 1.25rem;
}

.fact span {
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.callout {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: hsl(14 65% 45% / 0.08);
}

.callout.warning {
  border-left-color: #9e5416;
  background: #fff1d8;
}

.callout h3 {
  margin-top: 0;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 94px;
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
}

.article-aside h2 {
  font-size: 1.35rem;
}

.article-aside nav {
  display: grid;
  gap: 0.6rem;
}

.article-aside a {
  color: var(--muted-foreground);
  font-size: 0.84rem;
}

.article-aside a:hover {
  color: var(--primary);
}

.sources {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--secondary);
}

.sources a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  max-width: 900px;
}

.legal-page > h1 {
  margin-bottom: 3.5rem;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  text-align: center;
}

.legal-page section {
  margin-bottom: 4rem;
  scroll-margin-top: 90px;
}

.legal-page h2 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.legal-page h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.legal-page h4 {
  margin: 1.4rem 0 0.5rem;
  font-family: var(--body);
  font-size: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted-foreground);
}

.legal-page a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page li {
  margin-bottom: 0.4rem;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  background: hsl(35 30% 90% / 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  text-align: center;
}

.drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  background: rgb(24 17 14 / 0.48);
}

.drawer-backdrop.visible {
  display: block;
}

.cart-drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(102%);
  border-left: 1px solid var(--border);
  background: var(--background);
  box-shadow: -20px 0 60px rgb(29 18 13 / 0.18);
  transition: transform 280ms ease;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.empty-cart {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted-foreground);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

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

.cart-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.quantity-row button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}

.quantity-row button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.quantity-row .remove {
  width: auto;
  margin-left: auto;
  padding: 0 0.4rem;
  border: 0;
  color: var(--muted-foreground);
  font-size: 0.74rem;
}

.cart-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-family: var(--heading);
  font-size: 1.3rem;
}

.cart-footer .button {
  width: 100%;
  margin-top: 0.55rem;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 0.5rem;
  font-size: 6rem;
  color: var(--primary);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid hsl(40 75% 50% / 0.75);
  outline-offset: 3px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes player-in {
  from {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    gap: 1rem;
  }

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

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

  .henna-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .henna-hero p {
    margin-inline: auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 2rem, 1120px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .category-grid,
  .guide-grid,
  .product-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    max-width: 520px;
  }

  .product-detail-copy .button {
    width: 100%;
  }

  .footer-grid {
    gap: 1.5rem;
  }

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

@media (max-width: 520px) {
  .section {
    padding: 3.4rem 0;
  }

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

  .brand img {
    height: 34px;
  }

  .henna-hero {
    padding: 4rem 0 5.2rem;
  }

  .henna-bowl {
    width: 230px;
  }

  .amazon-btn {
    width: 100%;
    min-width: 0;
  }

  .audio-player {
    width: calc(100% - 1rem);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (hover: none), (pointer: coarse) {
  .guide-card .play-overlay {
    opacity: 1;
    background: rgb(42 36 33 / 0.12);
  }

  .guide-card .play-disc {
    width: 52px;
    height: 52px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
