:root {
  --ivory: #ffffff;
  --green: #10c9a0;
  --gray: var(--ivory);
  --beige: #ead9b4;
  --black: #000000;
  --bg: var(--ivory);
  --bg-strong: rgba(234, 217, 180, 0.5);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: var(--ivory);
  --text: var(--black);
  --muted: rgba(0, 0, 0, 0.7);
  --line: rgba(0, 0, 0, 0.12);
  --accent: var(--green);
  --accent-deep: var(--black);
  --accent-soft: rgba(234, 217, 180, 0.8);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1320px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.narrow {
  width: min(980px, 100%);
}

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

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 240px;
  height: 78px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark {
  display: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--black);
}

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

.main-nav a,
.search-link,
.cart-link,
.menu-toggle {
  font-size: 1rem;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.search-link:hover,
.cart-link:hover,
.main-nav a.is-active,
.cart-link.is-active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(239, 239, 239, 0.92);
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.8rem;
  margin-left: 1rem;
  gap: 0;
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
}

.cart-link::before {
  content: "";
  position: absolute;
  left: 0.58rem;
  top: 0.52rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='19' r='1.15'/%3E%3Ccircle cx='17' cy='19' r='1.15'/%3E%3Cpath d='M4 5h2.1l1.35 8.15h10.45l1.55-6.15H7.1'/%3E%3Cpath d='M8.2 16.1h9.7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-link::after {
  content: none;
}

.search-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 1.2rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
}

.search-link::before {
  content: "";
  width: 1.02rem;
  height: 1.02rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.8-3.8'/%3E%3C/svg%3E") center / contain no-repeat;
}

.search-link::after {
  content: none;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  position: absolute;
  top: -0.15rem;
  right: -0.25rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label.center,
.section-title.center,
.section-copy.center {
  justify-content: center;
  text-align: center;
}

.section-label.center {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  line-height: 1.1;
  margin-top: 0.9rem;
}

.section-copy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-solid {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.button-soft {
  background: rgba(239, 239, 239, 0.88);
  border-color: var(--line);
  color: var(--text);
}

.button-outline {
  border-color: rgba(234, 217, 180, 0.72);
  color: var(--beige);
  background: rgba(0, 0, 0, 0.36);
}

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

.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.text-link.large {
  font-size: 1.05rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 0;
}

.hero-section::before {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background: url("hero.jpeg") center 44% / cover no-repeat;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: clamp(480px, 56vw, 540px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(760px, 100%);
  margin: 0 auto;
  padding: 2.6rem 0 1.6rem;
  text-align: center;
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.3vw, 4.6rem);
  line-height: 1;
  max-width: 700px;
  margin-top: 0.8rem;
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.78);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 1.1rem;
  color: rgba(0, 0, 0, 0.76);
  font-size: 1.02rem;
  text-shadow: 0 6px 16px rgba(255, 255, 255, 0.72);
}

.hero-copy h1 {
  color: rgba(0, 0, 0, 0.88);
}

.hero-copy .section-label {
  justify-content: center;
  color: rgba(0, 0, 0, 0.74);
  text-shadow: 0 5px 14px rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.about-section,
.featured-section,
.benefits-section,
.contact-section,
.page-hero,
.catalog-section,
.cart-section,
.admin-section {
  padding: 4.8rem 0;
}

.about-section {
  position: relative;
  padding: 2.2rem 0 6rem;
  background: linear-gradient(
    180deg,
    rgba(234, 217, 180, 0.46) 0%,
    rgba(234, 217, 180, 0.34) 58%,
    rgba(255, 255, 255, 1) 100%
  );
}

body[data-page="home"] .about-section .section-label {
  font-size: 28px;
  letter-spacing: 0.24em;
  margin-bottom: 0.2rem;
}

.about-section::before {
  content: none;
}

.about-section .container,
.featured-section .container,
.benefits-section .container,
.contact-section .container,
.page-hero .container,
.catalog-section .container,
.cart-section .container,
.admin-section .container {
  position: relative;
}

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

.stat-card {
  padding: 1.45rem;
  text-align: center;
  background: rgba(239, 239, 239, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--accent);
}

.stat-card span {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

body[data-page="home"] .featured-section .section-heading {
  justify-content: center;
}

body[data-page="home"] .featured-section .section-heading > div {
  text-align: center;
}

body[data-page="home"] .featured-section .section-label {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  font-size: 28px;
  letter-spacing: 0.16em;
}

body[data-page="home"] .featured-section .section-title {
  font-size: clamp(2rem, 3vw, 49px);
}

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

.reviews-section {
  padding: 1.4rem 0 4.2rem;
}

.reviews-section .section-heading {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.reviews-section .section-heading > div {
  text-align: center;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.review-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: none;
  outline: none;
}

.review-nav:hover,
.review-nav:focus-visible {
  background: transparent;
  color: var(--accent);
  outline: none;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
}

.review-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.75rem 1.55rem 1.55rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  position: relative;
}

.product-image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem 0;
}

.product-image-thumb {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(234, 217, 180, 0.16);
}

.product-image-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(16, 201, 160, 0.18);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.reviewer-photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.95rem;
  height: 3.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 4px solid rgba(234, 217, 180, 0.26);
  flex-shrink: 0;
}

.reviewer-photo.has-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}

.reviewer-photo-anjana {
  background: linear-gradient(135deg, #786658, #4b3c34);
}

.reviewer-photo-manoj {
  background: linear-gradient(135deg, #8a6c55, #4f4136);
}

.reviewer-photo-nisha {
  background: linear-gradient(135deg, #7c5e4f, #43362d);
}

.reviewer-meta strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.reviewer-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.22rem;
}

.review-stars {
  display: inline-block;
  color: #efb400;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-location {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-title {
  font-size: 1.35rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.76);
}

.review-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.84);
  box-shadow: var(--shadow);
}

.product-card-trigger,
.product-card-trigger-static {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  color: inherit;
}

.product-visual {
  position: relative;
  min-height: 290px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-visual-uploaded {
  background-position: center;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(234, 217, 180, 0.92);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.76);
  color: var(--beige);
  backdrop-filter: blur(8px);
}

.product-visual-copy p {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.82);
}

.product-visual-copy strong {
  display: block;
  margin-top: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.art-biryani {
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.18), rgba(16, 201, 160, 0.12)), url("hero.jpeg");
  background-position: center 38%;
}

.art-spices {
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.18), rgba(16, 201, 160, 0.12)), url("Dry-fruits-Spices-1.jpg");
  background-position: center;
}

.art-dryfruits {
  background-image: linear-gradient(160deg, rgba(16, 201, 160, 0.12), rgba(0, 0, 0, 0.2)), url("Dry-fruits-Spices-1.jpg");
  background-position: right center;
  background-size: 135%;
}

.art-millets {
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.18), rgba(16, 201, 160, 0.12)), url("hero.jpeg");
  background-position: right bottom;
  background-size: 140%;
}

.art-saffron {
  background-image: linear-gradient(160deg, rgba(16, 201, 160, 0.14), rgba(0, 0, 0, 0.18)), url("hero.jpeg");
  background-position: left center;
  background-size: 150%;
}

.art-nuts {
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.16), rgba(16, 201, 160, 0.14)), url("Dry-fruits-Spices-1.jpg");
  background-position: 76% 20%;
  background-size: 145%;
}

.art-gold {
  background-image: linear-gradient(160deg, rgba(16, 201, 160, 0.14), rgba(0, 0, 0, 0.16)), url("Dry-fruits-Spices-1.jpg");
  background-position: 10% 90%;
  background-size: 150%;
}

.art-ragi {
  background-image: linear-gradient(160deg, rgba(0, 0, 0, 0.18), rgba(16, 201, 160, 0.12)), url("hero.jpeg");
  background-position: 80% 60%;
  background-size: 155%;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
}

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

.product-meta h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.product-price {
  font-weight: 700;
  color: var(--accent-deep);
}

.product-description {
  color: var(--muted);
  font-size: 0.96rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.product-unit {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-purchase {
  display: grid;
  grid-template-columns: minmax(132px, 1.25fr) minmax(112px, 0.9fr) minmax(108px, 0.85fr);
  align-items: end;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(234, 217, 180, 0.56);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.variant-picker > span,
.quantity-picker > span,
.selected-total > span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.variant-picker {
  min-width: 0;
  width: 100%;
}

.variant-picker .option-select {
  background: rgba(239, 239, 239, 0.92);
  min-height: 3.2rem;
  font-size: 0.82rem;
  padding: 0.78rem 2.15rem 0.78rem 0.8rem;
  line-height: 1.1;
}

.selected-total strong {
  font-size: 1.08rem;
  color: var(--accent-deep);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.shop-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 3.6rem;
  padding: 0.9rem 1.8rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-all-link:hover,
.shop-all-link:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: translateY(-1px);
}

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

.benefit-card {
  padding: 1.65rem;
  border-radius: 24px;
  background: rgba(239, 239, 239, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.benefit-card p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  padding: 0 0 1rem;
}

.footer-shell {
  padding: 1.7rem 1.8rem 0.9rem;
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  width: 100%;
  max-width: 21rem;
}

.footer-grid > .footer-column:first-child {
  justify-self: start;
}

.footer-column-brand {
  order: 3;
  justify-self: end;
}

.footer-column-contact {
  order: 2;
  justify-self: center;
  max-width: 19rem;
  justify-items: flex-start;
}

.footer-heading,
.footer-subheading {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-heading {
  font-size: 1.45rem;
  line-height: 1.1;
}

.footer-subheading {
  font-size: 1.02rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-copy strong {
  color: var(--text);
}

.footer-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.98rem;
}

.footer-contact-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-contact-row:hover {
  color: var(--accent);
}

.footer-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(234, 217, 180, 0.22);
}

.footer-icon::before,
.footer-icon::after {
  content: "";
  position: absolute;
}

.footer-icon-plain {
  width: 1.15rem;
  height: 1.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
}

.footer-icon-plain::after {
  content: none;
}

.footer-icon-phone.footer-icon-plain::before,
.footer-icon-whatsapp.footer-icon-plain::before,
.footer-icon-mail.footer-icon-plain::before {
  content: "";
  position: static;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.footer-icon-phone.footer-icon-plain::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.85 21 3 13.15 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.24 1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.85 21 3 13.15 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.24 1z'/%3E%3C/svg%3E");
}

.footer-icon-whatsapp.footer-icon-plain::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.18c-.28-.14-1.64-.8-1.89-.89-.25-.09-.43-.14-.61.14-.18.28-.7.89-.86 1.08-.16.19-.31.21-.59.07-.28-.14-1.17-.43-2.22-1.37-.82-.73-1.37-1.63-1.53-1.9-.16-.28-.02-.43.12-.57.12-.12.28-.31.42-.47.14-.16.19-.28.28-.47.09-.19.05-.35-.02-.49-.07-.14-.61-1.47-.84-2.02-.22-.52-.44-.45-.61-.46h-.52c-.19 0-.49.07-.75.35-.26.28-.98.96-.98 2.34s1 2.72 1.14 2.91c.14.19 1.96 3 4.75 4.08.66.28 1.18.45 1.58.57.66.21 1.26.18 1.73.11.53-.08 1.64-.67 1.87-1.31.23-.63.23-1.18.16-1.31-.06-.12-.25-.19-.52-.33Z'/%3E%3Cpath d='M27.02 15.88C27.02 9.79 22.05 4.83 15.96 4.83S4.9 9.79 4.9 15.88c0 1.95.5 3.85 1.46 5.52L4.8 27.17l5.92-1.52a11 11 0 0 0 5.24 1.33h.01c6.08 0 11.05-4.96 11.05-11.1Zm-11.05 9.23h-.01a9.2 9.2 0 0 1-4.69-1.28l-.34-.2-3.52.91.94-3.43-.22-.35a9.18 9.18 0 0 1-1.41-4.88c0-5.08 4.14-9.23 9.24-9.23 2.45 0 4.76.95 6.5 2.71a9.16 9.16 0 0 1 2.71 6.52c0 5.09-4.15 9.23-9.2 9.23Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.18c-.28-.14-1.64-.8-1.89-.89-.25-.09-.43-.14-.61.14-.18.28-.7.89-.86 1.08-.16.19-.31.21-.59.07-.28-.14-1.17-.43-2.22-1.37-.82-.73-1.37-1.63-1.53-1.9-.16-.28-.02-.43.12-.57.12-.12.28-.31.42-.47.14-.16.19-.28.28-.47.09-.19.05-.35-.02-.49-.07-.14-.61-1.47-.84-2.02-.22-.52-.44-.45-.61-.46h-.52c-.19 0-.49.07-.75.35-.26.28-.98.96-.98 2.34s1 2.72 1.14 2.91c.14.19 1.96 3 4.75 4.08.66.28 1.18.45 1.58.57.66.21 1.26.18 1.73.11.53-.08 1.64-.67 1.87-1.31.23-.63.23-1.18.16-1.31-.06-.12-.25-.19-.52-.33Z'/%3E%3Cpath d='M27.02 15.88C27.02 9.79 22.05 4.83 15.96 4.83S4.9 9.79 4.9 15.88c0 1.95.5 3.85 1.46 5.52L4.8 27.17l5.92-1.52a11 11 0 0 0 5.24 1.33h.01c6.08 0 11.05-4.96 11.05-11.1Zm-11.05 9.23h-.01a9.2 9.2 0 0 1-4.69-1.28l-.34-.2-3.52.91.94-3.43-.22-.35a9.18 9.18 0 0 1-1.41-4.88c0-5.08 4.14-9.23 9.24-9.23 2.45 0 4.76.95 6.5 2.71a9.16 9.16 0 0 1 2.71 6.52c0 5.09-4.15 9.23-9.2 9.23Z'/%3E%3C/svg%3E");
}

.footer-icon-mail.footer-icon-plain::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Zm2 .5a.5.5 0 0 0-.3.9l6.7 4.84a1 1 0 0 0 1.2 0l6.7-4.84A.5.5 0 0 0 19 6.5Zm14 11a.5.5 0 0 0 .5-.5V8.47l-5.94 4.3a2.5 2.5 0 0 1-3.12 0L4.5 8.47V17a.5.5 0 0 0 .5.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Zm2 .5a.5.5 0 0 0-.3.9l6.7 4.84a1 1 0 0 0 1.2 0l6.7-4.84A.5.5 0 0 0 19 6.5Zm14 11a.5.5 0 0 0 .5-.5V8.47l-5.94 4.3a2.5 2.5 0 0 1-3.12 0L4.5 8.47V17a.5.5 0 0 0 .5.5Z'/%3E%3C/svg%3E");
}

.footer-icon-phone::before {
  width: 0.56rem;
  height: 0.82rem;
  border: 1.7px solid currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 1rem;
  transform: rotate(45deg);
}

.footer-icon-phone::after {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  border-radius: 50%;
  transform: rotate(18deg) translate(0.05rem, -0.06rem);
  opacity: 0.85;
}

.footer-icon-mail::before {
  width: 0.96rem;
  height: 0.66rem;
  border: 1.5px solid currentColor;
  border-radius: 0.08rem;
}

.footer-icon-mail::after {
  width: 0.66rem;
  height: 0.66rem;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  top: 0.69rem;
}

.footer-follow {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.footer-social-links {
  margin-top: 0;
  justify-content: flex-start;
}

.footer-social-links .social-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-color: var(--line);
  background: rgba(234, 217, 180, 0.32);
  color: var(--text);
  box-shadow: none;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.footer-actions .button {
  padding: 0.72rem 1.08rem;
  border-radius: 12px;
  font-size: 0.98rem;
}

.footer-actions .button-soft {
  background: rgba(234, 217, 180, 0.3);
  border-color: var(--line);
  color: var(--text);
}

.footer-actions .button-soft:hover,
.footer-actions .button-soft:focus-visible {
  background: var(--beige);
  border-color: var(--beige);
  color: var(--black);
}

.footer-contact-panel {
  margin-top: 1.15rem;
}

.footer-contact-panel .contact-form {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

.footer-contact-panel .contact-form label {
  color: var(--muted);
}

.footer-contact-panel .contact-form input,
.footer-contact-panel .contact-form textarea {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.98);
}

.footer-rights {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.24;
}

.contact-section::before {
  left: -1.6rem;
  background: radial-gradient(circle, rgba(16, 201, 160, 0.92) 0%, rgba(16, 201, 160, 0) 72%);
}

.contact-section::after {
  right: -1.8rem;
  background: radial-gradient(circle, rgba(234, 217, 180, 0.96) 0%, rgba(234, 217, 180, 0) 72%);
}

.contact-shell {
  padding: 2.5rem 2.1rem;
  border-radius: 32px;
  background: rgba(239, 239, 239, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-phone {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(234, 217, 180, 0.9);
  color: var(--black);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.social-icon.is-disabled {
  opacity: 0.55;
  cursor: default;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

/* Customer details form (Cart page) */
.customer-details-section {
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.9);
}

.customer-details-section .container {
  max-width: 740px;
}

.customer-details-section h2 {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.customer-details-section form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.customer-details-section fieldset {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 1.1rem 1rem 0.9rem;
  gap: 0.9rem;
  display: grid;
}

.customer-details-section fieldset legend {
  padding: 0 0.4rem;
  font-weight: 700;
  font-size: 1rem;
}

.customer-details-section label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.85);
}

.customer-details-section label.full {
  grid-column: span 2;
}

.customer-details-section label input,
.customer-details-section label textarea,
.customer-details-section label select {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  outline: none;
  min-height: 42px;
  box-sizing: border-box;
}

.customer-details-section label textarea {
  resize: vertical;
  min-height: 96px;
}

.customer-details-section > form > label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

/* Toggle switch styling */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}

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

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

.toggle-switch .toggle-track {
  position: relative;
  width: 45px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  transition: background 180ms ease;
}

.toggle-switch .toggle-track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);
  transition: transform 180ms ease;
}

.toggle-switch input:checked + .toggle-track {
  background: rgba(16, 201, 160, 0.8);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(21px);
}

.toggle-switch .toggle-label {
  font-weight: 600;
}

.customer-details-section [data-shipping-fields] {
  display: grid;
  gap: 1.15rem;
}

.customer-details-section [data-shipping-fields][hidden] {
  display: none !important;
}

.customer-details-section .form-actions {
  display: flex;
  justify-content: flex-end;
}

.customer-details-section .form-actions .button {
  min-width: 200px;
}

@media (min-width: 720px) {
  .customer-details-section fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-details-section label {
    grid-column: span 1;
  }

  .customer-details-section label:nth-child(2n) {
    padding-left: 0.6rem;
  }
}

.contact-form-panel {
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(239, 239, 239, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(239, 239, 239, 0.96);
  padding: 0.9rem 1rem;
  color: var(--text);
}

.copyright {
  margin-top: 1.6rem;
  color: var(--muted);
  text-align: center;
}

.page-hero {
  padding-bottom: 2rem;
}

body[data-page="products"] .page-hero .section-label {
  font-size: 1.22rem;
  letter-spacing: 0.24em;
}

body[data-page="cart"] .page-hero .section-label {
  font-size: 1.75rem;
  letter-spacing: 0.24em;
}

body[data-page="products"] .page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body[data-page="products"] .page-hero .section-title,
body[data-page="products"] .page-hero .section-copy {
  text-align: center;
}

body[data-page="products"] .catalog-toolbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

body[data-page="products"] .catalog-toolbar-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

body[data-page="products"] .catalog-search-toggle {
  margin-left: 0;
}

body[data-page="products"] .catalog-filter-toggle {
  display: none;
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

body[data-page="products"] .catalog-filter-toggle::before {
  content: "";
  width: 1rem;
  height: 1.8px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 -0.32rem 0 rgba(0, 0, 0, 0.72), 0 0.32rem 0 rgba(0, 0, 0, 0.72);
}

body[data-page="products"] .product-search-panel {
  display: flex;
  align-items: center;
}

body[data-page="products"] .product-search-panel[hidden] {
  display: none !important;
}

body[data-page="products"] .search-field-inline span {
  display: none;
}

body[data-page="products"] .search-field-inline input {
  min-width: 180px;
  max-width: 220px;
  padding: 0.2rem 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

body[data-page="products"] .search-field-inline input:focus,
body[data-page="products"] .search-field-inline input:focus-visible,
body[data-page="products"] .search-field-inline input:active {
  outline: none;
  border: none;
  background: transparent;
  box-shadow: none;
}

body[data-page="products"] .filter-group[data-category-panel] {
  gap: 0;
  align-items: flex-end;
  grid-column: 2;
  grid-row: 1;
}

body[data-page="products"] .filter-pills {
  justify-content: flex-end;
  gap: 1.35rem;
}

body[data-page="products"] .filter-pill {
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  box-shadow: none;
}

body[data-page="products"] .filter-pill.is-active {
  background: none;
  color: var(--accent);
}

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

body[data-page="products"] .compact-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 230px));
  justify-content: center;
}

.compact-product-grid .product-card {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.compact-product-grid .product-card .product-body {
  display: none;
}

.compact-product-grid .product-card .product-visual {
  min-height: 220px;
  border-radius: 22px;
}

.compact-product-grid .product-card .product-visual-copy {
  left: 0.85rem;
  right: 0.85rem;
  top: 50%;
  bottom: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  text-align: center;
  transform: translateY(-50%);
}

.compact-product-grid .product-card .product-visual-copy p {
  display: none;
}

.compact-product-grid .product-card .product-visual-copy strong {
  font-size: 1.05rem;
  line-height: 1.15;
  margin-top: 0;
}

.compact-product-grid .product-card .product-badge {
  display: none;
}

body.has-modal-open {
  overflow: hidden;
}

.product-modal[hidden] {
  display: none !important;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.product-modal-dialog {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 28px;
  background: rgba(239, 239, 239, 0.98);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.product-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(239, 239, 239, 0.94);
  color: transparent;
  font-size: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.product-modal-close::before,
.product-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1.8px;
  background: rgba(0, 0, 0, 0.72);
}

.product-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-modal .product-card {
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.product-modal .product-card .product-body {
  display: flex;
}

.product-modal .product-visual {
  min-height: 250px;
  border-radius: 28px 28px 0 0;
}

.product-modal .product-visual-copy {
  padding: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  top: 50%;
  bottom: auto;
  text-align: center;
  transform: translateY(-50%);
}

.product-modal .product-visual-copy p {
  display: none;
}

.product-modal .product-visual-copy strong {
  margin-top: 0;
}

.product-modal .product-badge {
  display: none;
}

.catalog-toolbar,
.cart-summary,
.admin-form,
.admin-inventory {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.82);
  box-shadow: var(--shadow);
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  margin-bottom: 1.6rem;
}

.search-field,
.filter-group,
.variant-picker,
.quantity-picker,
.selected-total {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.search-field span,
.filter-group span {
  font-weight: 700;
  color: var(--muted);
}

.search-field input,
.option-select,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(239, 239, 239, 0.96);
  padding: 0.9rem 1rem;
  color: var(--text);
}

.search-field input {
  min-width: min(360px, 100%);
}

.option-select {
  min-width: 0;
  max-width: 100%;
}

.field-hint {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.86);
  color: var(--muted);
  padding: 0.65rem 1rem;
}

.filter-pill.is-active {
  background: var(--accent);
  color: var(--black);
}

.empty-state {
  padding: 2rem;
  border-radius: 24px;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  background: rgba(239, 239, 239, 0.72);
  color: var(--muted);
  text-align: center;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 340px);
  gap: 1rem;
  align-items: start;
}

.cart-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.84);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  min-height: 110px;
}

.cart-item .product-visual {
  width: 90px;
  height: 90px;
  min-height: 0;
  border-radius: 12px;
  object-fit: cover;
  background-position: center;
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-top h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.cart-remove {
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  padding: 0.25rem 0.35rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.16s ease;
}

.cart-remove:hover,
.cart-remove:focus {
  background: rgba(255, 255, 255, 0.35);
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.quantity-control button {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.9);
  color: var(--text);
}

.cart-summary {
  position: sticky;
  top: 104px;
  padding: 1.4rem;
}

.cart-summary h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.summary-row.total {
  font-size: 1.08rem;
  color: var(--accent);
}

.summary-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-section {
  padding: 0 0 4.8rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}

.checkout-card,
.checkout-summary-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(239, 239, 239, 0.84);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.checkout-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(234, 217, 180, 0.92);
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 700;
}

.status-pill.is-paid {
  background: rgba(16, 201, 160, 0.92);
  color: var(--black);
}

.upi-qr-card {
  display: grid;
  place-items: center;
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(239, 239, 239, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.upi-qr-image {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
}

.payment-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.payment-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.payment-detail span {
  color: var(--muted);
}

.checkout-actions-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.checkout-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-summary-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  margin-bottom: 1rem;
}

.checkout-summary-list {
  display: grid;
  gap: 0.9rem;
}

.checkout-summary-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.checkout-summary-item span {
  color: var(--muted);
}

.checkout-totals {
  margin-top: 1rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 1.3rem;
}

.admin-content {
  display: grid;
  gap: 1.3rem;
}

.admin-form,
.admin-inventory {
  padding: 1.4rem;
}

.admin-form h2,
.inventory-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
}

.admin-form {
  display: grid;
  gap: 0.95rem;
}

.admin-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.image-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.image-preview-grid-single {
  min-height: 4rem;
}

.image-preview-thumb,
.image-placeholder {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.82);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.image-preview-thumb-circle,
.image-placeholder-circle {
  border-radius: 999px;
}

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

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

.inventory-list {
  display: grid;
  gap: 0.9rem;
}

.review-admin-list {
  display: grid;
  gap: 0.9rem;
}

.inventory-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(239, 239, 239, 0.84);
}

.inventory-card .product-visual {
  min-height: 135px;
  border-radius: 16px;
}

.inventory-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.inventory-card p,
.inventory-card span {
  color: var(--muted);
}

.review-admin-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(239, 239, 239, 0.84);
}

.review-admin-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.review-admin-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.review-admin-card p {
  color: var(--muted);
}

.reviewer-photo-small {
  width: 3rem;
  height: 3rem;
  font-size: 0.88rem;
  border-width: 3px;
}

.inventory-options {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.5;
}

.inventory-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.inventory-actions button,
.review-admin-top button {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: min(360px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--beige);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .product-purchase {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.9fr);
  }

  .selected-total {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .cart-layout,
  .admin-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-summary {
    position: static;
  }
}

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

  .nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.55rem 0.85rem;
    min-height: 3.25rem;
    padding: 0.8rem 0 0.9rem;
  }

  .brand {
    display: flex;
    width: 2.6rem;
    height: 2.6rem;
    position: static;
    transform: none;
    z-index: auto;
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    justify-self: start;
    overflow: visible;
  }

  .brand img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .brand-wordmark {
    display: block;
    position: absolute;
    top: 2.1rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    box-shadow: none;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .menu-toggle::before {
    content: "";
    width: 1rem;
    height: 1.8px;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 -0.32rem 0 rgba(0, 0, 0, 0.72), 0 0.32rem 0 rgba(0, 0, 0, 0.72);
  }

  .search-link {
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .cart-link {
    margin-left: 0;
    grid-column: 5;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-left: 0;
    padding-top: 0.35rem;
  }

  .main-nav.is-open {
    display: grid;
  }

  .hero-media {
    height: 580px;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-copy p {
    color: var(--gray);
  }

  .section-heading,
  .inventory-header,
  .cart-item-top,
  .cart-controls,
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-purchase {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .selected-total {
    grid-column: auto;
  }

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

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
  }

  .cart-item .product-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .cart-item-body {
    width: 100%;
  }

  .cart-controls {
    width: 100%;
    justify-content: space-between;
  }

  .search-field input {
    min-width: 0;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(239, 239, 239, 0.84);
    text-align: center;
  }

  .product-footer .button,
  .contact-actions .button {
    width: 100%;
  }

  body[data-page="products"] .catalog-toolbar {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  body[data-page="products"] .catalog-toolbar-main {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
    flex-wrap: nowrap;
  }

  body[data-page="products"] .catalog-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  body[data-page="products"] .filter-group[data-category-panel] {
    display: none;
    width: 100%;
    grid-column: 1;
    grid-row: auto;
  }

  body[data-page="products"] .filter-group[data-category-panel].is-open {
    display: flex;
  }

  body[data-page="products"] .filter-pills {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  body[data-page="products"] .filter-pill {
    width: auto;
    justify-content: flex-start;
    text-align: left;
    padding: 0.15rem 0;
  }

  body[data-page="products"] .search-field-inline {
    width: auto;
  }

  body[data-page="products"] .search-field-inline input {
    min-width: 0;
    width: min(150px, 38vw);
    max-width: min(150px, 38vw);
  }

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

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

  .compact-product-grid .product-card .product-visual {
    min-height: 190px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-shell {
    padding: 2rem 1.5rem 1.3rem;
  }

  .footer-column,
  .footer-column-brand,
  .footer-column-contact,
  .footer-grid > .footer-column:first-child {
    max-width: none;
    justify-self: stretch;
  }

  .product-modal {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .product-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 0.75rem);
  }

  .product-modal .product-footer .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 15px;
  }

  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .brand {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-wordmark {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    top: 1.88rem;
  }

  .search-link {
    width: 1.2rem;
    height: 1.2rem;
  }

  .menu-toggle {
    width: 1.2rem;
    height: 1.2rem;
  }

  .cart-link {
    width: 2.65rem;
    height: 2.55rem;
  }

  .hero-section {
    padding-bottom: 0;
  }

  .hero-media {
    height: 520px;
  }

  .hero-copy {
    padding: 1.6rem 0 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-copy,
  .contact-shell,
  .footer-shell,
  .catalog-toolbar,
  .cart-summary,
  .checkout-card,
  .checkout-summary-card,
  .admin-form,
  .admin-inventory {
    padding: 1.1rem;
  }

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

  .product-card {
    border-radius: 22px;
  }

  .product-visual {
    min-height: 240px;
  }

  .cart-items {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.45rem;
  }

  .cart-item {
    padding: 0.4rem;
    border-radius: 10px;
  }

  .cart-item-top h3 {
    font-size: 0.95rem;
  }

  .cart-item .product-visual {
    min-height: 140px;
    aspect-ratio: 1 / 1;
  }

  .cart-controls {
    gap: 0.35rem;
  }

  .quantity-control {
    gap: 0.3rem;
  }

  .quantity-control button {
    width: 1.7rem;
    height: 1.7rem;
  }

  .cart-remove {
    padding: 0.2rem 0.3rem;
  }

  .variant-picker .option-select {
    min-height: 3.1rem;
    font-size: 0.78rem;
    padding-right: 2rem;
  }

  .checkout-status-row,
  .payment-detail,
  .cart-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .review-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .footer-heading {
    font-size: 1.45rem;
  }

  .footer-copy {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .footer-contact-row {
    font-size: 0.98rem;
  }
}
