:root {
  --charcoal: #11100e;
  --deep: #210e09;
  --red: #e12d14;
  --red-dark: #82170c;
  --orange: #ff6b00;
  --flame: #ffc119;
  --gold: #c4892f;
  --cream: #fff4e2;
  --sand: #e8d3b5;
  --smoke: #f7f1e8;
  --green: #127a56;
  --ink: #22160e;
  --muted: #786b5e;
  --line: rgba(34, 22, 14, 0.12);
  --shadow: 0 26px 70px rgba(33, 14, 9, 0.14);
  --radius: 28px;
  --radius-lg: 42px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Cairo", "Tajawal", system-ui, sans-serif;
  background: var(--smoke);
  color: var(--ink);
  direction: rtl;
  line-height: 1.75;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.topbar {
  background: var(--charcoal);
  color: #f8ead0;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 244, 226, 0.85);
  backdrop-filter: saturate(1.2) blur(18px);
  border-bottom: 1px solid rgba(196, 137, 47, 0.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}
.brand span {
  font-size: 1.3rem;
  letter-spacing: 0.2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #352218;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--charcoal);
  color: var(--cream);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 22, 14, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff8ef;
  color: var(--charcoal);
  cursor: pointer;
}
.menu-toggle {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(17, 16, 14, 0.18);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(17, 16, 14, 0.25);
}
.btn.gold {
  background: linear-gradient(135deg, var(--flame), var(--orange));
  color: #2b140a;
}
.btn.outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(34, 22, 14, 0.18);
  box-shadow: none;
}
.btn.small {
  padding: 9px 15px;
  font-size: 0.9rem;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 193, 25, 0.15),
      transparent 35%
    ),
    linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}
.hero .container {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 84px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 193, 25, 0.36);
  background: rgba(255, 244, 226, 0.08);
  border-radius: 999px;
  color: #ffd68c;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "\f06d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(2.4rem, 3vw, 5.6rem);
  line-height: 1.45;
  font-weight: 1000;
  letter-spacing: -1px;
}
.accent {
  color: var(--flame);
}
.hero p {
  font-size: 1.18rem;
  color: #f5dec2;
  max-width: 620px;
  margin: 22px 0 30px;
}
.hero-cta,
.split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-visual .hero-img {
  border-radius: 48px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 193, 25, 0.25);
}
.floating-card {
  position: absolute;
  bottom: 28px;
  right: -16px;
  max-width: 330px;
  background: rgba(255, 244, 226, 0.94);
  color: var(--ink);
  border: 1px solid rgba(196, 137, 47, 0.35);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 18px;
}
.floating-card strong {
  display: block;
  font-size: 1.05rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stat {
  border: 1px solid rgba(255, 244, 226, 0.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 244, 226, 0.07);
}
.stat b {
  display: block;
  font-size: 1.45rem;
  color: var(--flame);
}
.section {
  padding: 84px 0;
}
.section.soft {
  background: #fffaf3;
}
.section.dark {
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.section-kicker {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(1.5rem, 1.7vw, 3.25rem);
  line-height: 1.18;
  font-weight: 1000;
}
.section-head p,
.muted {
  color: var(--muted);
}
.dark .muted,
.dark .section-head p {
  color: #e9cfab;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body {
  padding: 22px;
}
.feature {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature .num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--flame);
  font-weight: 1000;
  margin-bottom: 18px;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(33, 14, 9, 0.14);
}
.product-img {
  aspect-ratio: 1/1;
  background: #fff8ef;
  object-fit: cover;
  width: 100%;
}
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 11px;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 1.06rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.price {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}
.price strong {
  font-size: 1.18rem;
  color: var(--red);
}
.price del {
  color: #9b9188;
}
.spilt-layout,
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.media-frame {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 137, 47, 0.28);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 193, 25, 0.35);
  border-radius: 34px;
  pointer-events: none;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(196, 137, 47, 0.25);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}
.brand-strip div {
  padding: 24px;
  border-inline-start: 1px solid rgba(196, 137, 47, 0.2);
}
.brand-strip b {
  display: block;
  color: var(--red);
  font-size: 1.05rem;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 24px 76px 24px 24px;
  border: 1px solid rgba(255, 244, 226, 0.16);
  border-radius: 28px;
  background: rgba(255, 244, 226, 0.07);
  margin-bottom: 14px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 22px;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--flame);
  color: #2b140a;
  display: grid;
  place-items: center;
  font-weight: 1000;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter-btn.active {
  background: var(--charcoal);
  color: var(--cream);
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}
.sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  height: max-content;
  position: sticky;
  top: 105px;
}
.sidebar h3 {
  margin-bottom: 12px;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0;
  color: #57493d;
}
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.main-product {
  border-radius: 30px;
  background: #140807;
  width: 100%;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.thumbs img {
  border: 1px solid var(--line);
  border-radius: 18px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-detail h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 10px;
}
.rating {
  color: #ffad00;
  font-weight: 900;
}
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  margin: 20px 0;
}
.quantity button {
  border: none;
  background: #fff2df;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}
.quantity input {
  width: 54px;
  text-align: center;
  border: none;
  background: white;
  padding: 10px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.benefit {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.tabs {
  margin-top: 44px;
}
.tab-list {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.tab-list button {
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
}
.tab-list button.active {
  color: var(--red);
  border-bottom: 3px solid var(--red);
}
.tab-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  padding: 26px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.recipe-card img {
  aspect-ratio: 1.25/1;
  object-fit: cover;
}
.quote {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
}
.quote p {
  font-size: 1.1rem;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--flame), var(--red));
  color: #fff;
  font-weight: 1000;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.field label {
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fffaf4;
}
.field textarea {
  min-height: 128px;
  resize: vertical;
}
.map-placeholder {
  min-height: 360px;
  border-radius: 32px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 193, 25, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #1b100c, #552014);
  color: #fff;
  padding: 32px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(196, 137, 47, 0.35);
}
.footer {
  background: #120d0a;
  color: #fff1da;
  padding: 66px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}
.footer h3 {
  margin-bottom: 14px;
  color: var(--flame);
}
.footer a {
  display: block;
  color: #efd5b4;
  margin: 8px 0;
}
.footer .brand img {
  width: 72px;
  height: 72px;
}
.copyright {
  border-top: 1px solid rgba(255, 244, 226, 0.12);
  margin-top: 30px;
  padding-top: 18px;
  color: #d5b996;
  font-size: 0.9rem;
}
.uae-flag {
    display: inline-flex;
    direction: ltr;
    flex-direction: row;
    width: 24px;
    height: 16px;
    margin-inline: 6px;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 1px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* UAE flag final fix */
.uae-flag__red {
  display: block;
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  background: #ff0000;
}

.uae-flag__colors {
  display: flex;
  flex: 0 0 75%;
  width: 75%;
  height: 100%;
  flex-direction: column;
}

.uae-flag__green,
.uae-flag__white,
.uae-flag__black {
    flex: 1;
}

.uae-flag__green {
    background-color: #00843d;
}

.uae-flag__white {
    background-color: #ffffff;
}

.uae-flag__black {
    background-color: #000000;
}
.whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  transition: 0.28s ease;
}
.toast.show {
  transform: translateY(0);
}
.page-hero {
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  padding: 82px 0;
  border-bottom-left-radius: 58px;
  border-bottom-right-radius: 58px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/brand-pattern.webp") center/360px;
  opacity: 0.08;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 760px;
}
.breadcrumb {
  color: #f3c985;
  margin-bottom: 12px;
  font-weight: 800;
}
.palette {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.swatch {
  border-radius: 22px;
  padding: 68px 14px 14px;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.swatch.light {
  color: #23160e;
}
.logo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.logo-box {
  border-radius: 32px;
  padding: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  min-height: 310px;
}
.logo-box.dark {
  background: #12100d;
}
.logo-box.light {
  background: #fff4e2;
}
.logo-box img {
  width: 260px;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }
  .nav-links {
    position: fixed;
    inset: 75px 18px auto 18px;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 16px;
    display: none;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    text-align: center;
  }
  .hero .container,
  .split-layout,
  .product-page {
    grid-template-columns: 1fr;
  }
  .hero .container {
    min-height: auto;
  }
  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .hero {
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }
  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    display: block;
  }
  .palette {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .topbar .container {
    display: block;
    text-align: center;
  }
  .nav-actions .btn {
    display: none;
  }
  h1 {
    font-size: 2.45rem;
  }
  .stats,
  .benefits,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .brand-strip {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-bottom: 70px;
  }
  .section {
    padding: 58px 0;
  }
  .page-hero {
    padding: 58px 0;
  }
  .hero .container {
    padding: 48px 0;
  }
  .logo-box img {
    width: 200px;
  }
  .hero p {
    font-size: 1rem;
  }
}

.product-category {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 4px;
}
.inline-form {
  margin-top: 14px;
}
.cart-dot {
  position: absolute;
  margin-top: -24px;
  margin-inline-start: -4px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
}
.icon-btn {
  position: relative;
}
.invert {
  color: var(--cream) !important;
  border-color: rgba(255, 244, 226, 0.35) !important;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.full {
  width: 100%;
}
.wide {
  min-width: 210px;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 15px;
}
.xl strong {
  font-size: 2rem;
}
.product-section {
  padding-top: 54px;
}
.purchase-box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
}
.thumb-button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.tab-panel dt {
  font-weight: 900;
}
.tab-panel dd {
  margin: 0;
  color: var(--muted);
}
.meta-line {
  display: flex;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.stars {
  color: #ffad00;
  margin-bottom: 12px;
}
.quote-person {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.quote-person small {
  grid-column: 2;
  color: var(--muted);
  margin-top: -12px;
}
.cta-section {
  padding-top: 0;
}
.cta-card {
  border-radius: 42px;
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.footer-payments {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 244, 226, 0.12);
  border-radius: 18px;
  color: #efcf9e;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.empty-state {
  padding: 34px;
  border: 1px dashed var(--gold);
  border-radius: 24px;
  background: #fff8ef;
  text-align: center;
  font-weight: 900;
}
.pagination-wrap {
  margin-top: 28px;
}
.pagination-wrap nav {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination-wrap a,
.pagination-wrap span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.align-start {
  align-items: start;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.error {
  color: var(--red);
  font-weight: 800;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  margin-bottom: 14px;
}
.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
}
.cart-update {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.cart-update input {
  width: 82px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}
.remove {
  border: none;
  background: #ffe3db;
  color: var(--red);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 900;
}
.cart-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 112px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 18px 0;
}
.recipe-large h4 {
  margin-top: 18px;
}

/* Ready-meal seasoning brand experience */
.flavor-hero {
  isolation: isolate;
  border-radius: 0 0 70px 70px;
}
.flavor-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.05) 0%, rgba(17, 16, 14, 0.2) 42%, rgba(17, 16, 14, 0.98) 77%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), transparent 55%);
}
.hero-food-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #11100e url("../images/shabah-fastfood-hero-v2.webp") center left / cover no-repeat;
}
.flavor-hero .container {
  position: relative;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 5vw, 70px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 650px;
}
.hero-copy h1 {
  font-size: clamp(2.65rem, 5.1vw, 5.65rem);
  line-height: 1.13;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 244, 226, 0.17);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.42);
  color: #f8e6cb;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero-proof i {
  color: var(--flame);
}
.hero-product {
  position: relative;
  z-index: 2;
  justify-self: start;
  align-self: end;
  width: min(290px, 80%);
  margin-bottom: -36px;
  padding: 10px;
  border: 1px solid rgba(255, 193, 25, 0.28);
  border-radius: 34px;
  background: rgba(17, 16, 14, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
  transition: transform 0.25s ease;
}
.hero-product:hover {
  transform: translateY(-6px) rotate(0);
}
.hero-product img {
  width: 100%;
  height: 360px;
  border-radius: 25px;
  object-fit: cover;
}
.hero-product-note {
  position: absolute;
  inset-inline: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 244, 226, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.hero-product-note small {
  font-weight: 800;
}
.hero-product-note strong {
  color: var(--red);
}
.quick-pairings {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}
.quick-pairings .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(196, 137, 47, 0.22);
  border-radius: 24px;
  background: #fffaf3;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quick-pairings span {
  position: relative;
  padding: 16px 12px;
  text-align: center;
  font-weight: 900;
}
.quick-pairings span + span {
  border-inline-start: 1px solid var(--line);
}
.quick-pairings span::before {
  content: "•";
  color: var(--red);
  margin-inline-end: 7px;
}
.flavor-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: calc(100% - 48px);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.flavor-points {
  display: grid;
  gap: 12px;
}
.flavor-points > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffaf3;
}
.flavor-points i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffe6c0;
  color: var(--red);
}
.flavor-points strong {
  display: block;
}
.flavor-points span {
  color: var(--muted);
}
.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usage-steps article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(33, 14, 9, 0.08);
  overflow: hidden;
}
.usage-steps article > span {
  position: absolute;
  top: -22px;
  left: 16px;
  color: rgba(225, 45, 20, 0.07);
  font-size: 7rem;
  font-weight: 1000;
  line-height: 1;
}
.usage-steps i {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--flame), var(--orange));
  color: var(--deep);
  font-size: 1.3rem;
}
.usage-steps h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.usage-steps p {
  position: relative;
  color: var(--muted);
}
.meal-showcase {
  overflow: hidden;
}
.meal-showcase .container {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 40px;
}
.meal-photo {
  position: relative;
}
.meal-photo::before {
  content: "";
  position: absolute;
  inset: 8% -5% -8% 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 193, 25, 0.22);
  filter: blur(40px);
}
.meal-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.why-shabah .feature {
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.12);
  background: rgba(255, 244, 226, 0.06);
  box-shadow: none;
}
.why-shabah .feature .num {
  background: var(--flame);
  color: var(--deep);
}
.why-shabah .feature p {
  color: #e9cfab;
}
.product-spotlight .cta-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 193, 25, 0.18), transparent 26%),
    linear-gradient(135deg, var(--charcoal), var(--deep));
}
.spotlight-product {
  height: 180px;
  margin-block: -70px;
  border: 7px solid #fff7eb;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(3deg);
}
.spotlight-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-action {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.spotlight-action strong {
  color: var(--flame);
  font-size: 1.4rem;
}
.shop-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.52), rgba(17, 16, 14, 0.96) 70%),
    url("../images/shabah-fastfood-hero-v2.webp") center / cover no-repeat;
}
.shop-page-hero::after {
  background: radial-gradient(circle at 82% 35%, rgba(255, 193, 25, 0.16), transparent 34%);
}
.shop-page-hero .eyebrow {
  margin-top: 18px;
}
.single-product-shop {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 193, 25, 0.11), transparent 28%),
    var(--smoke);
}
.shop-hero-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}
.shop-product-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: stretch;
  border-radius: 32px;
  background: var(--charcoal);
  box-shadow: 0 28px 70px rgba(33, 14, 9, 0.24);
  overflow: hidden;
}
.shop-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.shop-product-visual:hover img {
  transform: scale(1.03);
}
.shop-product-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.15;
}
.shop-benefit-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.shop-benefit-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.shop-benefit-list i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0d5;
  color: var(--red);
  font-size: 0.72rem;
}
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.product-use-banner {
  padding-top: 30px;
}

@media (max-width: 980px) {
  .flavor-hero .container {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-content: center;
    padding-block: 72px 110px;
  }
  .flavor-hero::after {
    background: linear-gradient(90deg, rgba(17, 16, 14, 0.56), rgba(17, 16, 14, 0.92) 70%);
  }
  .hero-food-backdrop {
    background-position: 32% center;
  }
  .hero-product {
    display: none;
  }
  .usage-steps {
    grid-template-columns: 1fr;
  }
  .usage-steps article {
    min-height: 220px;
  }
  .meal-showcase .container {
    grid-template-columns: 1fr;
  }
  .meal-showcase-copy {
    max-width: 680px;
  }
  .product-spotlight .cta-card {
    grid-template-columns: 130px 1fr;
  }
  .shop-hero-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }
  .shop-product-visual {
    min-height: 410px;
  }
  .spotlight-action {
    grid-column: 2;
    justify-items: start;
  }
  .spotlight-product {
    grid-row: span 2;
    height: 170px;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .topbar .container > span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .nav,
  .nav-actions,
  .brand {
    min-width: 0;
  }
  .brand span {
    font-size: 1.05rem;
  }
  .flavor-hero {
    border-radius: 0 0 38px 38px;
  }
  .flavor-hero .container {
    min-height: 690px;
    padding-block: 60px 92px;
  }
  .flavor-hero::after {
    background: linear-gradient(0deg, rgba(17, 16, 14, 0.98) 22%, rgba(17, 16, 14, 0.74) 100%);
  }
  .hero-food-backdrop {
    background-position: 30% center;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }
  .hero-copy p {
    font-size: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-proof {
    gap: 7px;
  }
  .hero-proof span {
    font-size: 0.76rem;
  }
  .quick-pairings {
    margin-top: -18px;
  }
  .quick-pairings .container {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
  }
  .quick-pairings span {
    padding: 11px 8px;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--line);
  }
  .quick-pairings span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .media-badge {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.72rem;
  }
  .meal-photo img {
    border-radius: 28px;
  }
  .product-spotlight .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shop-hero-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 30px;
  }
  .shop-product-visual {
    min-height: 420px;
  }
  .shop-product-copy {
    padding: 10px 6px 14px;
  }
  .shop-actions,
  .shop-actions form,
  .shop-actions .btn {
    width: 100%;
  }
  .spotlight-product {
    grid-row: auto;
    width: 150px;
    justify-self: center;
  }
  .spotlight-action {
    grid-column: auto;
    justify-items: center;
  }
}
.main-product {
  aspect-ratio: 1/1;
}
.footer .muted {
  color: #efd5b4;
}
@media (max-width: 980px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  .cta-card {
    display: block;
  }
  .cta-card .btn {
    margin-top: 20px;
  }
  .cart-item {
    grid-template-columns: 90px 1fr;
  }
  .cart-item strong,
  .cart-item form:last-child {
    grid-column: 2;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .purchase-box .wide {
    width: 100%;
  }
  .shop-toolbar {
    display: block;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .cart-item strong,
  .cart-item form:last-child {
    grid-column: 1;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Arabic / English direction system */
[dir="ltr"] body {
  direction: ltr;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

[dir="rtl"] body {
  direction: rtl;
  font-family: "Cairo", "Tajawal", system-ui, sans-serif;
}

.language-switch {
  min-width: 56px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 13px;
  border: 1px solid rgba(34, 22, 14, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.82);
  color: var(--charcoal);
  font-family: "Inter", "Cairo", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  transition: 0.2s ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: var(--red);
  background: #fff;
  color: var(--red);
  outline: 3px solid rgba(225, 45, 20, 0.13);
  outline-offset: 2px;
}

.floating-card {
  inset-inline-end: -16px;
  right: auto;
}

.tag {
  inset-inline-end: 14px;
  right: auto;
}

.step {
  padding-inline: 76px 24px;
}

.step::before {
  inset-inline-start: 22px;
  right: auto;
}

.media-badge {
  inset-inline-end: 24px;
  right: auto;
}

.usage-steps article > span {
  inset-inline-end: 16px;
  left: auto;
}

.toast {
  inset-inline-start: 22px;
  right: auto;
}

[dir="ltr"] .hero-food-backdrop {
  transform: scaleX(-1);
}

[dir="ltr"] .flavor-hero::after {
  background:
    linear-gradient(270deg, rgba(17, 16, 14, 0.05) 0%, rgba(17, 16, 14, 0.2) 42%, rgba(17, 16, 14, 0.98) 77%),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), transparent 55%);
}

[dir="ltr"] .shop-page-hero {
  background:
    linear-gradient(270deg, rgba(17, 16, 14, 0.52), rgba(17, 16, 14, 0.96) 70%),
    url("../images/shabah-fastfood-hero-v2.webp") center / cover no-repeat;
}

[dir="ltr"] .shop-page-hero::after {
  background: radial-gradient(circle at 18% 35%, rgba(255, 193, 25, 0.16), transparent 34%);
}

[dir="ltr"] .directional-arrow,
[dir="ltr"] .currency-arrow {
  transform: rotate(180deg);
}

[dir="ltr"] .whatsapp {
  left: auto;
  right: 20px;
}

[dir="ltr"] .currency-switcher {
  right: auto;
  left: 20px;
}

[dir="ltr"] .currency-option {
  text-align: left;
}

@media (max-width: 980px) {
  .floating-card {
    inset-inline-end: auto;
  }
}

@media (max-width: 560px) {
  .language-switch {
    min-width: 48px;
    height: 40px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .media-badge {
    inset-inline-end: 14px;
  }

  [dir="ltr"] .whatsapp {
    right: 14px;
  }

  [dir="ltr"] .currency-switcher {
    left: 14px;
  }
}
/* Mobile layout fixes - 2026-08-15 */
@media (max-width: 560px) {
  .section {
    padding-block: 48px;
  }

  .flavor-intro .split-layout {
    gap: 26px;
  }

  .flavor-intro h2,
  .meal-showcase h2,
  .cta-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.3;
  }

  .flavor-points {
    gap: 10px;
  }

  .flavor-points > div {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }

  .usage-steps {
    gap: 14px;
  }

  .usage-steps article {
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }

  .usage-steps i {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 17px;
  }

  .usage-steps article > span {
    top: -12px;
    font-size: 5.5rem;
  }

  .usage-steps h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  .usage-steps p {
    line-height: 1.7;
  }

  .meal-showcase .container {
    gap: 26px;
  }

  .cta-card {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .cta-card .btn {
    width: 100%;
    margin-top: 18px;
  }

  .whatsapp {
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  [dir="ltr"] .whatsapp {
    right: 14px;
    left: auto;
  }
}
/* About promise cards layout fix - 2026-08-29 */
.dark .steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.dark .step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 145px;
  margin: 0;
  padding-block: 28px;
  padding-inline-start: 88px;
  padding-inline-end: 28px;
  border-radius: 24px;
}

.dark .step::before {
  top: 50%;
  inset-inline-start: 26px;
  inset-inline-end: auto;
  right: auto;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.dark .step h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.dark .step p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 244, 226, 0.78);
}

@media (max-width: 760px) {
  .dark .steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .dark .step {
    min-height: 120px;
    padding-block: 22px;
    padding-inline-start: 76px;
    padding-inline-end: 20px;
  }

  .dark .step::before {
    inset-inline-start: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Correct promise numbers position */
[dir="rtl"] .dark .step {
  padding: 28px 88px 28px 28px;
}

[dir="rtl"] .dark .step::before {
  right: 26px;
  left: auto;
}

[dir="ltr"] .dark .step {
  padding: 28px 28px 28px 88px;
}

[dir="ltr"] .dark .step::before {
  left: 26px;
  right: auto;
}

@media (max-width: 760px) {
  [dir="rtl"] .dark .step {
    padding: 22px 76px 22px 20px;
  }

  [dir="rtl"] .dark .step::before {
    right: 20px;
    left: auto;
  }

  [dir="ltr"] .dark .step {
    padding: 22px 20px 22px 76px;
  }

  [dir="ltr"] .dark .step::before {
    left: 20px;
    right: auto;
  }
}

/* Keep all six food pairings in one row */
@media (min-width: 561px) {
  .quick-pairings .container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .quick-pairings span:last-child {
    grid-column: auto;
  }
}

/* Dark mode with glass blur */
html {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --smoke: #0f0c0a;
  --ink: #fff4e2;
  --muted: #cbbbab;
  --line: rgba(255, 244, 226, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

body,
.site-header,
.section,
.card,
.product-card,
.icon-btn,
.language-switch,
.btn.outline {
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.theme-toggle {
  flex: 0 0 42px;
}

.theme-toggle i {
  transition: transform 0.3s ease;
}

html[data-theme="dark"] .theme-toggle i {
  color: var(--flame);
  transform: rotate(20deg);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 10%, rgba(225, 45, 20, 0.1), transparent 32%),
    #0f0c0a;
  color: var(--cream);
}

html[data-theme="dark"] .site-header {
  background: rgba(17, 14, 12, 0.76);
  border-bottom-color: rgba(255, 193, 25, 0.18);
  backdrop-filter: saturate(1.25) blur(20px);
  -webkit-backdrop-filter: saturate(1.25) blur(20px);
}

html[data-theme="dark"] .nav-links a {
  color: #f7e9d5;
}

html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active {
  background: var(--flame);
  color: #241208;
}

html[data-theme="dark"] .language-switch,
html[data-theme="dark"] .icon-btn,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .btn.outline {
  background: rgba(255, 244, 226, 0.08);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[data-theme="dark"] .section:not(.dark) {
  background: transparent;
  color: var(--cream);
}

html[data-theme="dark"] .quick-pairings .container,
html[data-theme="dark"] .flavor-points > div,
html[data-theme="dark"] .usage-steps article,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .gallery,
html[data-theme="dark"] .purchase-box,
html[data-theme="dark"] .sidebar,
html[data-theme="dark"] .cart-item,
html[data-theme="dark"] .cart-summary,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .auth-card {
  background: rgba(34, 25, 20, 0.72);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.13);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .muted,
html[data-theme="dark"] .product-card p,
html[data-theme="dark"] .usage-steps p,
html[data-theme="dark"] .flavor-points span {
  color: #cbbbab;
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  .section,
  .card,
  .product-card,
  .icon-btn {
    transition: none;
  }
}

/* Shop cards in dark mode */
html[data-theme="dark"] .products-shop {
  background: transparent;
}

html[data-theme="dark"] .shop-product-card {
  background: rgba(34, 25, 20, 0.72);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .shop-product-card:hover {
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.46);
}

html[data-theme="dark"] .shop-card-image {
  background:
    radial-gradient(circle at center, rgba(255, 193, 25, 0.1), transparent 58%),
    rgba(255, 244, 226, 0.055);
  border-bottom: 1px solid rgba(255, 244, 226, 0.1);
}

html[data-theme="dark"] .shop-card-content {
  background: transparent;
}

html[data-theme="dark"] .shop-card-content h2,
html[data-theme="dark"] .shop-card-content h2 a {
  color: var(--cream);
}

html[data-theme="dark"] .shop-card-content .description {
  color: #d1c1b1;
}

html[data-theme="dark"] .shop-card-price strong {
  color: var(--flame);
}

html[data-theme="dark"] .shop-card-price del {
  color: #a99a8c;
}

html[data-theme="dark"] .shop-card-actions .btn.outline {
  background: rgba(255, 244, 226, 0.07);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.18);
}
/* Wholesale page dark mode */
html[data-theme="dark"] .section.soft {
  background:
    radial-gradient(circle at 80% 20%, rgba(225, 45, 20, 0.09), transparent 35%),
    transparent;
}

html[data-theme="dark"] .benefit {
  background: rgba(255, 244, 226, 0.07);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 226, 0.14);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[data-theme="dark"] .form-card {
  background: rgba(34, 25, 20, 0.76);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 226, 0.14);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

html[data-theme="dark"] .form-card h2,
html[data-theme="dark"] .form-card label {
  color: var(--cream);
}

html[data-theme="dark"] .form-card .muted {
  color: #cbbbab;
}

html[data-theme="dark"] .form-card input,
html[data-theme="dark"] .form-card select,
html[data-theme="dark"] .form-card textarea {
  background: rgba(255, 244, 226, 0.065);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.16);
  box-shadow: none;
}

html[data-theme="dark"] .form-card input:focus,
html[data-theme="dark"] .form-card select:focus,
html[data-theme="dark"] .form-card textarea:focus {
  background: rgba(255, 244, 226, 0.1);
  border-color: var(--flame);
  outline: 3px solid rgba(255, 193, 25, 0.12);
}

html[data-theme="dark"] .form-card input::placeholder,
html[data-theme="dark"] .form-card textarea::placeholder {
  color: #9f9185;
}

html[data-theme="dark"] .form-card select option {
  background: #211814;
  color: var(--cream);
}

/* Contact brand strip dark mode */
html[data-theme="dark"] .brand-strip {
  background: rgba(34, 25, 20, 0.74);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 226, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .brand-strip > div {
  border-color: rgba(255, 244, 226, 0.12);
}

html[data-theme="dark"] .brand-strip b {
  color: var(--flame);
}

html[data-theme="dark"] .brand-strip span {
  color: #cbbbab;
}

/* Homepage featured product cards — dark mode */
html[data-theme="dark"] .featured-product-card {
  background: rgba(34, 25, 20, 0.78);
  color: var(--cream);
  border-color: rgba(255, 244, 226, 0.14);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html[data-theme="dark"] .featured-product-image {
  background:
    radial-gradient(circle at center, rgba(255, 193, 25, 0.1), transparent 60%),
    rgba(255, 244, 226, 0.05);
  border-bottom: 1px solid rgba(255, 244, 226, 0.1);
}

html[data-theme="dark"] .featured-product-content {
  background: transparent;
}

html[data-theme="dark"] .featured-product-content h3,
html[data-theme="dark"] .featured-product-content h3 a {
  color: var(--cream);
}

html[data-theme="dark"] .featured-product-content p {
  color: #cbbbab;
}

html[data-theme="dark"] .featured-product-footer strong {
  color: var(--flame);
}

html[data-theme="dark"] .featured-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 25, 0.28);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}

/* Coming soon product status */
.coming-soon-label {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 193, 25, 0.35);
  border-radius: 999px;
  background: rgba(255, 193, 25, 0.12);
  color: #9b5e00;
  font-weight: 900;
}

html[data-theme="dark"] .coming-soon-label {
  background: rgba(255, 193, 25, 0.1);
  color: var(--flame);
  border-color: rgba(255, 193, 25, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}