@font-face {
  font-family: "IRANYekanXVF";
  src: url("./fonts/IRANYekanXVF.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #251d14;
  --ink-soft: #5f5548;
  --paper: #fbf7ef;
  --cream: #fffaf0;
  --white: #fffefd;
  --honey: #d99a1b;
  --honey-dark: #a96905;
  --honey-pale: #f6d982;
  --pistachio: #7f8d53;
  --rose: #c97063;
  --line: rgba(55, 40, 22, 0.13);
  --shadow: 0 24px 70px rgba(69, 44, 12, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--honey-pale);
  color: var(--ink);
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--honey-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #f8d779;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.section-heading--split > p {
  width: min(430px, 45%);
  margin: 0;
  color: var(--ink-soft);
  line-height: 2;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.story-copy h2,
.custom-cake-card h2,
.newsletter-card h2 {
  margin: 0;
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button svg {
  width: 19px;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 29, 20, 0.18);
}

.button--primary:hover {
  background: #000;
  box-shadow: 0 18px 34px rgba(37, 29, 20, 0.25);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.button--cream {
  background: #fff5da;
  color: var(--ink);
}

.button--wide {
  width: 100%;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.icon-button:hover {
  background: rgba(217, 154, 27, 0.12);
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 68px;
  padding: 6px 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
}

.announcement span,
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement svg {
  width: 14px;
  color: var(--honey-pale);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 82px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(14px);
  transition: height 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(57, 43, 24, 0.06);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 45px;
  height: 45px;
  display: block;
}

.brand-mark__hex {
  position: absolute;
  width: 25px;
  height: 28px;
  background: var(--honey);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.brand-mark__hex--one { right: 0; top: 0; }
.brand-mark__hex--two { left: 0; top: 14px; opacity: 0.72; }
.brand-mark__hex--three { right: 0; bottom: 0; opacity: 0.42; }

.brand-mark__bee {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--honey-pale);
  font-size: 8px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
}

.brand-logo--compact .brand-copy strong {
  font-size: 17px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #554b3f;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--honey);
  content: "";
  transition: width 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cart-button {
  position: relative;
}

.cart-button > span {
  position: absolute;
  top: 0;
  left: -1px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--honey);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 720px;
  padding: 48px 0 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(244, 211, 121, 0.26), transparent 28%),
    linear-gradient(145deg, #fcf8ef 0%, #f7edda 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 595px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 30px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(171, 108, 5, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--honey-dark);
  font-size: 11px;
  font-weight: 800;
}

.hero-kicker svg {
  width: 16px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: clamp(54px, 6.6vw, 88px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  position: relative;
  color: var(--honey-dark);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 4%;
  bottom: -2px;
  width: 82%;
  height: 9px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 10'%3E%3Cpath d='M3 7c38-6 89-7 154-3' fill='none' stroke='%23d99a1b' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
  opacity: 0.7;
}

.hero-copy > p {
  max-width: 530px;
  margin: 26px 0 30px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
}

.avatar-stack {
  display: flex;
  direction: ltr;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-right: -8px;
  border: 2px solid #fff9ee;
  border-radius: 50%;
  background: #ead6b7;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) { background: #bdc99d; }
.avatar-stack span:nth-child(3) { background: #e5b2a9; }
.avatar-stack span:last-child { background: var(--ink); color: #fff; }

.hero-stars {
  color: var(--honey);
  direction: ltr;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero-trust small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  height: 570px;
}

.hero-image-wrap {
  position: absolute;
  inset: 8px 0 0;
  border: 8px solid rgba(255, 255, 255, 0.58);
  border-radius: 47% 47% 28px 28px;
  background: #ead7b5;
  box-shadow: 0 34px 80px rgba(103, 67, 16, 0.19);
  overflow: hidden;
  animation: hero-in 0.9s ease both;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 230, 203, 0.25), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 40px rgba(48, 31, 8, 0.16);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.hero-floating-card--top {
  top: 72px;
  left: -35px;
  min-width: 138px;
  display: grid;
  padding: 14px 17px 13px 50px;
  border-radius: 17px;
}

.hero-floating-card--top span,
.hero-floating-card--bottom small {
  color: var(--ink-soft);
  font-size: 9px;
}

.hero-floating-card--top strong,
.hero-floating-card--bottom strong {
  font-size: 12px;
}

.hero-floating-card--top i {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pistachio);
  color: #fff;
  transform: translateY(-50%);
}

.hero-floating-card--top svg { width: 16px; }

.hero-floating-card--bottom {
  right: -28px;
  bottom: 58px;
  gap: 11px;
  padding: 9px 10px 9px 17px;
  border-radius: 18px;
  animation-delay: -2s;
}

.hero-floating-card--bottom > div {
  display: flex;
  flex-direction: column;
}

.hero-mini-image {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  overflow: hidden;
}

.hero-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-seal {
  position: absolute;
  z-index: 2;
  left: -17px;
  bottom: -12px;
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(37, 29, 20, 0.44);
  border-radius: 50%;
  background: var(--honey-pale);
  line-height: 1.2;
  transform: rotate(-8deg);
}

.hero-seal::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(37, 29, 20, 0.24);
  border-radius: 50%;
  content: "";
}

.hero-seal span,
.hero-seal small { font-size: 8px; }
.hero-seal strong { font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 20px; }

.hero-honeycomb {
  position: absolute;
  top: 60px;
  right: -43px;
  width: 170px;
  height: 200px;
  opacity: 0.13;
}

.hero-honeycomb i {
  position: absolute;
  width: 70px;
  height: 78px;
  border: 2px solid var(--honey-dark);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.hero-honeycomb i:nth-child(1) { top: 0; right: 45px; }
.hero-honeycomb i:nth-child(2) { top: 58px; right: 0; }
.hero-honeycomb i:nth-child(3) { top: 58px; right: 90px; }
.hero-honeycomb i:nth-child(4) { top: 116px; right: 45px; }
.hero-honeycomb i:nth-child(5) { top: 116px; right: 135px; }

.flavor-ribbon {
  position: absolute;
  right: -3%;
  bottom: 20px;
  width: 106%;
  overflow: hidden;
  background: var(--honey);
  color: var(--ink);
  transform: rotate(-1.4deg);
}

.flavor-ribbon > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 900;
  animation: ticker 30s linear infinite;
}

.flavor-ribbon i { font-style: normal; opacity: 0.65; }

.category-section {
  background: var(--paper);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 185px;
  gap: 17px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius-md);
  background: #ddd;
  overflow: hidden;
  isolation: isolate;
}

.category-card--1,
.category-card--5 { grid-column: span 5; }
.category-card--2,
.category-card--6 { grid-column: span 4; }
.category-card--3,
.category-card--4 { grid-column: span 3; }

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 22, 14, 0.82), rgba(29, 22, 14, 0.12) 78%);
}

.category-card__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  color: #fff;
}

.category-card__content > small {
  color: var(--honey-pale);
  font-size: 18px;
}

.category-card h3 {
  margin: 4px 0 0;
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: 24px;
}

.category-card p {
  max-width: 250px;
  margin: 4px 0 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}

.category-card__content > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.category-card:hover .category-card__content > span:last-child {
  opacity: 1;
  transform: translateY(0);
}

.category-card svg { width: 15px; }

.products-section {
  position: relative;
  border-top: 1px solid rgba(69, 45, 17, 0.06);
  background: #f5eee2;
}

.round-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.round-link svg { width: 18px; transition: transform 0.2s ease; }
.round-link:hover svg { transform: translateX(-4px); }

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

.product-card {
  min-width: 0;
  border: 1px solid rgba(75, 53, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 8px 32px rgba(75, 49, 16, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(75, 49, 16, 0.12);
}

.product-card__media {
  position: relative;
  height: 318px;
  margin: 8px;
  border-radius: 17px;
  background: #eee2ce;
  overflow: hidden;
}

.product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-card__media img { transform: scale(1.055); }

.product-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.heart-button {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.heart-button svg { width: 17px; }
.heart-button.is-liked { color: #b84f47; }

.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.quick-add:hover { background: var(--honey-dark); }
.quick-add svg { width: 17px; }
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }

.product-card__content {
  padding: 10px 17px 18px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a7e6e;
  font-size: 9px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--honey-dark);
  direction: rtl;
}

.rating svg { width: 12px; }

.product-card h3 {
  margin: 8px 0 4px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.product-card h3 a:hover { color: var(--honey-dark); }

.product-card__content > p {
  height: 41px;
  display: -webkit-box;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.95;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__price {
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-card__price strong {
  color: var(--ink);
  font-size: 15px;
}

.product-card__price small {
  font-size: 8px;
  font-weight: 600;
}

.product-card__price del {
  color: #a79c8d;
  font-size: 9px;
}

.custom-cake-section {
  padding: 105px 0;
  background: var(--paper);
}

.custom-cake-card {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  border-radius: 42px;
  background: #334023;
  color: #fff;
  overflow: hidden;
}

.custom-cake-card__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(247, 213, 121, 0.14), transparent 26%),
    radial-gradient(circle at 42% 110%, rgba(247, 213, 121, 0.12), transparent 34%);
}

.custom-cake-card__pattern::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(30deg, rgba(255,255,255,.035) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.035) 87.5%), linear-gradient(150deg, rgba(255,255,255,.035) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.035) 87.5%);
  background-size: 42px 73px;
  content: "";
}

.custom-cake-card__copy {
  position: relative;
  z-index: 2;
  padding: 70px 65px;
}

.custom-cake-card h2 {
  font-size: clamp(36px, 4.2vw, 57px);
}

.custom-cake-card__copy > p {
  max-width: 510px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  line-height: 2.1;
}

.custom-cake-card__visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
}

.cake-arch {
  position: absolute;
  top: 40px;
  right: 20px;
  bottom: -45px;
  left: 55px;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 48% 20px 20px;
  overflow: hidden;
  transform: rotate(3deg);
}

.cake-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cake-note {
  position: absolute;
  z-index: 2;
  padding: 9px 15px;
  border-radius: 999px;
  background: #f8e3a6;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.cake-note--one { top: 115px; right: -18px; transform: rotate(-6deg); }
.cake-note--two { left: 30px; bottom: 105px; transform: rotate(5deg); }

.story-section {
  padding-top: 125px;
  background: #f7efe4;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 105px;
}

.story-collage {
  position: relative;
  min-height: 650px;
}

.story-collage__main {
  position: absolute;
  inset: 0 0 50px 90px;
  width: calc(100% - 90px);
  height: calc(100% - 50px);
  border-radius: 46% 46% 28px 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-collage__small {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 250px;
  border: 7px solid #f7efe4;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(65, 44, 18, 0.16);
}

.story-stamp {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: 30px;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(37, 29, 20, 0.55);
  border-radius: 50%;
  background: var(--honey-pale);
  transform: rotate(-10deg);
}

.story-stamp strong { font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 26px; line-height: 1; }
.story-stamp small { margin-top: 5px; font-size: 8px; }

.story-copy > p {
  margin: 24px 0 27px;
  color: var(--ink-soft);
  line-height: 2.15;
}

.story-copy ul {
  display: grid;
  gap: 17px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.story-copy li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.story-copy li > span {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(127, 141, 83, 0.16);
  color: var(--pistachio);
}

.story-copy li svg { width: 16px; }
.story-copy li div { display: flex; flex-direction: column; }
.story-copy li strong { font-size: 13px; }
.story-copy li small { color: var(--ink-soft); font-size: 10px; }

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--honey-dark);
  font-size: 12px;
  font-weight: 900;
}

.text-arrow-link svg { width: 17px; }

.testimonial-section {
  padding: 112px 0 120px;
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.testimonial-grid article {
  position: relative;
  min-height: 300px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.58);
}

.testimonial-grid article.is-featured {
  background: var(--ink);
  color: #fff;
  transform: translateY(-14px);
}

.quote-mark {
  position: absolute;
  top: 17px;
  left: 28px;
  color: var(--honey-pale);
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: 70px;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-stars {
  color: var(--honey);
  direction: ltr;
  font-size: 11px;
  letter-spacing: 3px;
}

.testimonial-grid article > p {
  min-height: 112px;
  margin: 28px 0 30px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2.1;
}

.testimonial-grid article.is-featured > p { color: rgba(255, 255, 255, 0.72); }

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ead6b7;
  color: var(--ink);
  font-weight: 900;
}

.testimonial-person div { display: flex; flex-direction: column; }
.testimonial-person strong { font-size: 12px; }
.testimonial-person small { color: #968b7e; font-size: 9px; }

.newsletter-section {
  padding: 0 0 110px;
  background: var(--paper);
}

.newsletter-card {
  position: relative;
  min-height: 265px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding: 55px 70px;
  border-radius: 36px;
  background: var(--honey-pale);
  overflow: hidden;
}

.newsletter-card h2 { font-size: clamp(30px, 3.5vw, 46px); }

.newsletter-card form {
  position: relative;
  z-index: 2;
}

.newsletter-card label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 800;
}

.newsletter-card form > div {
  display: flex;
  padding: 5px;
  border: 1px solid rgba(37, 29, 20, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.64);
}

.newsletter-card input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.newsletter-card button {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.newsletter-card button svg { width: 16px; }
.newsletter-card form > small { display: block; margin-top: 7px; color: rgba(37,29,20,.6); font-size: 8px; }

.newsletter-success {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(37, 29, 20, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.newsletter-success svg { width: 20px; }

.newsletter-orbit {
  position: absolute;
  top: -85px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(37, 29, 20, 0.12);
  border-radius: 50%;
}

.newsletter-orbit::before,
.newsletter-orbit::after {
  position: absolute;
  border: 1px solid rgba(37, 29, 20, 0.1);
  border-radius: 50%;
  content: "";
}

.newsletter-orbit::before { inset: 30px; }
.newsletter-orbit::after { inset: 70px; }

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #211b12;
  color: #fff;
}

.footer-top__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 25px;
}

.footer-top__inner > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-top__inner > div:last-child { border-left: 0; }
.footer-top__inner svg { width: 28px; color: var(--honey-pale); }
.footer-top__inner span { display: flex; flex-direction: column; }
.footer-top__inner strong { font-size: 11px; }
.footer-top__inner small { color: rgba(255,255,255,.5); font-size: 8px; }

.site-footer {
  background: #211b12;
  color: rgba(255, 255, 255, 0.88);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr 0.56fr;
  gap: 45px;
  padding-block: 70px 55px;
}

.site-footer .brand-copy strong { color: #fff; }
.site-footer .brand-copy small { color: rgba(255,255,255,.45); }

.footer-about > p {
  max-width: 360px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 2.1;
}

.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--honey-pale);
}
.social-links svg { width: 17px; }

.footer-column,
.footer-contact,
.footer-trust { padding-top: 8px; }

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 12px;
}

.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column a { color: rgba(255,255,255,.5); font-size: 10px; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: var(--honey-pale); transform: translateX(-3px); }

.footer-contact > a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
}

.footer-contact > a > span,
.footer-address > span {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(217,154,27,.12);
  color: var(--honey-pale);
}

.footer-contact svg { width: 14px; }
.footer-contact > a > div { display: flex; flex-direction: column; }
.footer-contact small { color: rgba(255,255,255,.44); font-size: 8px; }
.footer-contact strong { color: #fff; direction: ltr; font-size: 12px; }
.footer-address p { margin: 2px 0 0; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.9; }
.footer-hours { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.48); font-size: 9px; }

.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-trust__label { margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 9px; }
.footer-trust a { width: 94px; min-height: 105px; display: grid; place-items: center; padding: 7px; border-radius: 14px; background: #fff; }
.footer-trust img { max-width: 78px; max-height: 90px; object-fit: contain; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

.footer-bottom p { margin: 0; }
.footer-bottom div div { display: flex; gap: 10px; }
.footer-bottom a:hover { color: var(--honey-pale); }

.drawer-backdrop,
.mobile-menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(18, 13, 7, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.is-open,
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: min(460px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 25px 0 90px rgba(31, 21, 8, 0.25);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.22,.72,.2,1);
}

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

.cart-drawer__head {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__head .eyebrow { margin: 0 0 3px; font-size: 9px; }
.cart-drawer__head h2 { margin: 0; font-size: 21px; }
.cart-drawer__head h2 small { margin-right: 7px; color: #8e8374; font-size: 9px; font-weight: 500; }

.cart-drawer__body {
  flex: 1;
  padding: 15px 22px;
  overflow-y: auto;
}

.empty-state {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5ead5;
  color: var(--honey-dark);
}

.empty-state__icon svg { width: 29px; }
.empty-state h3 { margin: 18px 0 5px; font-size: 17px; }
.empty-state p { max-width: 270px; margin: 0 0 23px; color: var(--ink-soft); font-size: 10px; }

.mini-cart-list { display: grid; gap: 4px; }
.mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini-cart-item > img { width: 86px; height: 103px; border-radius: 13px; object-fit: cover; }
.mini-cart-item > div { min-width: 0; display: flex; flex-direction: column; padding: 4px 0; }
.mini-cart-item strong { font-size: 12px; }
.mini-cart-item small { color: var(--ink-soft); font-size: 8px; }
.mini-cart-item__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; }
.mini-cart-item__bottom b { white-space: nowrap; font-size: 11px; }
.mini-cart-item__bottom b i { font-size: 7px; font-style: normal; font-weight: 500; }
.mini-cart-item__remove { position: absolute; top: 13px; left: 0; width: 27px; height: 27px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #f4eee5; cursor: pointer; }
.mini-cart-item__remove svg { width: 13px; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.qty-control button { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.qty-control button:hover { background: #f3ecdf; }
.qty-control button svg { width: 14px; }
.qty-control span { min-width: 30px; text-align: center; font-size: 11px; font-weight: 800; }
.qty-control--small button { width: 27px; height: 27px; }
.qty-control--small span { min-width: 24px; font-size: 9px; }

.cart-drawer__footer { padding: 18px 22px 23px; border-top: 1px solid var(--line); background: #fbf7ef; }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.cart-total > span { font-size: 11px; }
.cart-total strong { font-size: 17px; }
.cart-total small { font-size: 8px; }
.cart-drawer__footer > p { display: flex; align-items: center; gap: 7px; margin: 0 0 15px; color: var(--pistachio); font-size: 8px; }
.cart-drawer__footer > p svg { width: 15px; }
.text-link { display: block; margin-top: 11px; text-align: center; color: var(--ink-soft); font-size: 9px; text-decoration: underline; text-underline-offset: 4px; }

.toast {
  position: fixed;
  z-index: 200;
  right: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 17px 50px rgba(25, 16, 5, 0.27);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible { opacity: 1; transform: translate(50%, 0); }
.toast svg { width: 17px; color: var(--honey-pale); }

.mobile-menu {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: min(390px, 88%);
  height: 100dvh;
  padding: 23px;
  background: var(--paper);
  box-shadow: -25px 0 80px rgba(25, 16, 5, 0.22);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.22,.72,.2,1);
}

.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu nav { display: grid; margin-top: 20px; }
.mobile-menu nav a { display: grid; grid-template-columns: 28px 1fr 20px; align-items: center; gap: 9px; min-height: 54px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.mobile-menu nav a span { color: var(--honey-dark); font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 10px; }
.mobile-menu nav a svg { width: 17px; }
.mobile-menu__contact { position: absolute; right: 23px; bottom: 25px; left: 23px; display: flex; flex-direction: column; padding: 18px; border-radius: 18px; background: var(--ink); color: #fff; }
.mobile-menu__contact span { color: rgba(255,255,255,.55); font-size: 9px; }
.mobile-menu__contact a { font-size: 19px; font-weight: 900; direction: ltr; text-align: right; }

.search-overlay {
  position: fixed;
  z-index: 160;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(251, 247, 239, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-overlay__close { position: absolute; top: 28px; left: 28px; }
.search-overlay__content { width: min(700px, calc(100% - 40px)); text-align: center; transform: translateY(15px); transition: transform .3s ease; }
.search-overlay.is-open .search-overlay__content { transform: translateY(0); }
.search-overlay__content .eyebrow { justify-content: center; }
.search-overlay__content form { display: flex; align-items: center; border-bottom: 2px solid var(--ink); }
.search-overlay__content input { min-width: 0; flex: 1; padding: 19px 5px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: clamp(18px, 4vw, 30px); text-align: right; }
.search-overlay__content form button { width: 58px; height: 58px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.search-overlay__content form svg { width: 27px; }
.search-suggestions { display: flex; justify-content: center; gap: 15px; margin-top: 18px; color: var(--ink-soft); font-size: 10px; }
.search-suggestions a { color: var(--honey-dark); font-weight: 800; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(25px) scale(.98); }
  to { opacity: 1; transform: none; }
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(20%); }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 11px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 35px; }
  .hero-visual { height: 520px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.35fr .7fr .7fr 1fr; }
  .footer-trust { grid-column: 4; align-items: flex-start; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 700px); }
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .account-button { display: none; }
  .site-header { height: 70px; }
  .site-header__inner { gap: 12px; }
  .header-actions { margin-right: auto; }
  .site-header .brand-logo { position: absolute; right: 50%; transform: translateX(50%); }
  .site-header .brand-copy small { display: none; }
  .site-header .brand-mark { width: 38px; height: 38px; transform: scale(.86); }
  .site-header .brand-copy strong { font-size: 15px; }

  .hero-section { min-height: 1050px; padding-top: 55px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { text-align: center; }
  .hero-kicker { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(620px, 100%); height: 520px; margin-inline: auto; }
  .hero-floating-card--top { left: -5px; }
  .hero-floating-card--bottom { right: -5px; }
  .flavor-ribbon { bottom: 18px; }

  .section-heading--split { align-items: flex-start; }
  .category-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .category-card,
  .category-card--1,
  .category-card--2,
  .category-card--3,
  .category-card--4,
  .category-card--5,
  .category-card--6 { grid-column: auto; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card__media { height: 350px; }
  .quick-add { opacity: 1; transform: none; }

  .custom-cake-card { grid-template-columns: 1fr; }
  .custom-cake-card__copy { padding: 55px 45px 15px; text-align: center; }
  .custom-cake-card__copy > p { margin-inline: auto; }
  .custom-cake-card__visual { min-height: 480px; }
  .cake-arch { right: 15%; left: 15%; }
  .cake-note--one { right: 9%; }
  .cake-note--two { left: 10%; }

  .story-grid { grid-template-columns: 1fr; gap: 55px; }
  .story-collage { width: min(620px, 100%); margin-inline: auto; }
  .story-copy { max-width: 650px; margin-inline: auto; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid article { min-height: auto; }
  .testimonial-grid article.is-featured { transform: none; }
  .testimonial-grid article > p { min-height: auto; }

  .newsletter-card { grid-template-columns: 1fr; gap: 35px; padding: 45px; text-align: center; }
  .newsletter-card .eyebrow { justify-content: center; }
  .newsletter-card form { width: min(520px, 100%); margin-inline: auto; text-align: right; }

  .footer-top__inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-top__inner > div { border-left: 0; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / span 2; }
  .footer-trust { grid-column: 3; grid-row: 2; }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .shell { width: calc(100% - 28px); }
  .announcement { justify-content: space-between; gap: 10px; padding-inline: 15px; font-size: 9px; }
  .announcement__desktop { display: none !important; }
  .brand-copy strong { font-size: 15px; }
  .site-header .brand-mark { display: none; }
  .header-actions .icon-button { width: 36px; height: 36px; }

  .hero-section { min-height: 930px; padding-top: 36px; }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-copy > p { margin-block: 20px 25px; font-size: 13px; }
  .hero-actions .button { flex: 1; min-width: 135px; padding-inline: 14px; font-size: 11px; }
  .hero-trust { margin-top: 27px; }
  .hero-trust small { font-size: 8px; }
  .hero-visual { height: 420px; }
  .hero-image-wrap { border-width: 5px; border-radius: 45% 45% 22px 22px; }
  .hero-floating-card--top { top: 55px; left: -4px; transform: scale(.88); transform-origin: left; }
  .hero-floating-card--bottom { display: none; }
  .hero-seal { left: 5px; bottom: -10px; width: 78px; height: 78px; }
  .flavor-ribbon > div { padding-block: 9px; }

  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading--split { display: block; }
  .section-heading--split > p { width: 100%; margin-top: 13px; font-size: 11px; }
  .section-heading h2, .story-copy h2, .custom-cake-card h2, .newsletter-card h2 { font-size: 32px; }
  .align-end .round-link { margin-top: 18px; }

  .category-grid { grid-template-columns: 1fr; grid-auto-rows: 190px; gap: 12px; }
  .category-card__content { padding: 20px; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 9px; }
  .product-card { border-radius: 16px; }
  .product-card__media { height: 215px; margin: 5px; border-radius: 12px; }
  .product-badge { top: 8px; right: 8px; padding: 4px 7px; font-size: 7px; }
  .heart-button { top: 7px; left: 7px; width: 29px; height: 29px; }
  .heart-button svg { width: 14px; }
  .quick-add { right: 7px; bottom: 7px; left: auto; width: 38px; min-height: 38px; padding: 0; border-radius: 50%; }
  .quick-add span { display: none; }
  .product-card__content { padding: 8px 10px 13px; }
  .product-card__meta > span:first-child { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-card h3 { margin-top: 6px; font-size: 12px; }
  .product-card__content > p { display: none; }
  .product-card__price { margin-top: 8px; gap: 5px; }
  .product-card__price strong { font-size: 11px; }
  .product-card__price del { display: none; }

  .custom-cake-section { padding: 65px 0; }
  .custom-cake-card { min-height: 710px; border-radius: 28px; }
  .custom-cake-card__copy { padding: 42px 22px 0; }
  .custom-cake-card__copy > p { font-size: 11px; }
  .custom-cake-card__visual { min-height: 390px; }
  .cake-arch { top: 35px; right: 9%; bottom: -35px; left: 9%; }
  .cake-note { font-size: 8px; }

  .story-section { padding-top: 80px; }
  .story-collage { min-height: 450px; }
  .story-collage__main { right: 0; bottom: 38px; left: 45px; width: calc(100% - 45px); height: calc(100% - 38px); }
  .story-collage__small { width: 145px; height: 170px; border-width: 5px; }
  .story-stamp { top: 30px; left: 5px; width: 78px; height: 78px; }
  .story-stamp strong { font-size: 19px; }
  .story-stamp small { font-size: 6px; }
  .story-copy > p { font-size: 11px; }

  .testimonial-section { padding-block: 75px; }
  .testimonial-grid article { padding: 25px; }

  .newsletter-section { padding-bottom: 70px; }
  .newsletter-card { padding: 35px 18px; border-radius: 25px; }
  .newsletter-card form > div { padding: 4px; }
  .newsletter-card input { padding-inline: 9px; font-size: 10px; }
  .newsletter-card button { padding-inline: 13px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding-block: 50px 35px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-about > p { max-width: none; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-trust { grid-column: 1 / -1; grid-row: auto; align-items: flex-start; }
  .footer-bottom .shell { flex-direction: column; justify-content: center; gap: 5px; text-align: center; }
  .footer-bottom div div { flex-wrap: wrap; justify-content: center; }

  .cart-drawer__head { min-height: 90px; }
  .cart-drawer__body { padding-inline: 15px; }
  .cart-drawer__footer { padding-inline: 15px; }
  .toast { width: max-content; max-width: calc(100% - 25px); bottom: 18px; }
}

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

/* Inner pages */
.inner-page {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  background: #efe1c8;
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.45), transparent 30%), linear-gradient(90deg, transparent 0 46%, rgba(37,29,20,.04) 46% 46.2%, transparent 46.2%);
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}

.page-hero h1,
.simple-page-hero h1,
.about-hero h1,
.account-hero h1 {
  margin: 0;
  font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif;
  font-size: clamp(49px, 6vw, 75px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.page-hero h1 em,
.about-hero h1 em {
  color: var(--honey-dark);
  font-style: normal;
}

.page-hero p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 2;
}

.page-hero--shop {
  background: linear-gradient(125deg, #f8edd8, #ead9bb);
}

.page-hero--shop::before {
  position: absolute;
  top: -150px;
  left: 5%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(101, 69, 25, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(101,69,25,.03), 0 0 0 100px rgba(101,69,25,.02);
  content: "";
}

.page-hero__crumb {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(37,29,20,.1);
  background: rgba(255,255,255,.25);
  font-size: 9px;
}

.page-hero__crumb .shell,
.breadcrumb-bar .shell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero__crumb a,
.breadcrumb-bar a { color: var(--ink-soft); }
.page-hero__crumb strong,
.breadcrumb-bar strong { font-weight: 800; }

.shop-content {
  padding-top: 65px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.shop-search {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.shop-search > svg {
  width: 18px;
  margin-right: 14px;
  color: #9a8d7d;
}

.shop-search input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.shop-search button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: 5px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.shop-search button svg { width: 14px; }

.stock-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 10px;
}
.stock-toggle input { position: absolute; opacity: 0; }
.stock-toggle > span { position: relative; width: 37px; height: 21px; border-radius: 999px; background: #d9d1c5; transition: background .2s ease; }
.stock-toggle > span::after { position: absolute; top: 3px; right: 3px; width: 15px; height: 15px; border-radius: 50%; background: #fff; content: ""; box-shadow: 0 2px 5px rgba(0,0,0,.15); transition: transform .2s ease; }
.stock-toggle input:checked + span { background: var(--pistachio); }
.stock-toggle input:checked + span::after { transform: translateX(-16px); }

.sort-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: 10px;
}
.sort-select select { min-height: 45px; padding: 0 12px 0 33px; border: 1px solid var(--line); border-radius: 12px; outline: 0; appearance: none; background: var(--white); color: var(--ink); font-size: 10px; cursor: pointer; }
.sort-select svg { position: absolute; left: 10px; width: 14px; pointer-events: none; }

.category-pills {
  display: flex;
  gap: 8px;
  padding: 0 0 25px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-pills::-webkit-scrollbar { display: none; }
.category-pills button { min-height: 39px; display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 10px; font-weight: 700; }
.category-pills button span { min-width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: rgba(37,29,20,.08); font-size: 7px; }
.category-pills button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.category-pills button.is-active span { background: var(--honey); color: var(--ink); }

.shop-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.shop-results-head p { margin: 0; color: var(--ink-soft); font-size: 10px; }
.shop-results-head p strong { color: var(--ink); font-size: 13px; }
.shop-results-head button { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; background: transparent; color: #9e5249; cursor: pointer; font-size: 9px; }
.shop-results-head button svg { width: 13px; }

.empty-results,
.large-empty,
.login-required,
.order-success {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.48);
  text-align: center;
}
.empty-results > span,
.large-empty > span,
.login-required > span,
.order-success > span { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: #f2e5ce; color: var(--honey-dark); }
.empty-results svg,
.large-empty > span svg,
.login-required > span svg,
.order-success > span svg { width: 31px; }
.empty-results h2,
.large-empty h2,
.login-required h2,
.order-success h1 { margin: 19px 0 5px; font-size: 24px; }
.empty-results p,
.large-empty p,
.login-required p,
.order-success p { max-width: 520px; margin: 0 0 22px; color: var(--ink-soft); font-size: 11px; }

.breadcrumb-bar {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #f7efe2;
  font-size: 9px;
}

.product-detail {
  padding-top: 70px;
}
.product-detail__grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: 80px; align-items: start; }
.product-gallery__main { position: sticky; top: 100px; height: 680px; border-radius: 32px; background: #eadfce; overflow: hidden; box-shadow: var(--shadow); }
.product-gallery__main > img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__main .product-badge { top: 20px; right: 20px; font-size: 10px; }
.product-gallery__main .heart-button { top: 19px; left: 19px; width: 42px; height: 42px; }
.product-gallery__note { display: flex; align-items: center; gap: 10px; margin-top: 15px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 15px; }
.product-gallery__note > svg { width: 22px; color: var(--honey-dark); }
.product-gallery__note span { display: flex; flex-direction: column; }
.product-gallery__note strong { font-size: 10px; }
.product-gallery__note small { color: var(--ink-soft); font-size: 8px; }

.product-info { padding-top: 18px; }
.product-info__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 9px; }
.product-info__rating .stars { color: var(--honey); direction: ltr; letter-spacing: 2px; }
.product-info__rating i { width: 1px; height: 12px; background: var(--line); }
.product-info__rating a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.product-info h1 { margin: 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: clamp(41px, 4.7vw, 63px); line-height: 1.25; letter-spacing: -.04em; }
.product-info__short { margin: 14px 0 22px; color: var(--ink-soft); font-size: 14px; }
.product-info__price { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-block: 1px solid var(--line); }
.product-info__price strong { font-size: 25px; }
.product-info__price small { font-size: 10px; }
.product-info__price del { color: #9b8f80; font-size: 11px; }
.product-info__unit { display: flex; align-items: center; justify-content: space-between; margin: 20px 0 14px; padding: 13px 15px; border-radius: 13px; background: #f2e9dc; }
.product-info__unit span { color: var(--ink-soft); font-size: 9px; }
.product-info__unit strong { font-size: 11px; }
.product-info__buy { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.product-info__buy .qty-control { min-width: 120px; justify-content: space-between; border-radius: 999px; }
.product-info__buy .button { min-height: 55px; }
.stock-line { display: flex; align-items: center; gap: 7px; margin: 15px 2px 24px; font-size: 9px; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: #6d8c4a; box-shadow: 0 0 0 4px rgba(109,140,74,.12); }
.stock-line strong { color: #587439; }
.stock-line small { margin-right: auto; color: var(--ink-soft); }
.product-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 25px; }
.product-benefits > div { display: flex; align-items: center; gap: 9px; padding: 13px 10px; border: 1px solid var(--line); border-radius: 14px; }
.product-benefits svg { width: 19px; color: var(--honey-dark); }
.product-benefits span { display: flex; flex-direction: column; }
.product-benefits strong { font-size: 8px; }
.product-benefits small { color: var(--ink-soft); font-size: 6px; }
.product-info details { border-top: 1px solid var(--line); }
.product-info details:last-child { border-bottom: 1px solid var(--line); }
.product-info summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; font-size: 11px; font-weight: 800; list-style: none; }
.product-info summary::-webkit-details-marker { display: none; }
.product-info summary svg { width: 16px; transition: transform .2s ease; }
.product-info details[open] summary svg { transform: rotate(180deg); }
.product-info details p { margin: -3px 0 18px; color: var(--ink-soft); font-size: 10px; line-height: 2; }
.related-products { padding-top: 90px; background: #f1e8db; }

.simple-page-hero {
  padding: 65px 0 47px;
  border-bottom: 1px solid var(--line);
  background: #f4ead9;
  text-align: center;
}
.simple-page-hero .eyebrow { justify-content: center; }
.simple-page-hero h1 { font-size: clamp(40px, 5vw, 58px); }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.checkout-steps span { display: flex; align-items: center; gap: 7px; color: #998d7d; font-size: 9px; font-weight: 700; }
.checkout-steps span i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #c7bfb3; border-radius: 50%; font-style: normal; }
.checkout-steps span i svg { width: 13px; }
.checkout-steps span.is-active { color: var(--ink); }
.checkout-steps span.is-active i { border-color: var(--ink); background: var(--ink); color: #fff; }
.checkout-steps span.is-done { color: var(--pistachio); }
.checkout-steps span.is-done i { border-color: var(--pistachio); background: var(--pistachio); color: #fff; }
.checkout-steps b { width: 65px; height: 1px; background: #c9c0b3; }

.cart-page-content,
.checkout-content { padding-top: 70px; background: #f9f4ec; }
.cart-layout,
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 30px; }
.cart-lines,
.checkout-form { min-width: 0; }
.cart-lines__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.cart-lines__head h2 { margin: 0; font-size: 18px; }
.cart-lines__head span { color: var(--ink-soft); font-size: 9px; }
.cart-line { display: grid; grid-template-columns: 125px minmax(0, 1fr) 115px 130px; align-items: center; gap: 18px; margin-bottom: 11px; padding: 12px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); }
.cart-line__image { height: 138px; border-radius: 13px; overflow: hidden; }
.cart-line__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__info > small { color: var(--honey-dark); font-size: 8px; }
.cart-line__info h3 { margin: 3px 0; font-size: 14px; }
.cart-line__info p { display: -webkit-box; margin: 0 0 6px; color: var(--ink-soft); font-size: 8px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cart-line__info button { display: flex; align-items: center; gap: 4px; padding: 0; border: 0; background: transparent; color: #a65e55; cursor: pointer; font-size: 8px; }
.cart-line__info button svg { width: 11px; }
.cart-line__quantity,
.cart-line__price { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cart-line__quantity > span,
.cart-line__price > span { color: var(--ink-soft); font-size: 8px; }
.cart-line__price strong { font-size: 12px; }
.cart-line__price small { font-size: 7px; }
.continue-shopping { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 10px; font-weight: 800; }
.continue-shopping svg { width: 16px; }

.order-summary { position: sticky; top: 90px; padding: 25px; border: 1px solid var(--line); border-radius: 23px; background: var(--white); box-shadow: 0 18px 55px rgba(70,45,12,.07); }
.order-summary h2 { margin: 0 0 23px; font-size: 17px; }
.order-summary__row { display: flex; align-items: center; justify-content: space-between; margin: 12px 0; color: var(--ink-soft); font-size: 9px; }
.order-summary__row strong { color: var(--ink); font-size: 10px; }
.order-summary__row strong.free { color: var(--pistachio); }
.free-shipping-progress { margin: 19px 0; padding-top: 8px; border-top: 3px solid #ebe2d5; }
.free-shipping-progress > span { display: block; height: 3px; margin-top: -11px; border-radius: 5px; background: var(--pistachio); }
.free-shipping-progress p { margin: 9px 0 0; color: var(--ink-soft); font-size: 8px; }
.order-summary__total { display: flex; align-items: flex-end; justify-content: space-between; margin: 21px 0; padding-top: 17px; border-top: 1px solid var(--line); }
.order-summary__total span { font-size: 11px; font-weight: 800; }
.order-summary__total strong { font-size: 18px; }
.order-summary__total small { font-size: 8px; }
.order-summary > p { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 13px 0 0; color: var(--ink-soft); font-size: 8px; }
.order-summary > p svg { width: 14px; color: var(--pistachio); }

.login-required { min-height: 500px; }
.login-required > small { margin-top: 12px; color: var(--ink-soft); font-size: 8px; }
.loading-card { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.loading-card > span { width: 36px; height: 36px; border: 3px solid #e1d8ca; border-top-color: var(--honey); border-radius: 50%; animation: spin .8s linear infinite; }
.loading-card p { color: var(--ink-soft); font-size: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-card { margin-bottom: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 23px; background: var(--white); }
.form-card__title { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-card__title > span { width: 31px; height: 31px; display: grid; flex: 0 0 31px; place-items: center; border-radius: 50%; background: var(--honey-pale); font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 12px; font-weight: 900; }
.form-card__title h2 { margin: 0; font-size: 16px; }
.form-card__title p { margin: 1px 0 0; color: var(--ink-soft); font-size: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label,
.order-note,
.auth-panel form > label { display: flex; flex-direction: column; gap: 6px; }
.form-grid label > span,
.order-note > span,
.auth-panel form > label > span { font-size: 9px; font-weight: 700; }
.form-grid input,
.form-grid textarea,
.form-grid select,
.order-note textarea,
.auth-panel form > label input { width: 100%; min-height: 46px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: #fcfaf6; color: var(--ink); font-size: 10px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-grid textarea,
.order-note textarea { resize: vertical; }
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.order-note textarea:focus,
.auth-panel form > label input:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(217,154,27,.1); }
.form-span-2 { grid-column: 1 / -1; }
.delivery-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.delivery-options label { position: relative; display: flex; align-items: center; gap: 9px; padding: 14px 12px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.delivery-options label.is-selected { border-color: var(--pistachio); background: rgba(127,141,83,.07); }
.delivery-options input,
.payment-options input { position: absolute; opacity: 0; }
.delivery-options label > svg { width: 19px; color: var(--honey-dark); }
.delivery-options label span { display: flex; flex-direction: column; }
.delivery-options strong { font-size: 9px; }
.delivery-options small { color: var(--ink-soft); font-size: 7px; }
.delivery-options label > i,
.payment-options label > i { width: 18px; height: 18px; display: grid; place-items: center; margin-right: auto; border: 1px solid #cfc5b8; border-radius: 50%; color: transparent; }
.delivery-options label > i svg,
.payment-options label > i svg { width: 11px; }
.delivery-options label.is-selected > i,
.payment-options label.is-selected > i { border-color: var(--pistachio); background: var(--pistachio); color: #fff; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 17px; }
.payment-options label { position: relative; display: flex; align-items: center; gap: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.payment-options label.is-selected { border-color: var(--pistachio); background: rgba(127,141,83,.07); }
.payment-options label > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #f4ead7; color: var(--honey-dark); }
.payment-options label > span svg { width: 18px; }
.payment-options label > div { display: flex; flex-direction: column; }
.payment-options strong { font-size: 9px; }
.payment-options small { color: var(--ink-soft); font-size: 7px; }
.order-note { margin-top: 12px; }
.checkout-mini-items { max-height: 245px; margin-bottom: 15px; overflow-y: auto; }
.checkout-mini-items > div { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.checkout-mini-items > div > span { position: relative; width: 48px; height: 53px; }
.checkout-mini-items img { width: 100%; height: 100%; border-radius: 9px; object-fit: cover; }
.checkout-mini-items b { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 4px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 7px; }
.checkout-mini-items p { display: flex; flex-direction: column; margin: 0; }
.checkout-mini-items p strong { font-size: 9px; }
.checkout-mini-items p small { color: var(--ink-soft); font-size: 7px; }
.checkout-mini-items em { font-size: 8px; font-style: normal; font-weight: 800; }
.form-error { padding: 9px 11px; border-radius: 9px; background: #f9e4df; color: #a04b40 !important; font-size: 8px !important; }
.order-success { min-height: 580px; }
.order-success > small { margin-top: 18px; color: var(--pistachio); font-size: 10px; font-weight: 800; }
.order-success h1 { font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: clamp(33px, 5vw, 55px); }
.order-success p strong { color: var(--ink); }
.order-success > div { display: flex; gap: 10px; }

.auth-layout { min-height: calc(100vh - 116px); display: grid; grid-template-columns: .93fr 1.07fr; }
.auth-visual { position: relative; min-height: 760px; background: #313c24; color: #fff; overflow: hidden; }
.auth-visual > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.49) saturate(.75); }
.auth-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,34,20,.95), rgba(28,34,20,.15) 76%); content: ""; }
.auth-visual > div { position: absolute; z-index: 2; right: 9%; bottom: 9%; left: 9%; }
.auth-visual h1 { margin: 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: clamp(45px, 5.2vw, 70px); line-height: 1.25; }
.auth-visual p { max-width: 520px; color: rgba(255,255,255,.7); }
.auth-visual ul { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 20px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.78); font-size: 9px; }
.auth-visual li { display: flex; align-items: center; gap: 6px; }
.auth-visual li svg { width: 14px; color: var(--honey-pale); }
.auth-panel { display: grid; place-items: center; padding: 60px 35px; background: var(--paper); }
.auth-panel__inner { width: min(480px, 100%); }
.auth-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px; color: var(--ink-soft); font-size: 9px; }
.auth-back svg { width: 15px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; padding: 4px; border-radius: 13px; background: #ede4d7; }
.auth-tabs button { min-height: 40px; border: 0; border-radius: 10px; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 10px; font-weight: 800; }
.auth-tabs button.is-active { background: var(--white); color: var(--ink); box-shadow: 0 6px 17px rgba(52,35,13,.07); }
.auth-title { margin-bottom: 24px; }
.auth-title > span { color: var(--honey-dark); font-size: 9px; font-weight: 800; }
.auth-title h2 { margin: 3px 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 35px; }
.auth-title p { margin: 0; color: var(--ink-soft); font-size: 9px; }
.auth-panel form { display: grid; gap: 14px; }
.auth-panel form .form-grid { gap: 12px; }
.auth-switch { margin: 3px 0 0; text-align: center; color: var(--ink-soft); font-size: 9px; }
.auth-switch button { padding: 0; border: 0; background: transparent; color: var(--honey-dark); cursor: pointer; font-weight: 800; }
.auth-error,
.auth-notice { display: flex; align-items: flex-start; gap: 7px; margin-bottom: 15px; padding: 11px 12px; border-radius: 10px; font-size: 8px; line-height: 1.8; }
.auth-error { background: #f7e2dd; color: #994b42; }
.auth-notice { background: #e8eedc; color: #566a37; }
.auth-notice svg { width: 14px; flex: 0 0 14px; }
.password-strength > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.password-strength i { height: 3px; border-radius: 4px; background: #ded5c9; }
.password-strength i.is-on { background: var(--pistachio); }
.password-strength small { color: var(--ink-soft); font-size: 7px; }
.credential-reminder { display: flex; align-items: flex-start; gap: 9px; padding: 11px; border: 1px solid rgba(217,154,27,.25); border-radius: 11px; background: rgba(246,217,130,.12); }
.credential-reminder > svg { width: 18px; color: var(--honey-dark); }
.credential-reminder span { display: flex; flex-direction: column; }
.credential-reminder strong { font-size: 8px; }
.credential-reminder small { color: var(--ink-soft); font-size: 7px; }

.account-hero { padding: 60px 0; background: #344225; color: #fff; }
.account-hero .shell { display: flex; align-items: center; justify-content: space-between; }
.account-hero span { color: var(--honey-pale); font-size: 10px; }
.account-hero h1 { font-size: 48px; }
.account-hero p { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: 10px; }
.account-hero button { display: flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: transparent; color: #fff; cursor: pointer; font-size: 9px; }
.account-hero button svg { width: 15px; }
.account-dashboard { background: #f7f1e8; }
.account-dashboard__grid { display: grid; grid-template-columns: 235px 1fr; align-items: start; gap: 25px; }
.account-dashboard aside { position: sticky; top: 90px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.account-profile { display: flex; flex-direction: column; align-items: center; padding: 13px 0 20px; border-bottom: 1px solid var(--line); }
.account-profile > span { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 50%; background: var(--honey-pale); font-size: 21px; font-weight: 900; }
.account-profile strong { font-size: 11px; }
.account-profile small { color: var(--ink-soft); font-size: 8px; direction: ltr; }
.account-dashboard aside nav { display: grid; gap: 4px; padding-top: 14px; }
.account-dashboard aside nav a { display: flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 10px; border-radius: 10px; color: var(--ink-soft); font-size: 9px; }
.account-dashboard aside nav a.is-active { background: #f1e7d8; color: var(--ink); font-weight: 800; }
.account-dashboard aside nav svg { width: 16px; }
.account-content { min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: 23px; background: var(--white); }
.account-content__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 25px; }
.account-content__head .eyebrow { margin-bottom: 3px; }
.account-content__head h2 { margin: 0; font-size: 22px; }
.order-history { display: grid; gap: 9px; }
.order-history article { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; align-items: center; gap: 15px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; }
.order-history article > div { display: flex; flex-direction: column; }
.order-history small { color: var(--ink-soft); font-size: 7px; }
.order-history strong { font-size: 9px; }
.status-pill { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; background: #eee7dc; font-size: 7px; font-weight: 800; }
.status-preparing,
.status-confirmed { background: #f8e7b5; color: #8e5b04; }
.status-delivered { background: #e1ead4; color: #557133; }
.status-cancelled { background: #f3dbd5; color: #984a41; }
.account-empty { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.account-empty > svg { width: 40px; color: #b5a896; }
.account-empty h3 { margin: 11px 0 3px; font-size: 15px; }
.account-empty p { margin: 0 0 16px; color: var(--ink-soft); font-size: 8px; }
.profile-summary { margin-top: 30px; padding-top: 23px; border-top: 1px solid var(--line); }
.profile-summary h3 { margin: 0 0 14px; font-size: 13px; }
.profile-summary > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.profile-summary span { display: flex; flex-direction: column; padding: 11px; border-radius: 10px; background: #f8f3eb; }
.profile-summary small { color: var(--ink-soft); font-size: 7px; }
.profile-summary strong { font-size: 9px; }

.about-hero { padding: 90px 0 110px; background: #f5ebda; }
.about-hero__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; }
.about-hero p { max-width: 570px; margin: 23px 0 0; color: var(--ink-soft); line-height: 2.1; }
.about-hero__image { position: relative; height: 570px; border-radius: 50% 50% 25px 25px; overflow: hidden; box-shadow: var(--shadow); }
.about-hero__image > img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__image > span { position: absolute; right: 30px; bottom: 28px; display: flex; flex-direction: column; padding: 13px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 13px; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); }
.about-hero__image strong { font-size: 13px; }
.about-hero__image small { color: var(--ink-soft); font-size: 8px; }
.about-values { background: var(--paper); }
.about-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-value-grid article { position: relative; min-height: 285px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.55); }
.about-value-grid article > span { position: absolute; top: 20px; left: 24px; color: #d8cdbd; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 23px; }
.about-value-grid article > svg { width: 33px; color: var(--honey-dark); }
.about-value-grid h3 { margin: 22px 0 8px; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 22px; }
.about-value-grid p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 2.1; }
.about-story { background: #eee5d9; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.about-story__grid > div:first-child { position: relative; min-height: 590px; }
.about-story__grid > div:first-child img:first-child { position: absolute; inset: 0 65px 80px 0; width: calc(100% - 65px); height: calc(100% - 80px); border-radius: 38% 38% 22px 22px; object-fit: cover; }
.about-story__grid > div:first-child img:last-child { position: absolute; bottom: 0; left: 0; width: 210px; height: 240px; border: 7px solid #eee5d9; border-radius: 24px; object-fit: cover; }
.about-story h2 { margin: 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: clamp(35px, 4.5vw, 54px); line-height: 1.4; }
.about-story p { color: var(--ink-soft); line-height: 2.15; }
.about-story blockquote { margin: 24px 0; padding: 15px 18px; border-right: 3px solid var(--honey); background: rgba(255,255,255,.35); color: var(--ink-soft); font-size: 11px; font-style: italic; }

.page-hero--contact { background: #f2e5d0; }
.contact-content { background: #f9f4ec; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 11px; }
.contact-cards > article { display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.contact-cards > article > span { width: 45px; height: 45px; display: grid; flex: 0 0 45px; place-items: center; border-radius: 50%; background: #f3e7d2; color: var(--honey-dark); }
.contact-cards > article svg { width: 20px; }
.contact-cards article div { display: flex; flex-direction: column; }
.contact-cards small { color: var(--ink-soft); font-size: 7px; }
.contact-cards h3 { margin: 1px 0; font-size: 13px; }
.contact-cards p { margin: 0; color: var(--ink-soft); font-size: 8px; }
.contact-order-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 10px; padding: 19px; border-radius: 17px; background: #354225; color: #fff; }
.contact-order-note > svg { width: 25px; color: var(--honey-pale); }
.contact-order-note strong { font-size: 10px; }
.contact-order-note p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: 8px; line-height: 1.9; }
.contact-form-card { min-height: 535px; padding: 35px; border: 1px solid var(--line); border-radius: 25px; background: var(--white); }
.contact-form-card h2 { margin: 0 0 25px; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 35px; }
.contact-form-card form > .button { margin-top: 20px; }
.contact-success { min-height: 470px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contact-success > span { width: 65px; height: 65px; display: grid; place-items: center; border-radius: 50%; background: #e3ecd7; color: var(--pistachio); }
.contact-success svg { width: 27px; }
.contact-success h2 { margin: 15px 0 3px; }
.contact-success p { margin: 0 0 18px; color: var(--ink-soft); font-size: 9px; }
.faq-section { background: #efe6da; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.faq-grid h2 { margin: 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 41px; }
.faq-grid > div:first-child > p { color: var(--ink-soft); font-size: 10px; }
.faq-grid details { border-bottom: 1px solid var(--line); }
.faq-grid summary { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; cursor: pointer; font-size: 11px; font-weight: 800; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary svg { width: 17px; transition: transform .2s ease; }
.faq-grid details[open] summary svg { transform: rotate(45deg); }
.faq-grid details p { margin: -4px 0 18px; color: var(--ink-soft); font-size: 9px; line-height: 2; }

@media (max-width: 980px) {
  .product-detail__grid { gap: 40px; }
  .product-gallery__main { height: 570px; }
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-line { grid-template-columns: 110px minmax(0, 1fr) 105px 120px; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-visual { min-height: 480px; }
  .auth-panel { min-height: 680px; }
  .about-hero__grid { gap: 40px; }
  .about-story__grid { gap: 45px; }
}

@media (max-width: 760px) {
  .page-hero { min-height: 340px; }
  .page-hero h1,
  .about-hero h1 { font-size: 48px; }
  .shop-toolbar { grid-template-columns: 1fr auto; }
  .shop-search { grid-column: 1 / -1; }
  .sort-select > span { display: none; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-gallery__main { position: relative; top: 0; height: min(650px, 115vw); }
  .product-info { padding-top: 0; }
  .cart-line { grid-template-columns: 95px 1fr auto; gap: 12px; }
  .cart-line__image { height: 115px; }
  .cart-line__info p { display: none; }
  .cart-line__quantity { grid-column: 2; flex-direction: row; align-items: center; }
  .cart-line__price { grid-column: 3; grid-row: 1; align-items: flex-end; }
  .delivery-options { grid-template-columns: 1fr; }
  .account-dashboard__grid { grid-template-columns: 1fr; }
  .account-dashboard aside { position: static; }
  .account-dashboard aside nav { grid-template-columns: repeat(3, 1fr); }
  .account-dashboard aside nav a { justify-content: center; }
  .account-profile { display: none; }
  .order-history article { grid-template-columns: 1fr 1fr; }
  .about-hero__grid,
  .about-story__grid,
  .contact-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .about-hero { padding-top: 60px; }
  .about-hero__image { height: 520px; }
  .about-value-grid { grid-template-columns: 1fr; }
  .about-story__grid > div:first-child { min-height: 500px; }
}

@media (max-width: 520px) {
  .page-hero { min-height: 310px; }
  .page-hero p { font-size: 11px; }
  .shop-toolbar { gap: 11px; }
  .sort-select select { width: 135px; }
  .product-info h1 { font-size: 39px; }
  .product-benefits { grid-template-columns: 1fr; }
  .product-info__buy { grid-template-columns: 105px 1fr; }
  .product-info__buy .button { padding-inline: 12px; font-size: 10px; }
  .simple-page-hero { padding-top: 45px; }
  .checkout-steps { gap: 5px; }
  .checkout-steps span { flex-direction: column; gap: 4px; font-size: 7px; }
  .checkout-steps b { width: 28px; }
  .cart-page-content,
  .checkout-content { padding-top: 45px; }
  .cart-line { grid-template-columns: 78px 1fr; }
  .cart-line__image { height: 100px; }
  .cart-line__price { grid-column: 2; grid-row: 2; align-items: flex-start; }
  .cart-line__quantity { grid-column: 2; grid-row: 3; }
  .cart-line__price > span { display: none; }
  .form-card { padding: 20px 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: auto; }
  .payment-options { grid-template-columns: 1fr; }
  .auth-visual { min-height: 430px; }
  .auth-visual h1 { font-size: 44px; }
  .auth-panel { min-height: 620px; padding: 40px 18px; }
  .auth-panel form .form-grid { grid-template-columns: 1fr; }
  .account-hero .shell { align-items: flex-start; }
  .account-hero h1 { font-size: 37px; }
  .account-hero p { display: none; }
  .account-dashboard { padding-top: 45px; }
  .account-dashboard aside nav { grid-template-columns: 1fr; }
  .account-content { padding: 20px 14px; }
  .order-history article { grid-template-columns: 1fr; }
  .profile-summary > div { grid-template-columns: 1fr; }
  .about-hero__image { height: 420px; }
  .about-story__grid > div:first-child { min-height: 410px; }
  .about-story__grid > div:first-child img:last-child { width: 140px; height: 160px; }
  .contact-form-card { padding: 25px 16px; }
}

/* Admin */
.admin-auth {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 25px;
  background: radial-gradient(circle at 15% 15%, rgba(246,217,130,.23), transparent 28%), #f2eadf;
}
.admin-login { width: min(430px, 100%); padding: 38px; border: 1px solid var(--line); border-radius: 27px; background: var(--white); box-shadow: var(--shadow); }
.admin-login .brand-logo { margin-bottom: 30px; }
.admin-login__badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; background: #e7eedc; color: #536c33; font-size: 8px; font-weight: 800; }
.admin-login__badge svg { width: 13px; }
.admin-login h1 { margin: 14px 0 4px; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 32px; }
.admin-login > p { margin: 0 0 22px; color: var(--ink-soft); font-size: 9px; }
.admin-login form { display: grid; gap: 13px; }
.admin-login form label { display: flex; flex-direction: column; gap: 6px; }
.admin-login form label span { font-size: 9px; font-weight: 700; }
.admin-login form input { min-height: 47px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: #fcfaf6; }
.admin-login > a { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; color: var(--ink-soft); font-size: 8px; }
.admin-login > a svg { width: 14px; }

.admin-shell { min-height: 100dvh; display: grid; grid-template-columns: 245px 1fr; background: #f2eee8; }
.admin-sidebar { position: sticky; z-index: 20; top: 0; height: 100dvh; display: flex; flex-direction: column; padding: 24px 17px; background: #211b12; color: #fff; }
.admin-sidebar .brand-logo { padding: 0 8px 25px; border-bottom: 1px solid rgba(255,255,255,.09); }
.admin-sidebar .brand-copy strong { color: #fff; }
.admin-sidebar .brand-copy small { color: rgba(255,255,255,.4); }
.admin-sidebar__label { margin: 22px 11px 8px; color: rgba(255,255,255,.34); font-size: 7px; }
.admin-sidebar nav { display: grid; gap: 4px; }
.admin-sidebar nav button { position: relative; min-height: 45px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border: 0; border-radius: 11px; background: transparent; color: rgba(255,255,255,.55); cursor: pointer; text-align: right; font-size: 10px; transition: background .2s ease, color .2s ease; }
.admin-sidebar nav button:hover { color: #fff; }
.admin-sidebar nav button.is-active { background: rgba(246,217,130,.12); color: var(--honey-pale); }
.admin-sidebar nav button svg { width: 18px; }
.admin-sidebar nav button b { min-width: 19px; height: 19px; display: grid; place-items: center; margin-right: auto; border-radius: 50%; background: var(--honey); color: var(--ink); font-size: 7px; }
.admin-sidebar__bottom { display: grid; gap: 2px; margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.09); }
.admin-sidebar__bottom a,
.admin-sidebar__bottom button { min-height: 39px; display: flex; align-items: center; gap: 8px; padding: 0 10px; border: 0; background: transparent; color: rgba(255,255,255,.44); cursor: pointer; font-size: 8px; }
.admin-sidebar__bottom svg { width: 15px; }

.admin-main { min-width: 0; }
.admin-header { height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.73); backdrop-filter: blur(12px); }
.admin-header > div { display: flex; align-items: center; gap: 12px; }
.admin-header > div:first-child { flex-direction: column; align-items: flex-start; gap: 0; }
.admin-header small { color: var(--ink-soft); font-size: 7px; }
.admin-header strong { font-size: 11px; }
.admin-header > div:last-child > span { color: var(--ink-soft); font-size: 8px; }
.admin-header i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--honey-pale); font-style: normal; font-weight: 900; }
.admin-content { width: min(1360px, 100%); margin-inline: auto; padding: 35px 30px 70px; }
.admin-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.admin-title > div > span { color: var(--honey-dark); font-size: 8px; font-weight: 800; }
.admin-title h1 { margin: 0; font-family: "IRANYekanXVF", Tahoma, Arial, sans-serif; font-size: 34px; }
.admin-title .button { min-height: 45px; font-size: 10px; }
.admin-title__count { color: var(--ink-soft); font-size: 9px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-bottom: 20px; }
.admin-stats article { min-height: 130px; display: flex; align-items: center; gap: 13px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.admin-stats article > span { width: 43px; height: 43px; display: grid; flex: 0 0 43px; place-items: center; border-radius: 13px; background: #f2e5ce; color: var(--honey-dark); }
.admin-stats article:nth-child(2) > span { background: #e4ead8; color: #627a40; }
.admin-stats article:nth-child(3) > span { background: #f5ded9; color: #a65e55; }
.admin-stats article:nth-child(4) > span { background: #e2e6e9; color: #56636c; }
.admin-stats svg { width: 21px; }
.admin-stats article > div { display: flex; flex-direction: column; }
.admin-stats small { color: var(--ink-soft); font-size: 7px; }
.admin-stats strong { font-size: 21px; line-height: 1.4; }
.admin-stats em { color: #9b8f7e; font-size: 7px; font-style: normal; }
.admin-overview-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 17px; }
.admin-panel { min-width: 0; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.admin-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.admin-panel__head h2 { margin: 0; font-size: 13px; }
.admin-panel__head button { padding: 0; border: 0; background: transparent; color: var(--honey-dark); cursor: pointer; font-size: 7px; }
.mini-orders { display: grid; }
.mini-orders > div { display: grid; grid-template-columns: 32px 1fr auto auto; align-items: center; gap: 10px; min-height: 57px; border-bottom: 1px solid var(--line); }
.mini-orders > div:last-child { border-bottom: 0; }
.mini-orders > div > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #eee3d2; font-size: 9px; font-weight: 900; }
.mini-orders p { display: flex; flex-direction: column; margin: 0; }
.mini-orders p strong { font-size: 8px; }
.mini-orders p small { color: var(--ink-soft); font-size: 6px; }
.mini-orders > div > b { font-size: 8px; }
.low-stock-list { display: grid; }
.low-stock-list > div { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.low-stock-list > div:last-child { border-bottom: 0; }
.low-stock-list img { width: 38px; height: 42px; border-radius: 8px; object-fit: cover; }
.low-stock-list p { display: flex; flex-direction: column; margin: 0; }
.low-stock-list strong { font-size: 8px; }
.low-stock-list small { color: var(--ink-soft); font-size: 6px; }
.low-stock-list > div > span { color: #a55349; font-size: 7px; }
.admin-empty { display: grid; place-items: center; min-height: 110px; color: var(--ink-soft); font-size: 8px; }
.admin-empty--large { min-height: 280px; }

.admin-table-tools { min-height: 60px; display: flex; align-items: center; gap: 12px; margin-bottom: 11px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.admin-table-tools .shop-search { width: min(340px, 100%); }
.admin-table-tools .shop-search input { min-height: 39px; }
.admin-table-tools > span { margin-right: auto; color: var(--ink-soft); font-size: 8px; }
.danger-button { min-height: 37px; display: inline-flex; align-items: center; gap: 5px; padding: 0 11px; border: 1px solid #e3bcb5; border-radius: 9px; background: #fae9e6; color: #9a4e45; cursor: pointer; font-size: 8px; }
.danger-button svg { width: 13px; }
.admin-table-wrap { border: 1px solid var(--line); border-radius: 17px; background: var(--white); overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; white-space: nowrap; text-align: right; }
.admin-table th { height: 44px; padding: 0 13px; border-bottom: 1px solid var(--line); background: #f8f4ed; color: #8b7f6f; font-size: 7px; font-weight: 800; }
.admin-table td { min-height: 60px; padding: 9px 13px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 8px; }
.admin-table tbody tr:last-child td { border-bottom: 0; }
.admin-table tbody tr:hover { background: #fdfbf7; }
.admin-table input[type="checkbox"] { accent-color: var(--honey-dark); }
.admin-product-cell { display: flex; align-items: center; gap: 10px; min-width: 210px; }
.admin-product-cell img { width: 42px; height: 47px; border-radius: 8px; object-fit: cover; }
.admin-product-cell p,
.orders-admin-table td:first-child,
.orders-admin-table td:nth-child(2) { display: flex; flex-direction: column; margin: 0; }
.admin-product-cell strong,
.orders-admin-table strong { color: var(--ink); font-size: 8px; }
.admin-product-cell small,
.orders-admin-table small { color: #9a8e7f; font-size: 6px; }
.stock-low { color: #a74e43; font-weight: 800; }
.admin-active { display: inline-flex; padding: 4px 7px; border-radius: 999px; background: #e5ecd9; color: #577036; font-size: 6px; font-weight: 800; }
.admin-active.is-off { background: #eee7de; color: #887b6b; }
.admin-row-actions { display: flex; gap: 4px; }
.admin-row-actions button { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; }
.admin-row-actions button:last-child { color: #a34f45; }
.admin-row-actions svg { width: 13px; }

.admin-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.admin-category-grid article { position: relative; min-height: 150px; display: grid; grid-template-columns: 48px 1fr; gap: 13px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.admin-category-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #f3e5cc; color: var(--honey-dark); font-size: 19px; }
.admin-category-grid article > div:nth-child(2) h3 { margin: 0; font-size: 12px; }
.admin-category-grid article > div:nth-child(2) p { height: 34px; margin: 3px 0; color: var(--ink-soft); font-size: 7px; line-height: 1.8; overflow: hidden; }
.admin-category-grid article > div:nth-child(2) small { color: #9b8e7d; font-size: 6px; }
.admin-category-grid article > div:last-child { position: absolute; right: 18px; bottom: 14px; display: flex; gap: 4px; }
.admin-category-grid article > div:last-child button { width: 25px; height: 25px; display: grid; place-items: center; border: 0; border-radius: 7px; background: #f2ece3; cursor: pointer; }
.admin-category-grid article > div:last-child button:last-child { color: #a65147; }
.admin-category-grid article > div:last-child svg { width: 12px; }
.status-select { min-height: 31px; padding: 0 8px; border: 0; border-radius: 8px; outline: 0; background: #eee7dc; font-size: 7px; }
.status-select.status-confirmed,
.status-select.status-preparing { background: #f7e5b2; color: #805200; }
.status-select.status-delivered { background: #e3ecd7; color: #526e31; }
.status-select.status-cancelled { background: #f4ddd8; color: #93483f; }

.admin-settings { display: grid; gap: 15px; }
.admin-settings > section { display: grid; grid-template-columns: 260px 1fr; gap: 35px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.admin-settings > section > div:first-child { display: flex; align-items: flex-start; gap: 11px; }
.admin-settings > section > div:first-child > svg { width: 23px; color: var(--honey-dark); }
.admin-settings > section > div:first-child span { display: flex; flex-direction: column; }
.admin-settings h2 { margin: 0; font-size: 13px; }
.admin-settings p { margin: 2px 0 0; color: var(--ink-soft); font-size: 7px; }
.admin-settings > .button { justify-self: end; }
.admin-password-form { margin-top: 16px; }
.password-hint { display: flex; align-items: center; gap: 6px; align-self: end; min-height: 46px; padding: 0 12px; border-radius: 10px; background: #f3ecdf; color: var(--ink-soft); font-size: 7px; }
.password-hint svg { width: 14px; color: var(--pistachio); }

.admin-modal-backdrop { position: fixed; z-index: 150; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(23,16,7,.55); backdrop-filter: blur(3px); }
.admin-modal { width: min(600px, 100%); max-height: calc(100dvh - 40px); border-radius: 22px; background: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.25); overflow: auto; }
.admin-modal--wide { width: min(980px, 100%); }
.admin-modal__head { position: sticky; z-index: 2; top: 0; min-height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 15px 22px; border-bottom: 1px solid var(--line); background: rgba(255,254,253,.94); backdrop-filter: blur(12px); }
.admin-modal__head small { color: var(--honey-dark); font-size: 7px; }
.admin-modal__head h2 { margin: 0; font-size: 17px; }
.admin-modal__head > button { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.admin-modal__head > button svg { width: 15px; }
.admin-modal > form { padding: 23px; }
.product-editor { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.product-image-editor img { width: 100%; height: 270px; border-radius: 16px; object-fit: cover; }
.product-image-editor label { width: 100%; min-height: 40px; margin-top: 9px; padding: 0 10px; font-size: 7px; }
.product-image-editor input { display: none; }
.product-image-editor > small { display: block; margin-top: 4px; color: var(--ink-soft); text-align: center; font-size: 6px; }
.editor-switches { display: flex; flex-wrap: wrap; gap: 14px; }
.editor-switches label { display: flex; flex-direction: row; align-items: center; gap: 7px; font-size: 8px; cursor: pointer; }
.editor-switches input { position: absolute; opacity: 0; }
.editor-switches label > span { position: relative; width: 36px; height: 20px; border-radius: 999px; background: #ddd4c7; }
.editor-switches label > span::after { position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; content: ""; transition: transform .2s ease; }
.editor-switches input:checked + span { background: var(--pistachio); }
.editor-switches input:checked + span::after { transform: translateX(-16px); }
.admin-modal__footer { display: flex; justify-content: flex-end; gap: 8px; margin-top: 23px; padding-top: 18px; border-top: 1px solid var(--line); }
.admin-modal__footer .button { min-height: 42px; font-size: 9px; }

@media (max-width: 1050px) {
  .admin-shell { grid-template-columns: 200px 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-category-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-settings > section { grid-template-columns: 200px 1fr; }
}

@media (max-width: 760px) {
  .admin-shell { display: block; padding-bottom: 70px; }
  .admin-sidebar { position: fixed; z-index: 100; top: auto; right: 0; bottom: 0; left: 0; width: 100%; height: 68px; display: block; padding: 7px 8px; border-top: 1px solid rgba(255,255,255,.1); }
  .admin-sidebar > .brand-logo,
  .admin-sidebar__label,
  .admin-sidebar__bottom { display: none; }
  .admin-sidebar nav { height: 100%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
  .admin-sidebar nav button { min-height: 54px; flex-direction: column; justify-content: center; gap: 2px; padding: 0; font-size: 7px; }
  .admin-sidebar nav button svg { width: 17px; }
  .admin-sidebar nav button b { position: absolute; top: 1px; left: 20%; }
  .admin-header { height: 62px; padding-inline: 16px; }
  .admin-content { padding: 25px 14px 55px; }
  .admin-title h1 { font-size: 29px; }
  .admin-title .button { padding-inline: 13px; }
  .admin-overview-grid { grid-template-columns: 1fr; }
  .admin-table-tools { flex-wrap: wrap; }
  .admin-table-tools .shop-search { width: 100%; }
  .admin-category-grid { grid-template-columns: 1fr; }
  .admin-settings > section { grid-template-columns: 1fr; gap: 18px; }
  .product-editor { grid-template-columns: 1fr; }
  .product-image-editor { width: min(260px, 100%); margin-inline: auto; }
}

@media (max-width: 480px) {
  .admin-auth { padding: 12px; }
  .admin-login { padding: 28px 20px; }
  .admin-header > div:last-child > span { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .admin-stats article { min-height: 115px; flex-direction: column; align-items: flex-start; gap: 7px; padding: 13px; }
  .admin-stats article > span { width: 34px; height: 34px; flex-basis: 34px; }
  .admin-title { align-items: center; }
  .admin-title h1 { font-size: 25px; }
  .admin-title .button { min-height: 40px; padding-inline: 10px; font-size: 8px; }
  .mini-orders > div { grid-template-columns: 30px 1fr auto; }
  .mini-orders > div > .status-pill { display: none; }
  .admin-modal-backdrop { padding: 8px; }
  .admin-modal { max-height: calc(100dvh - 16px); border-radius: 17px; }
  .admin-modal > form { padding: 17px 12px; }
}
