:root {
  --saffron: #F5C24D;
  --deep: #3E4979;
  --cream: #F4F5FB;
  --gold: #FFD36A;
  --rust: #C85E42;
  --sage: #5264A4;
  --muted: #5B648B;
  --light-green: #CFE8C6;
  --light-blue: #CFE6FF;
  --light-grey: #E5E7EB;
  --dark-grey: #4B5563;
  --light-brown: #D8C1A5;
  --dark-brown: #5C4033;
  --white: #ffffff;
  --bg: #EEF1FB;
  --surface: #FFFFFF;
  --surface-soft: #E5E9F8;
  --line: #D6DCEE;
  --line-strong: #BCC6E2;
  --overlay: rgba(62, 73, 121, 0.36);
  --hero-a: rgba(82, 100, 164, 0.22);
  --hero-b: rgba(245, 194, 77, 0.25);
  --shadow: 0 10px 30px rgba(62, 73, 121, 0.1);
}

:root[data-theme="vismaad-indigo"] {
  --saffron: #F5C24D;
  --deep: #151A33;
  --cream: #F4F5FB;
  --gold: #FFD36A;
  --rust: #C85E42;
  --sage: #5264A4;
  --muted: #5B648B;
  --bg: #EEF1FB;
  --surface: #FFFFFF;
  --surface-soft: #E5E9F8;
  --line: #D6DCEE;
  --line-strong: #BCC6E2;
  --overlay: rgba(21, 26, 51, 0.36);
  --hero-a: rgba(82, 100, 164, 0.22);
  --hero-b: rgba(245, 194, 77, 0.25);
  --shadow: 0 10px 30px rgba(21, 26, 51, 0.1);
}

:root[data-theme="heritage-warm"] {
  --saffron: #F4842A;
  --deep: #1A0A00;
  --cream: #FDF6EC;
  --gold: #D4A853;
  --rust: #C0441F;
  --sage: #4A6741;
  --muted: #8B7355;
  --bg: #FDF6EC;
  --surface: #FFFFFF;
  --surface-soft: #FFF9F2;
  --line: #EFE1D0;
  --line-strong: #E9DBC8;
  --overlay: rgba(26, 10, 0, 0.25);
  --hero-a: rgba(244, 132, 42, 0.2);
  --hero-b: rgba(212, 168, 83, 0.25);
  --shadow: 0 10px 30px rgba(26, 10, 0, 0.08);
}

:root[data-theme="vaisakhi-vibrance"] {
  --saffron: #F9A825;
  --deep: #1B5E20;
  --cream: #FFFDF3;
  --gold: #FBC02D;
  --rust: #D84315;
  --sage: #2E7D32;
  --muted: #6D4C41;
  --bg: #FFF8E1;
  --surface: #FFFFFF;
  --surface-soft: #FFF3CD;
  --line: #F1D99A;
  --line-strong: #E9C46A;
  --overlay: rgba(27, 94, 32, 0.3);
  --hero-a: rgba(249, 168, 37, 0.24);
  --hero-b: rgba(46, 125, 50, 0.18);
  --shadow: 0 10px 30px rgba(109, 76, 65, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--deep);
  font-family: "DM Sans", sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.top-banner {
  background: var(--saffron);
  color: var(--deep);
  font-weight: 700;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  background: var(--deep);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 30px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  border: 0;
  background: transparent;
  display: block;
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  color: var(--saffron);
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.app-share-install-btn {
  border: 1px solid rgba(255, 211, 106, 0.75);
  background: rgba(255, 211, 106, 0.12);
  color: var(--cream);
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-share-install-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-share-install-btn:hover {
  background: rgba(255, 211, 106, 0.2);
  color: #fff;
}

.nav-category-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.nav-category-links a {
  color: rgba(244, 245, 251, 0.84);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.nav-category-links a:hover {
  color: var(--saffron);
}

.nav-category-links .nav-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 106, 0.86);
  background: linear-gradient(140deg, #ffd86f 0%, #f5c24d 100%);
  color: #1a2147;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(245, 194, 77, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.nav-category-links .nav-highlight-link:hover {
  color: #101638;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(245, 194, 77, 0.36);
  filter: saturate(1.05);
}

.nav-more-menu {
  position: relative;
}

.nav-more-menu summary {
  list-style: none;
  cursor: pointer;
  color: rgba(244, 245, 251, 0.84);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.nav-more-menu summary::-webkit-details-marker {
  display: none;
}

.nav-more-menu[open] summary {
  color: var(--saffron);
}

.nav-more-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 22, 47, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 2px;
  z-index: 30;
}

.nav-more-list a {
  padding: 7px 10px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 13px;
  line-height: 1.2;
}

@media (max-width: 1380px) {
  .nav-category-links {
    gap: 10px;
  }

  .nav-category-links .nav-highlight-link {
    padding: 7px 9px;
    font-size: 11px;
  }

  .nav-category-links a,
  .nav-more-menu summary {
    font-size: 11px;
  }
}

.nav-more-list a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-group-menu .nav-more-list {
  min-width: 210px;
  max-height: min(62vh, 420px);
  overflow-y: auto;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
}

.cart-pill {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--saffron);
  color: var(--deep);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bag-icon { vertical-align: middle; flex-shrink: 0; }
#cartCount:empty { display: none; }

.cart-pill.is-active {
  animation: bagPulse 0.62s ease;
}

.cart-pill.is-catching {
  position: relative;
  z-index: 2147483647;
}

.cart-pill.has-items {
  background: var(--gold, #FFD36A);
  color: var(--deep, #151A33);
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.35);
}

#cartCount.is-updated {
  animation: bagCountPop 0.62s ease;
}

.fly-to-bag {
  position: fixed;
  z-index: 2147483647;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
  transition: left 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
              top 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
              width 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
              height 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.55s ease,
              border-radius 0.55s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Testimonials */
.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink, #222);
  margin: 0 0 12px;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--muted, #8B7355);
  font-weight: 500;
}

.testimonial-product {
  font-size: 0.95em;
  color: var(--saffron, #F4842A);
}

.hero {
  display: grid;
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.eyebrow {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-primary,
.btn-deep,
button {
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  border: 0;
  padding: 12px 18px;
  background: var(--saffron);
  color: var(--deep);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  padding: 11px 16px;
  background: #f8f9ff;
  color: var(--deep);
}

.btn-primary:hover {
  background: var(--gold);
}

.btn-secondary:hover {
  background: #eef1ff;
}

.btn-deep {
  border: 0;
  padding: 12px 18px;
  background: var(--deep);
  color: var(--cream);
  transition: opacity 0.2s;
}

.btn-deep:disabled,
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.hero-photo-grid {
  gap: 4px;
  border-radius: 10px;
  overflow: hidden;
}

.hero-photo-tile {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  background: linear-gradient(90deg, #f3f3f3 25%, #ecebeb 37%, #f3f3f3 63%);
  background-size: 400% 100%;
  animation: shimmer 1.2s linear infinite;
}

.hero-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hero-photo-tile img[src] {
  animation: none;
}

.hero-photo-tile:hover img {
  transform: scale(1.05);
}

.hero-photo-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(245, 194, 77, 0.94);
  color: var(--deep);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.trust-bar {
  border-top: none;
  border-bottom: none;
  background: var(--deep);
}

.trust-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  color: var(--cream);
}

.products-section {
  padding-top: 24px;
  padding-bottom: 44px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.section-head-collection h2 {
  margin-bottom: 0;
}

.product-search-wrap {
  flex-shrink: 0;
}

.product-search-wrap-nav {
  display: inline-flex;
  align-items: center;
}

.product-search-input {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  background: var(--surface);
  color: #1a1a1a;
  width: 180px;
  outline: none;
  transition: border-color 0.2s, width 0.2s;
  box-sizing: border-box;
}

.product-search-input:focus {
  border-color: var(--saffron);
  width: 220px;
}

.product-search-input::placeholder {
  color: var(--muted);
}

.nav-actions .product-search-input {
  width: 160px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a1a1a;
}

.nav-actions .product-search-input:focus {
  width: 220px;
}

#searchToggleBtn,
#mobileMenuBtn,
.mobile-menu-dropdown {
  display: none;
}

.product-search-wrap.product-search-wrap-nav .product-search-input {
  width: 160px !important;
  padding: 8px 14px !important;
  border: 1px solid var(--line-strong) !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  margin: 0 auto;
  color: var(--ink);
}

.no-results-message p:first-child {
  font-size: 16px;
  margin-bottom: 8px;
}

.no-results-message p:nth-child(2) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.search-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.search-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 73, 121, 0.5);
  backdrop-filter: blur(4px);
}

.search-modal-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.search-modal-header {
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
}

.search-modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal-input {
  width: 100%;
  border: 2px solid var(--saffron);
  border-radius: 8px;
  padding: 12px 40px 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--deep);
  outline: none;
}

.search-modal-input::-webkit-search-cancel-button {
  display: none;
}

.search-modal-input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(245, 194, 77, 0.1);
}

.search-modal-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.search-modal-clear:hover {
  color: var(--deep);
}

.search-modal-results {
  overflow-y: auto;
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-soft);
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid var(--line);
}

.search-result-item:hover {
  background: var(--line);
}

.search-result-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

.search-result-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  line-height: 1.2;
}

.search-result-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
}

.search-modal-footer {
  padding: 12px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.search-modal-show-all {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s;
}

.search-modal-show-all:hover {
  color: var(--deep);
}

.category-chip {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1;
}

.category-chip.active {
  background: #1a0a00;
  color: var(--cream);
  border-color: #1a0a00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(210, 168, 83, 0.35);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(21, 26, 51, 0.12);
}

.search-filter-tail-card {
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-filter-tail-card:hover {
  transform: translateY(-2px);
}

.search-filter-tail-top {
  background: #ffffff;
  padding: 18px 14px 14px;
  border-bottom: 1px solid rgba(210, 168, 83, 0.35);
}

.search-filter-tail-bottom {
  background: var(--deep);
  color: var(--cream);
  padding: 14px 14px 18px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-filter-tail-top p,
.search-filter-tail-bottom p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--deep);
}

.search-filter-tail-title {
  font-size: 18px;
  line-height: 1.35;
}

.search-filter-tail-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 10px 0 8px;
}

.search-filter-tail-btn {
  width: min(520px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 14px;
  background: #f8f9ff;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.search-filter-tail-btn:hover {
  background: #eef1ff;
}

.search-filter-tail-btn-primary {
  background: #eef1ff;
  border-color: #9eabda;
}

.search-filter-tail-help {
  margin-top: 0;
  margin-bottom: 4px;
  color: rgba(245, 240, 218, 0.9) !important;
  font-size: 15px !important;
  line-height: 1.5;
}

.search-filter-tail-whatsapp {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
}

.product-image-wrap[data-category-bg="t-shirts"],
.product-image-wrap[data-category-bg="tshirt"] {
  background: #ffffff;
}

.product-image-wrap[data-category-bg="tote-bags"],
.product-image-wrap[data-category-bg="tote"] {
  background: #ffffff;
}

.product-image-wrap[data-category-bg="stickers"],
.product-image-wrap[data-category-bg="sticker"] {
  background: #ffffff;
}

.product-image-wrap[data-category-bg="notebooks"],
.product-image-wrap[data-category-bg="notebook"] {
  background: #ffffff;
}

.product-image-wrap[data-category-bg="gifts"],
.product-image-wrap[data-category-bg="gift"] {
  background: #ffffff;
}

.product-image-wrap[data-category-bg="kidswear"] {
  background: #ffffff;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.8s ease;
  display: block;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  background: rgba(21, 26, 51, 0.9);
  color: var(--cream);
  border-radius: 999px;
  padding: 6px 10px;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 16px;
  background: var(--deep);
  color: var(--cream);
}

.product-content .meta {
  color: rgba(245, 240, 218, 0.72);
}

.product-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  min-height: calc(1.18em * 2);
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.meta {
  color: var(--muted);
  font-size: 12px;
}

.product-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  min-height: 2.8em;
}

.product-tag {
  text-transform: uppercase;
  color: var(--saffron);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.product-price-row {
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 10px;
}

.product-actions-row {
  display: flex;
  justify-content: flex-start;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stock-pill {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--surface-soft);
}

.stock-pill.low {
  background: rgba(192, 68, 31, 0.14);
  color: var(--rust);
}

.product-swatch-row {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: #ddd;
}

.badge-new {
  background: rgba(74, 103, 65, 0.15);
  color: var(--sage);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  margin-left: 6px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: none;
  background: var(--overlay);
  z-index: 35;
}

.cart-drawer.show {
  display: block;
}

.cart-drawer-inner {
  margin-left: auto;
  width: min(400px, 100%);
  height: 100%;
  background: var(--surface);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer-header {
  padding: 14px 18px;
  background: var(--deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header button {
  background: transparent;
  color: var(--cream);
  border: 0;
  font-size: 24px;
}

.cart-items-scroll {
  overflow: auto;
  padding: 14px;
}

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

.cart-item-thumb {
  width: 62px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: block;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-main strong {
  display: block;
  line-height: 1.25;
}

.cart-item-side {
  text-align: right;
  min-width: 72px;
}

.cart-item-side .line-total {
  display: inline-block;
  margin: 0;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.qty-row button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 0;
}

.qty-controls span {
  min-width: 32px;
  text-align: center;
}

.qty-row [data-remove] {
  width: auto;
  padding: 0 10px;
}

.line-total {
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
}

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

.cart-trust-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.cart-empty-state {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
  padding: 32px 10px;
  color: var(--muted);
}

.cart-empty-state .emoji {
  font-size: 36px;
}

.empty-reco-wrap {
  width: 100%;
  margin-top: 10px;
}

.empty-reco-wrap-compact {
  margin-top: 12px;
}

.empty-reco-wrap-compact .empty-reco-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.empty-reco-wrap-compact .empty-reco-card {
  padding: 4px;
  gap: 0;
}

.empty-reco-title {
  margin: 0 0 8px;
  text-align: left;
}

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

.empty-reco-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  background: var(--surface-soft);
}

.empty-reco-image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.empty-reco-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.empty-reco-no-image {
  font-size: 28px;
}

.empty-reco-meta strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  font-size: 14px;
  text-align: left;
}

.empty-reco-meta .meta {
  margin: 3px 0 0;
  text-align: left;
}

.empty-reco-add {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: var(--saffron);
  color: var(--deep);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.empty-reco-wrap-compact .empty-reco-add {
  width: 20px;
  height: 20px;
  top: 6px;
  right: 6px;
  font-size: 15px;
}

.empty-reco-wrap-compact .empty-reco-title {
  margin-bottom: 6px;
}

.empty-reco-wrap-compact .empty-reco-image {
  border-radius: 6px;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.discount-row input {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 10px;
}

.discount-row button {
  border: 0;
  background: var(--saffron);
  padding: 10px 12px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
}

.product-dialog {
  border: 0;
  border-radius: 16px;
  max-width: 980px;
  width: calc(100% - 28px);
  max-height: 90vh;
  max-height: 90dvh;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}

.product-dialog::backdrop {
  background: rgba(7, 9, 20, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.confirm-dialog {
  border: 0;
  border-radius: 12px;
  width: min(460px, calc(100% - 24px));
  padding: 0;
  overflow: hidden;
}

.confirm-dialog::backdrop {
  background: rgba(7, 9, 20, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.confirm-dialog-card {
  margin: 0;
  padding: 18px;
  background: var(--surface);
}

.confirm-dialog-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.confirm-dialog-message {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.45;
}

.confirm-dialog-input-wrap {
  display: block;
  margin-bottom: 12px;
}

.confirm-dialog-input-wrap[hidden] {
  display: none;
}

.confirm-dialog-input-wrap strong {
  letter-spacing: 0.06em;
}

.confirm-dialog-actions {
  justify-content: flex-end;
}

.confirm-dialog-confirm.is-danger {
  background: var(--rust);
  color: #fff;
}

.confirm-dialog-confirm.is-danger:hover {
  background: #b64f36;
}

.product-modal {
  position: relative;
  background: #f5f1e7;
  padding: 0;
}

.product-modal-grid {
  display: grid;
  gap: 0;
}

.product-modal-media {
  background: #e8e2d4;
}

.product-modal-info {
  padding: 26px;
}

.product-modal img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 4/5;
  object-fit: cover;
  transform: scale(1);
  display: block;
  animation: modalImageFade 0.28s ease;
}

@keyframes modalImageFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

.product-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(21, 26, 51, 0.92);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}

.product-modal-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal-title-row h2 {
  flex: 1;
  min-width: 0;
}

.product-share-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
  padding: 0;
  line-height: 1;
}

.product-share-btn svg {
  display: block;
  vertical-align: middle;
  margin-top: 1px;
}

.product-share-btn:hover {
  color: var(--deep);
  border-color: var(--deep);
}

.product-modal-price {
  margin: 8px 0 8px;
  font-size: 42px;
}

.product-modal-desc {
  line-height: 1.65;
  max-width: 45ch;
}

.product-modal-actions {
  margin-top: 8px;
}

.product-option-group {
  margin: 10px 0 14px;
}

.product-option-label-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 8px;
}

.product-option-label-row strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-option-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: #ddd;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.2);
  cursor: pointer;
}

.color-option.selected {
  border-color: #1a0a00;
  outline: 2px solid #f18832;
  outline-offset: 1px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option {
  min-width: 42px;
  border: 1px solid var(--line-strong);
  background: #f3f4f5;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 15px;
}

.size-option.selected {
  background: #1a0a00;
  color: #fff;
  border-color: #1a0a00;
}

.size-option:disabled {
  opacity: 0.45;
}

.size-option.disabled {
  opacity: 0.6;
  color: #7b819a;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.stock-alert-form {
  margin-top: 10px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.stock-alert-form input {
  width: 100%;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #efefef;
  font-size: 22px;
  line-height: 1;
}

.quantity-stepper span {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
}

.modal-add-btn:disabled {
  opacity: 0.55;
}

.variant-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  background: var(--surface-soft);
}

.variant-rows .grid-4 {
  margin-top: 0;
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 6px 0 10px;
}

.preset-chips .meta {
  margin: 0;
  font-size: 12px;
}

.preset-chips button {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
}

.preset-chips button:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

.app-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.app-notice.show {
  opacity: 1;
}

.app-notice-card {
  min-width: 220px;
  max-width: min(92vw, 520px);
  border-radius: 999px;
  padding: 11px 18px;
  text-align: center;
  background: rgba(21, 26, 51, 0.95);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(21, 26, 51, 0.3);
  transform: translateY(14px) scale(0.95);
  transition: transform 0.24s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.app-notice.show .app-notice-card {
  transform: translateY(0) scale(1);
}

.app-notice-card.success {
  background: rgba(21, 26, 51, 0.95);
  border-color: rgba(245, 194, 77, 0.5);
}

.app-notice-card p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@keyframes bagPulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bagCountPop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.34);
  }
  100% {
    transform: scale(1);
  }
}

.site-footer {
  background: var(--deep);
  color: var(--cream);
  padding: 40px 0 28px;
}

.text-rust {
  color: var(--rust);
  font-weight: 700;
}

.page-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 600;
  font-size: 22px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.footer-tagline {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.footer-support {
  margin: 16px 0 0;
  color: var(--cream);
  opacity: 0.85;
  font-size: 13px;
}

.footer-support a {
  color: var(--gold);
  text-decoration: none;
}

.footer-support a:hover {
  text-decoration: underline;
}

.footer-share-install-btn {
  margin: 16px 0 0;
  border: 1px solid rgba(255, 211, 106, 0.8);
  background: rgba(255, 211, 106, 0.14);
  color: var(--cream);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.footer-share-install-btn:hover {
  background: rgba(255, 211, 106, 0.26);
  color: #fff;
  transform: translateY(-1px);
}

.footer-app-benefits {
  margin: 10px 0 0;
  color: var(--cream);
  opacity: 0.82;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(244, 245, 251, 0.18);
  border: none;
  margin: 20px auto;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  color: var(--cream);
  opacity: 0.7;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s, color 0.15s;
}

.footer-legal a + a::before {
  content: "·";
  color: rgba(244, 245, 251, 0.35);
  margin: 0 10px;
  font-weight: 700;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-copy {
  margin: 14px 0 0;
  font-size: 11px;
  opacity: 0.45;
  letter-spacing: 0.02em;
}

.footer-logo {
  height: 62px;
  width: auto;
  display: block;
  opacity: 0.96;
}

.policy-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}

.policy-toc a {
  color: var(--deep);
  opacity: 0.8;
  text-decoration: none;
  font-weight: 600;
}

.policy-toc a + a::before {
  content: "|";
  color: var(--line-strong);
  margin: 0 10px;
}

.policy-toc a.is-active {
  color: var(--rust);
  opacity: 1;
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 20px;
  }

  .nav-category-links {
    display: none;
  }

  .nav-actions .product-search-input {
    width: 132px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-actions .product-search-input:focus {
    width: 160px;
  }

  .app-share-install-btn {
    display: none;
  }

  #searchToggleBtn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(244, 245, 251, 0.84);
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
  }

  #mobileMenuBtn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(244, 245, 251, 0.84);
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    transition: transform 0.2s ease;
  }

  .mobile-menu-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 45;
  }

  .mobile-menu-dropdown a {
    color: rgba(244, 245, 251, 0.84);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-menu-dropdown a.nav-highlight-link {
    margin-top: 8px;
    padding: 11px 12px;
    border-radius: 10px;
    border-bottom: 0;
    border: 1px solid rgba(255, 211, 106, 0.9);
    background: linear-gradient(140deg, #ffd86f 0%, #f5c24d 100%);
    color: #151a33;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .mobile-menu-dropdown a.nav-highlight-link + a.nav-highlight-link {
    margin-top: 2px;
  }

  .mobile-menu-app-action {
    margin-top: 8px;
    width: 100%;
    border: 1px solid rgba(255, 211, 106, 0.9);
    background: rgba(255, 211, 106, 0.16);
    color: #fff;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .mobile-menu-app-action:hover {
    background: rgba(255, 211, 106, 0.24);
  }

  .mobile-menu-dropdown a.nav-highlight-link:hover {
    color: #0f1534;
    background: linear-gradient(140deg, #ffe090 0%, #f7ca61 100%);
  }

  .mobile-menu-dropdown a:hover {
    color: var(--saffron);
  }

  .mobile-menu-dropdown a.mobile-menu-parent-link {
    border-bottom: 0;
    font-weight: 700;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 4px;
  }

  .mobile-menu-dropdown a.mobile-menu-sub-link {
    padding: 6px 0 6px 14px;
    margin-left: 6px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    color: rgba(244, 245, 251, 0.78);
  }

  .product-search-wrap.product-search-wrap-nav .product-search-input {
    display: none;
  }

  .nav-inner.search-active .brand-name,
  .nav-inner.search-active #searchToggleBtn {
    display: none !important;
  }

  .product-search-wrap.product-search-wrap-nav.search-active .product-search-input {
    display: block;
    width: 150px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.96);
    transition: width 0.2s ease;
  }

  .container {
    padding: 0 14px;
  }

  .top-banner {
    font-size: 12px;
    padding: 8px 10px;
  }

  .product-dialog {
    width: calc(100% - 8px);
    border-radius: 10px;
    max-height: 96vh;
    max-height: 96dvh;
  }

  .product-modal img {
    aspect-ratio: 1/1;
  }

  .product-modal-info {
    padding: 14px;
  }

  .product-modal-price {
    font-size: 24px;
    margin: 2px 0 4px;
  }

  .product-modal-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .product-option-group {
    margin: 4px 0 8px;
  }

  .product-option-label-row {
    margin-bottom: 4px;
  }
}

.pwa-status {
  position: fixed;
  left: 12px;
  bottom: 12px;
  margin: 0;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
  color: var(--muted);
  padding: 5px 10px;
  z-index: 50;
}

body.cart-open #backToTopBtn {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px);
}

body.mobile-menu-open #backToTopBtn,
body.mobile-menu-open .whatsapp-fab {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(0.96);
}

body.mobile-menu-open,
body.search-modal-open {
  overflow: hidden;
}

.admin-shell {
  padding-top: 18px;
  padding-bottom: 28px;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
}

/* Admin tabs */
.admin-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 8px;
  overflow: hidden;
}
.admin-tab {
  padding: 9px 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
  text-align: center;
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
.admin-tab:hover { color: var(--fg); }
.admin-tab.active {
  color: var(--accent);
  border-color: rgba(62, 73, 121, 0.35);
  background: rgba(62, 73, 121, 0.08);
}
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: grid; gap: 12px; min-width: 0; }

/* Product tiles */
.admin-product-group { margin-bottom: 8px; }
.admin-group-heading {
  font-size: 15px;
  margin: 12px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.admin-product-tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 108px;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.admin-product-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.admin-product-tile-info { flex: 1; min-width: 0; }

.admin-product-tile-info strong {
  overflow-wrap: anywhere;
}

.admin-product-tile.is-expanded {
  border-color: var(--line-strong, #bcc6e2);
  box-shadow: inset 0 0 0 1px rgba(62, 73, 121, 0.12);
}

.admin-product-tile .admin-product-actions {
  display: none;
}

.admin-product-tile.is-expanded .admin-product-actions {
  display: flex;
}

.admin-product-thumb.is-inactive {
  opacity: 0.2;
}

body[data-page="admin"] #adminProducts {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

body[data-page="admin"] #adminProducts .admin-item {
  height: 100%;
}

body[data-page="admin"] #adminProducts .inline-actions {
  margin-top: 8px;
}

#adminProductSearch {
  margin-bottom: 12px;
}

.discount-applied {
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.card {
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 14px;
}

label {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 10px;
  margin-top: 4px;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
}

textarea {
  min-height: 86px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 10px;
}

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

.admin-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
  overflow-wrap: anywhere;
}

.admin-order-detail {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.admin-order-shipping {
  margin: 10px 0;
  padding: 10px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.admin-order-shipping-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.admin-order-shipping-header h4 {
  margin: 0;
}

.admin-order-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-order-shipping-lines {
  display: grid;
  gap: 2px;
}

.hero-slide-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.success-hero,
.success-offer,
.success-newsletter {
  margin-bottom: 16px;
}

.success-offer {
  background: linear-gradient(145deg, rgba(245, 194, 77, 0.2), rgba(82, 100, 164, 0.12));
}

.offer-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.offer-code-row code {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.success-reco-grid {
  display: grid;
  gap: 14px;
}

.success-reco-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: var(--surface-soft);
  display: grid;
  gap: 8px;
}

.success-reco-card h3 {
  font-size: 22px;
}

.success-reco-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  display: block;
}

.success-reco-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-interstitial {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 38, 0.7);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 70;
}

.checkout-interstitial-card {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
}

.checkout-interstitial-grid {
  margin-top: 12px;
}

.checkout-interstitial-actions {
  margin-top: 12px;
  justify-content: flex-end;
}

.success-newsletter-form {
  display: grid;
  gap: 10px;
}

.success-instagram {
  margin-bottom: 10px;
  border: 2px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(244, 132, 42, 0.16), rgba(68, 102, 199, 0.14));
  padding: 12px 14px;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.success-social-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  margin-bottom: 4px;
}

.success-social-icon {
  width: 22px;
  height: 22px;
}

.success-feedback {
  margin-bottom: 16px;
}

.btn-added {
  border: 0;
  border-radius: 10px;
  background: #1f9d55;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  cursor: default;
}

.btn-added:disabled {
  opacity: 1;
}

.btn-choose-options {
  width: 100%;
  border-radius: 10px;
  border-color: rgba(21, 26, 51, 0.24);
  background: linear-gradient(180deg, #f8faff 0%, #edf2ff 100%);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.inline-actions button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 6px 10px;
}

.admin-icon-btn {
  width: 34px;
  height: 34px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-icon-btn:disabled {
  opacity: 0.5;
}

.admin-icon-btn.admin-feedback-gmail-used {
  border-color: rgba(46, 125, 50, 0.5);
  background: rgba(207, 232, 198, 0.55);
  color: var(--deep);
}

.admin-icon-btn.admin-feedback-gmail-used:hover {
  background: rgba(207, 232, 198, 0.75);
}

.admin-funnel-tile {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
}

.admin-funnel-tile:hover {
  border-color: var(--sage, #5264a4);
  box-shadow: inset 0 0 0 1px rgba(62, 73, 121, 0.12);
}

.admin-funnel-tile-static {
  cursor: default;
}

.admin-funnel-delta {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
}

.admin-funnel-subhead {
  margin: 14px 0 8px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 600;
}

.admin-funnel-detail {
  margin-top: 10px;
}

.admin-funnel-detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
}

.admin-funnel-top-list {
  margin: 8px 0 0;
  padding-left: 20px;
}

.admin-funnel-top-count {
  font-weight: 700;
  margin-right: 6px;
}

body[data-page="admin"] #adminContent:not([hidden]) {
  min-width: 0;
  display: grid;
  gap: 12px;
}

body[data-page="admin"] .admin-section h2,
body[data-page="admin"] .admin-section h3 {
  margin-bottom: 8px;
  line-height: 1.2;
}

body[data-page="admin"] .admin-section .inline-actions + :is(form, .admin-list, #dashboardStats, #dashboardFunnel, #dashboardSystemHealth, #lowStockList, #orderDetail) {
  margin-top: 2px;
}

body[data-page="admin"] #dashboardStats,
body[data-page="admin"] #dashboardFunnel {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

body[data-page="admin"] :is(.admin-section, .card, .admin-list, .admin-item, form, #dashboardStats, #dashboardFunnel, #dashboardSystemHealth, #lowStockList, #orderDetail) {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 980px) {
  body[data-page="admin"] #dashboardStats,
  body[data-page="admin"] #dashboardFunnel {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="admin"] #dashboardStats,
  body[data-page="admin"] #dashboardFunnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="admin"] #adminProducts {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding-top: 44px;
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

  .success-newsletter-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (max-width: 900px) {
  .admin-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .qty-row {
    align-items: center;
    flex-wrap: wrap;
  }

  .line-total {
    width: 100%;
    text-align: right;
    margin-left: 0;
  }

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

  .admin-tab {
    font-size: 13px;
    padding: 8px 6px;
  }

  .card {
    padding: 12px;
  }

  body[data-page="admin"] #dashboardStats,
  body[data-page="admin"] #dashboardFunnel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .product-modal-media {
    background: #ffffff;
    padding: 10px;
  }

  .product-image-wrap img {
    object-fit: contain;
    padding: 8px;
    transform: none;
  }

  .product-card:hover .product-image-wrap img {
    transform: none;
  }

  .product-content h3 {
    font-size: 20px;
  }

  .product-dialog {
    max-height: 94vh;
    max-height: 94dvh;
    width: calc(100% - 16px);
    border-radius: 12px;
    margin: auto;
  }

  .product-modal img {
    aspect-ratio: 4/3;
    object-fit: contain;
    background: #ffffff;
    border-radius: 8px;
  }

  .product-modal-info {
    padding: 16px;
  }

  .product-modal-price {
    font-size: 28px;
    margin: 4px 0 6px;
  }

  .product-modal-desc {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-option-group {
    margin: 6px 0 10px;
  }

  .hero-photo-tile {
    min-height: 130px;
  }

  /* -- Hero tighter on mobile -- */
  .hero {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 14px;
  }

  .hero-copy h1 {
    margin-bottom: 6px;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .hero-photo-grid {
    gap: 3px;
    border-radius: 8px;
  }

  .hero-photo-badge {
    font-size: 9px;
    padding: 3px 6px;
    left: 6px;
    bottom: 6px;
  }

  /* -- Trust bar compact -- */
  .trust-list {
    gap: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  /* -- Section divider tighter -- */
  .section-divider-motif {
    margin-top: 28px !important;
    margin-bottom: 20px !important;
  }

  /* -- Testimonial compact -- */
  .testimonial-carousel {
    margin-bottom: 20px !important;
  }

  .testimonial-carousel h2 {
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
  }

  /* -- Products -- */
  .products-section {
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-content {
    padding: 10px 12px 14px;
  }

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

  .category-chips {
    gap: 6px;
    margin-bottom: 14px;
  }

  .category-chip {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* -- Newsletter tighter -- */
  .newsletter-bar {
    padding: 28px 16px 22px !important;
  }

  /* -- Footer tighter -- */
  .site-footer {
    padding: 28px 0 20px;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .footer-support {
    font-size: 12px;
    margin-top: 12px;
  }

  .footer-divider {
    margin: 14px auto;
  }

  .footer-copy {
    margin-top: 10px;
  }
}

/* --- Collections --- */
.collections-showcase {
  margin: 32px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.collection-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface, #fff);
  border: 1px solid var(--line, #e0e0e0);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.collection-card-hero {
  aspect-ratio: 16 / 9;
  background: var(--surface-soft, #f5f5f5);
}

.collection-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

.collection-card-body {
  padding: 14px 16px;
}

.collection-card-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-family: "Playfair Display", serif;
}

.collection-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted, #666);
}

/* Collection detail overlay */
.collection-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}

.collection-detail {
  background: var(--surface, #fff);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  padding: 32px 24px;
  position: relative;
}

.collection-detail-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--deep, #333);
  line-height: 1;
}

.collection-detail-hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.collection-detail h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 8px;
}

.collection-detail-desc {
  color: var(--muted, #666);
  margin: 0 0 20px;
}

.collection-products {
  gap: 16px;
}

/* Admin collection product picker */
.collection-picker-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.collection-picker-toolbar input[type="search"] {
  flex: 1;
  min-width: 220px;
}

.collection-picker-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.collection-product-picker {
  display: block;
  margin-top: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding: 0;
  border: 1px solid var(--line, #e0e0e0);
  border-radius: 8px;
  background: #fff;
}

.picker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1.35;
  border-bottom: 1px solid var(--line, #eceff7);
}

.picker-item:hover {
  background: rgba(62, 73, 121, 0.06);
}

.picker-item:last-child {
  border-bottom: 0;
}

.picker-item-text {
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  width: 100%;
}

.picker-item-title {
  color: var(--deep, #2e3a75);
  font-weight: 600;
  overflow-wrap: anywhere;
  flex: 1;
}

.picker-item-meta {
  color: var(--muted, #6b7496);
  font-size: 11px;
  margin-top: 0;
  text-transform: lowercase;
  letter-spacing: 0.01em;
}

.picker-item input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong, #b7bfdc);
  border-radius: 3px;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  background: #fff;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .collection-picker-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-picker-toolbar input[type="search"] {
    min-width: 0;
  }

  .collection-picker-toolbar-actions {
    justify-content: space-between;
  }

  .collection-product-picker {
    max-height: 240px;
  }

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

  .collection-overlay {
    padding: 20px 10px;
  }

  .collection-detail {
    padding: 20px 14px;
  }
}

/* --- No-image emoji placeholder --- */
.product-no-image-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 64px;
  opacity: 0.7;
  user-select: none;
}

/* --- New products toast --- */
.new-products-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 3000;
  background: var(--deep, #2E3A75);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-products-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* --- Websites promo section --- */
.websites-promo {
  background: linear-gradient(135deg, #f8f6f1 0%, #fff9ef 100%);
  padding: 56px 0 48px;
  text-align: center;
}

.websites-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.websites-promo-badge {
  font-size: 48px;
  line-height: 1;
}

.websites-promo h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--deep, #2E3A75);
  margin: 0;
}

.websites-promo p {
  max-width: 520px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.websites-promo-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 8px 0;
}

.websites-client-tag {
  background: var(--deep, #2E3A75);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.websites-promo-cta {
  margin-top: 8px;
  text-decoration: none;
}

/* --- WhatsApp support bar --- */
.whatsapp-support-bar {
  background: #e8f5e9;
  padding: 20px 0;
}

.whatsapp-support-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-icon-wrap {
  flex-shrink: 0;
}

.whatsapp-support-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-support-text strong {
  font-size: 15px;
  color: #1b5e20;
}

.whatsapp-support-text span {
  font-size: 13px;
  color: #388e3c;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

/* --- Floating WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* --- PWA install button --- */
.pwa-install-btn {
  background: var(--saffron, #F4842A);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin: 8px 0;
}

.pwa-install-btn:hover {
  background: #e07520;
}

/* --- Stalls page --- */
.stalls-page {
  padding-top: 0;
}

.stalls-hero {
  background: var(--deep, #2E3A75);
  color: var(--cream, #fff);
  padding: 80px 0 56px;
  text-align: center;
}

.stalls-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 0 0 12px;
}

.stalls-subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}

.stalls-showcase {
  margin: 18px auto 10px;
}

.stalls-showcase img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(21, 26, 51, 0.12);
}

.stalls-pitch {
  padding: 56px 0;
  text-align: center;
}

.stalls-pitch h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--deep, #2E3A75);
  margin: 0 0 16px;
}

.stalls-pitch > p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.stalls-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stalls-feature-card {
  background: #f8f6f1;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.stalls-feature-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.stalls-feature-card strong {
  display: block;
  font-size: 15px;
  color: var(--deep, #2E3A75);
  margin-bottom: 6px;
}

.stalls-feature-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.stalls-cta-section {
  background: var(--deep, #2E3A75);
  color: var(--cream, #fff);
  padding: 56px 0;
  text-align: center;
}

.stalls-cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.stalls-cta-section > div > p {
  max-width: 520px;
  margin: 0 auto 8px;
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.6;
}

.stalls-cta-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.stalls-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stalls-book-btn {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-outline-cream {
  display: inline-block;
  color: var(--cream, #fff);
  border: 2px solid rgba(244, 245, 251, 0.4);
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-cream:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 245, 251, 0.7);
}

.stalls-what-we-bring {
  padding: 48px 0;
  text-align: center;
}

.stalls-what-we-bring h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--deep, #2E3A75);
  margin: 0 0 24px;
}

.stalls-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.stalls-product-tags span {
  background: #f4f3ef;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep, #2E3A75);
}

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
