:root {
  --bg: #f6fff2;
  --bg-soft: #ebf8e5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-bright: #16351d;
  --primary: #7ddc72;
  --primary-strong: #4ab84c;
  --primary-deep: #257530;
  --accent: #ffb24c;
  --accent-soft: rgba(255, 178, 76, 0.2);
  --text: #17321d;
  --muted: #5e7b63;
  --shadow: 0 24px 70px rgba(58, 118, 57, 0.14);
  --border: rgba(27, 71, 37, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(125, 220, 114, 0.42), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 178, 76, 0.18), transparent 20%),
    linear-gradient(180deg, #fbfff8 0%, #f2faee 45%, #edf8e8 100%);
}

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

button,
input {
  font: inherit;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -8rem;
  left: -8rem;
  background: rgba(125, 220, 114, 0.32);
}

.page-glow-right {
  top: 10rem;
  right: -10rem;
  background: rgba(255, 178, 76, 0.22);
}

.hero-shell,
.section,
.footer,
.speed-strip {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero-shell {
  padding: 1.25rem 0 2.5rem;
}

.topbar,
.hero,
.hero-actions,
.hero-stats,
.nav-links,
.category-toolbar,
.category-grid,
.highlight-grid,
.feature-stack,
.input-row,
.footer,
.footer-meta,
.offer-banner,
.savings-panel {
  display: flex;
}

.topbar {
  position: relative;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1rem 1.3rem;
  border: 1px solid rgba(74, 184, 76, 0.16);
  border-radius: 1.7rem;
  background:
    linear-gradient(125deg, rgba(125, 220, 114, 0.16), rgba(255, 255, 255, 0.94) 34%, rgba(255, 248, 236, 0.92) 100%);
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 52px rgba(74, 184, 76, 0.14),
    0 12px 28px rgba(58, 118, 57, 0.08);
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(125, 220, 114, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 178, 76, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 55%);
  pointer-events: none;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #a3ef87 0%, #4ab84c 45%, #1f6a2b 100%);
  color: #0f2414;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 26px rgba(74, 184, 76, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--surface-bright);
}

.brand-copy span {
  max-width: 20rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.brand-copy span,
.nav-links a,
.hero-text,
.hero-stats span,
.category-card p,
.card-meta,
.feature-slab p,
.stack-card p,
.savings-text,
.savings-result,
.footer p,
.footer-meta span,
.hero-panel p,
.hero-product p {
  color: var(--muted);
}

.nav-links {
  gap: 0.5rem;
  margin-left: auto;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: 0.45rem;
  border: 1px solid rgba(27, 71, 37, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 252, 240, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(58, 118, 57, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cart-button:hover,
.cart-button.is-active {
  border-color: rgba(74, 184, 76, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(223, 246, 214, 0.96));
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 28px rgba(74, 184, 76, 0.16);
}

.cart-button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary-deep);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -0.22rem;
  right: -0.12rem;
  min-width: 1.28rem;
  height: 1.28rem;
  padding: 0 0.24rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffca6c, #ff9a2f);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.04rem;
  text-align: center;
  box-shadow: 0 8px 16px rgba(255, 154, 47, 0.24);
}

.nav-links a {
  position: relative;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  color: rgba(23, 50, 29, 0.78);
  background: transparent;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, letter-spacing 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 0.5rem;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent), #ff8b2d);
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0.9;
}

.nav-links a:hover {
  background: rgba(125, 220, 114, 0.16);
  color: var(--primary-deep);
  letter-spacing: 0.01em;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 24px rgba(74, 184, 76, 0.1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--primary-deep);
  background:
    linear-gradient(180deg, rgba(125, 220, 114, 0.26), rgba(125, 220, 114, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 12px 26px rgba(74, 184, 76, 0.14);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.hero {
  align-items: stretch;
  gap: 1.5rem;
  padding: 2rem 0 0;
}

.page-shell {
  padding-bottom: 1rem;
}

.page-hero {
  max-width: 54rem;
  padding: 3rem 0 1rem;
}

.page-hero h1 {
  max-width: 12ch;
}

.hero > * {
  flex: 1;
}

.hero-copy,
.hero-visual,
.category-card,
.feature-slab,
.stack-card,
.offer-banner,
.savings-panel,
.footer {
  border: 1px solid var(--border);
}

.hero-copy {
  padding: 2rem 0.2rem 2rem 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(74, 184, 76, 0.08);
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions,
.hero-stats,
.category-toolbar,
.category-grid,
.highlight-grid,
.feature-stack,
.footer-meta {
  gap: 1rem;
}

.hero-actions,
.hero-stats {
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #0f2414;
  box-shadow: 0 16px 35px rgba(74, 184, 76, 0.22);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.58);
}

.hero-stats article {
  min-width: 10rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.6);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--surface-bright);
  font-size: 1.45rem;
}

.hero-visual {
  position: relative;
  min-height: 37rem;
  padding: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(125, 220, 114, 0.5), transparent 48%),
    linear-gradient(160deg, #dff5d8 0%, #c7ebbe 72%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 10%, rgba(255, 255, 255, 0.22) 10.5%, transparent 11.2%),
    linear-gradient(125deg, transparent 22%, rgba(255, 255, 255, 0.2) 22.5%, transparent 23.2%),
    linear-gradient(125deg, transparent 34%, rgba(255, 255, 255, 0.18) 34.5%, transparent 35.2%);
  opacity: 0.9;
}

.hero-gridline {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(22, 53, 29, 0.08);
  border-radius: 1.5rem;
}

.hero-panel,
.hero-product {
  position: absolute;
  border: 1px solid rgba(27, 71, 37, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel-main {
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 1.7rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
}

.panel-kicker,
.mini-label,
.card-tag,
.stack-number,
.product-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-main h2 {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.hero-panel-main p {
  max-width: 26rem;
  margin-top: 0.9rem;
  line-height: 1.75;
}

.hero-panel-aside {
  top: 1.6rem;
  right: 1.6rem;
  width: 12rem;
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
}

.hero-panel-aside strong {
  display: block;
  margin: 0.55rem 0 0.2rem;
  font-size: 2rem;
  color: var(--surface-bright);
}

.hero-product {
  left: 1.6rem;
  width: 15rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.66);
}

.hero-product-top {
  top: 2.3rem;
}

.hero-product-bottom {
  top: 10.4rem;
}

.hero-product h3 {
  margin-top: 0.85rem;
  font-size: 1.2rem;
}

.hero-product p {
  margin: 0.55rem 0 0;
  line-height: 1.6;
}

.speed-strip {
  overflow: hidden;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(27, 71, 37, 0.08);
  border-bottom: 1px solid rgba(27, 71, 37, 0.08);
}

.strip-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  color: var(--primary-deep);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  animation: ticker 18s linear infinite;
}

.strip-track span::before {
  content: "/";
  margin-right: 2rem;
  color: var(--accent);
}

.section {
  padding: 2.5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.feature-slab h2,
.offer-banner h2,
.savings-copy h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.04em;
}

.category-grid,
.highlight-grid {
  flex-wrap: wrap;
}

.product-grid,
.info-grid,
.contact-layout {
  display: grid;
  gap: 1rem;
}

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

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

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

.category-card,
.feature-slab,
.stack-card,
.info-card,
.contact-card,
.offer-banner,
.savings-panel,
.footer {
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.category-card {
  flex: 1 1 240px;
  padding: 1.5rem;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.product-card,
.info-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.product-card:hover,
.info-card:hover,
.contact-card:hover,
.stack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 209, 95, 0.35);
}

.category-featured {
  background:
    linear-gradient(145deg, rgba(125, 220, 114, 0.26), transparent 55%),
    rgba(255, 255, 255, 0.88);
}

.filter-chip {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary-deep);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--primary);
  color: #0f2414;
}

.card-tag {
  background: rgba(125, 220, 114, 0.18);
  color: var(--primary);
}

.category-card h3,
.stack-card h3,
.info-card h3,
.contact-card h3 {
  margin-top: 1rem;
  font-size: 1.55rem;
}

.category-card p,
.feature-slab p,
.stack-card p,
.info-card p,
.contact-card p,
.offer-banner p,
.savings-text,
.savings-result {
  line-height: 1.75;
}

.card-meta {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.88rem;
}

.category-card.is-hidden {
  display: none;
}

.highlight-grid {
  align-items: stretch;
}

.feature-slab {
  flex: 1.2;
  padding: 1.8rem;
  background:
    linear-gradient(135deg, rgba(255, 178, 76, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.82);
}

.feature-stack {
  flex: 1;
  flex-direction: column;
}

.stack-card {
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.stack-number {
  background: rgba(74, 184, 76, 0.1);
  color: var(--primary-deep);
}

.offer-banner,
.savings-panel {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem;
  background:
    linear-gradient(135deg, rgba(125, 220, 114, 0.18), rgba(255, 178, 76, 0.12)),
    rgba(255, 255, 255, 0.84);
}

.savings-copy {
  max-width: 34rem;
}

.savings-form {
  flex-direction: column;
  width: min(100%, 25rem);
}

.input-label {
  margin-bottom: 0.55rem;
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.input-row {
  gap: 0.75rem;
}

.input-row input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.input-row input:focus {
  outline: 2px solid rgba(74, 184, 76, 0.18);
  border-color: rgba(74, 184, 76, 0.35);
}

.footer {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.footer h2 {
  font-size: 1.65rem;
}


.shop-page {
  background:
    radial-gradient(circle at top left, rgba(125, 220, 114, 0.28), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(255, 178, 76, 0.24), transparent 18%),
    linear-gradient(180deg, #f9fff6 0%, #f3f9ed 42%, #ebf5e3 100%);
}

.shop-main {
  position: relative;
  z-index: 1;
}

.shop-showcase {
  padding-top: 0.5rem;
}

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

.shop-sidebar,
.shop-hero-panel,
.shop-toolbar-panel,
.shop-products-panel {
  border: 1px solid var(--border);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.shop-sidebar {
  position: sticky;
  top: 1.2rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 251, 239, 0.96)),
    rgba(255, 255, 255, 0.84);
}

.shop-sidebar-head h2 {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.shop-category-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.shop-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.shop-category-link::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(23, 50, 29, 0.06);
  color: var(--primary-deep);
  font-weight: 800;
}

.shop-category-link:hover,
.shop-category-link.is-active {
  border-color: rgba(74, 184, 76, 0.16);
  background: rgba(125, 220, 114, 0.16);
  color: var(--primary-deep);
  transform: translateX(4px);
}

.shop-category-link.is-active::after {
  background: var(--accent);
  color: #fff;
}

.shop-content {
  display: grid;
  gap: 1.25rem;
}

.shop-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 178, 76, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(125, 220, 114, 0.12), rgba(255, 255, 255, 0.92) 42%, rgba(255, 248, 235, 0.96));
}

.shop-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 1.6rem 1.4rem;
}

.shop-hero-copy h1 {
  max-width: 9ch;
  margin-top: 0.95rem;
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -0.06em;
}

.shop-hero-copy .hero-text {
  max-width: 34rem;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.7rem;
}

.shop-hero-badge {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(74, 184, 76, 0.16);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
}

.shop-hero-badge strong {
  display: block;
  color: var(--surface-bright);
  font-size: 1.3rem;
}

.shop-hero-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-hero-visual {
  position: relative;
  min-height: 26rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(160deg, #fff7e7 0%, #ffe7c3 58%, #f3dfba 100%);
  overflow: hidden;
}

.shop-hero-orb {
  position: absolute;
  right: 1.75rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 220, 114, 0.24), rgba(125, 220, 114, 0));
  filter: blur(8px);
}

.shop-hero-image {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: min(92%, 31rem);
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.shop-floating-card {
  position: absolute;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(27, 71, 37, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 32px rgba(58, 118, 57, 0.12);
  backdrop-filter: blur(12px);
}

.shop-floating-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--surface-bright);
  font-size: 1.1rem;
}

.shop-floating-card p,
.shop-results-copy {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.shop-floating-offer {
  top: 1.4rem;
  right: 1.4rem;
}

.shop-floating-delivery {
  left: 1.4rem;
  bottom: 1.4rem;
}

.shop-toolbar-panel,
.shop-products-panel {
  padding: 1.35rem;
}

.shop-heading-compact {
  max-width: 40rem;
  margin-bottom: 1.1rem;
}

.shop-heading-compact h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.shop-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.shop-results-copy {
  margin: 0;
  font-weight: 700;
}

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

.shop-product-card {
  padding: 0.85rem;
  overflow: hidden;
}

.shop-product-media {
  min-height: 15rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -40px 80px rgba(9, 34, 14, 0.08);
}

.media-vegetables {
  background-image:
    linear-gradient(180deg, rgba(245, 255, 242, 0.12), rgba(245, 255, 242, 0.12)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=900&q=80");
}

.media-groceries {
  background-image:
    linear-gradient(180deg, rgba(245, 255, 242, 0.1), rgba(245, 255, 242, 0.1)),
    url("https://images.unsplash.com/photo-1506617564039-2f3b650b7010?auto=format&fit=crop&w=900&q=80");
}

.media-tea {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=80");
}

.media-sweets {
  background-image:
    linear-gradient(180deg, rgba(255, 245, 239, 0.08), rgba(255, 245, 239, 0.08)),
    url("https://images.unsplash.com/photo-1603532648955-039310d9ed75?auto=format&fit=crop&w=900&q=80");
}

.media-dryfruits {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08)),
    url("https://images.unsplash.com/photo-1599599810694-b5b37304c041?auto=format&fit=crop&w=900&q=80");
}

.media-juice {
  background-image:
    linear-gradient(180deg, rgba(255, 244, 230, 0.08), rgba(255, 244, 230, 0.08)),
    url("https://images.unsplash.com/photo-1621506289937-a8e4df240d0b?auto=format&fit=crop&w=900&q=80");
}

.media-gift {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08)),
    url("https://images.unsplash.com/photo-1512909006721-3d6018887383?auto=format&fit=crop&w=900&q=80");
}

.media-care {
  background-image:
    linear-gradient(180deg, rgba(245, 255, 242, 0.08), rgba(245, 255, 242, 0.08)),
    url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=900&q=80");
}

.media-cap {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08)),
    url("https://images.unsplash.com/photo-1521369909029-2afed882baee?auto=format&fit=crop&w=900&q=80");
}

.media-jewelry {
  background-image:
    linear-gradient(180deg, rgba(255, 244, 230, 0.08), rgba(255, 244, 230, 0.08)),
    url("https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=900&q=80");
}

.media-books {
  background-image:
    linear-gradient(180deg, rgba(245, 255, 242, 0.08), rgba(245, 255, 242, 0.08)),
    url("https://images.unsplash.com/photo-1512820790803-83ca734da794?auto=format&fit=crop&w=900&q=80");
}

.media-fruits {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08)),
    url("https://images.unsplash.com/photo-1619566636858-adf3ef46400b?auto=format&fit=crop&w=900&q=80");
}

.shop-product-body {
  padding: 1rem 0.15rem 0.2rem;
}

.shop-product-headline,
.shop-product-submeta,
.shop-notice-bar {
  display: flex;
}

.shop-product-headline {
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shop-product-body h3 {
  font-size: 1.35rem;
}

.shop-product-submeta {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-stock-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shop-stock-note-alert {
  color: #b15d31;
}

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

.shop-price-stack {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.shop-compare-price {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: line-through;
}

.shop-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(125, 220, 114, 0.14);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

.shop-status-pill.is-alert {
  background: rgba(255, 178, 76, 0.18);
  color: #b15d31;
}

.shop-status-pill.is-muted {
  background: rgba(22, 53, 29, 0.08);
  color: var(--muted);
}

.shop-notice-bar {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.shop-empty-state {
  padding: 1.5rem;
  border: 1px dashed rgba(74, 184, 76, 0.24);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.shop-empty-state h3 {
  font-size: 1.5rem;
}

.shop-empty-state p {
  color: var(--muted);
}

.shop-product-card.is-out-of-stock {
  opacity: 0.9;
}

.shop-product-card.is-out-of-stock .shop-product-media {
  filter: grayscale(0.2);
}

.shop-quantity-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.4rem;
  border: 1px solid rgba(74, 184, 76, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(125, 220, 114, 0.16);
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.qty-button:hover {
  background: rgba(125, 220, 114, 0.28);
  transform: scale(1.04);
}

.qty-value {
  min-width: 1.4rem;
  text-align: center;
  color: var(--surface-bright);
  font-weight: 800;
}

.shop-product-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.shop-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 178, 76, 0.24);
  border-radius: 999px;
  background: rgba(255, 178, 76, 0.16);
  color: #8a4f00;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.shop-buy-button:hover {
  background: rgba(255, 178, 76, 0.28);
  border-color: rgba(255, 178, 76, 0.4);
  transform: translateY(-2px);
}

.shop-product-meta .card-meta {
  margin-top: 0;
  color: var(--surface-bright);
  font-size: 1rem;
  font-weight: 800;
}

.shop-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  min-height: 2.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(74, 184, 76, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.shop-add-button:hover {
  background: rgba(125, 220, 114, 0.18);
  border-color: rgba(74, 184, 76, 0.34);
  transform: translateY(-2px);
}

.cart-page {
  background:
    radial-gradient(circle at top left, rgba(125, 220, 114, 0.22), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255, 178, 76, 0.18), transparent 18%),
    linear-gradient(180deg, #fbfff8 0%, #f2f9eb 46%, #edf5e6 100%);
}

.cart-main {
  position: relative;
  z-index: 1;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 1.25rem;
  align-items: start;
}

.cart-items-panel,
.cart-summary-panel {
  border: 1px solid var(--border);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.cart-items-panel {
  padding: 1.35rem;
}

.cart-summary-panel {
  position: sticky;
  top: 1.2rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 253, 243, 0.98)),
    rgba(255, 255, 255, 0.88);
}

.cart-heading {
  margin-bottom: 1rem;
}

.cart-items-list {
  display: grid;
  gap: 1rem;
}

.cart-item-card,
.cart-empty-state {
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 32px rgba(58, 118, 57, 0.08);
}

.cart-item-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem;
}

.cart-item-media {
  min-height: 10.5rem;
  border-radius: 1.2rem;
  background-size: cover;
  background-position: center;
}

.cart-item-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-copy h3 {
  margin-top: 0.8rem;
  font-size: 1.45rem;
}

.cart-item-copy p,
.cart-payment-note,
.cart-empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.cart-availability-note {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
}

.cart-availability-alert {
  color: #b15d31;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}

.cart-item-price {
  color: var(--surface-bright);
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.cart-remove-button {
  border: 0;
  background: transparent;
  color: #b15d31;
  font-weight: 700;
  cursor: pointer;
}

.cart-item-card.is-unavailable {
  border-color: rgba(255, 178, 76, 0.28);
  background: rgba(255, 248, 239, 0.84);
}

.cart-empty-state {
  padding: 1.5rem;
}

.cart-empty-state h3 {
  font-size: 1.6rem;
}

.cart-summary-rows {
  display: grid;
  gap: 0.8rem;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(27, 71, 37, 0.08);
}

.cart-summary-total {
  margin-top: 0.35rem;
  padding-top: 1.15rem;
}

.cart-summary-total span,
.cart-summary-total strong {
  color: var(--surface-bright);
  font-size: 1.08rem;
}

.cart-checkout-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.cart-checkout-form input,
.cart-checkout-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
}

.cart-checkout-form input:focus,
.cart-checkout-form select:focus {
  outline: 2px solid rgba(74, 184, 76, 0.18);
  border-color: rgba(74, 184, 76, 0.35);
}

.cart-pay-button {
  width: 100%;
  margin-top: 0.4rem;
}

.cart-pay-button:disabled,
.shop-add-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.cart-payment-note {
  margin: 0.2rem 0 0;
  font-size: 0.94rem;
}

.is-hidden {
  display: none !important;
}

.admin-page {
  background:
    radial-gradient(circle at top left, rgba(125, 220, 114, 0.18), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(255, 178, 76, 0.18), transparent 18%),
    linear-gradient(180deg, #fcfff9 0%, #f2f9eb 46%, #ecf5e5 100%);
}

.admin-main {
  position: relative;
  z-index: 1;
}

.admin-dashboard {
  padding-top: 0.5rem;
}

.admin-layout,
.admin-stats-grid,
.admin-toggle-grid,
.admin-form-actions,
.admin-toolbar-head,
.admin-toolbar-actions,
.admin-product-head,
.admin-product-state,
.admin-product-meta,
.admin-product-price-row,
.admin-product-actions,
.admin-two-col {
  display: flex;
}

.admin-layout {
  align-items: start;
  gap: 1.25rem;
}

.admin-form-panel,
.admin-toolbar-panel,
.admin-products-panel,
.admin-stat-card {
  border: 1px solid var(--border);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.admin-form-panel {
  position: sticky;
  top: 1.2rem;
  flex: 0 0 min(100%, 27rem);
  padding: 1.35rem;
}

.admin-content {
  display: grid;
  flex: 1;
  gap: 1.25rem;
}

.admin-heading-compact {
  max-width: 36rem;
  margin-bottom: 1rem;
}

.admin-heading-compact h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

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

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
}

.admin-product-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.admin-product-form input:focus,
.admin-product-form select:focus,
.admin-product-form textarea:focus {
  outline: 2px solid rgba(74, 184, 76, 0.18);
  border-color: rgba(74, 184, 76, 0.35);
}

.admin-two-col {
  gap: 0.8rem;
}

.admin-two-col > * {
  flex: 1;
}

.admin-toggle-grid {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.admin-toggle input {
  width: auto;
  margin: 0;
}

.admin-form-actions {
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.admin-form-note,
.admin-toolbar-note,
.admin-product-copy p,
.admin-stat-card p {
  color: var(--muted);
}

.admin-stats-grid {
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-stat-card {
  flex: 1 1 180px;
  padding: 1.25rem;
}

.admin-stat-card strong {
  display: block;
  margin-top: 0.9rem;
  color: var(--surface-bright);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.admin-toolbar-panel,
.admin-products-panel {
  padding: 1.35rem;
}

.admin-toolbar-head,
.admin-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.admin-products-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}


.admin-product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.74);
}

.admin-product-media {
  min-height: 12rem;
  border-radius: 1.15rem;
  background-size: cover;
  background-position: center;
}

.admin-product-copy h3 {
  margin-top: 0.7rem;
  font-size: 1.4rem;
}

.admin-product-head {
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-product-state,
.admin-product-meta,
.admin-product-price-row,
.admin-product-actions {
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

.admin-product-price-row {
  align-items: center;
  margin-top: 0.9rem;
}

.admin-product-price-row strong {
  color: var(--surface-bright);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.admin-product-actions {
  margin-top: 1rem;
}

.admin-delete-button {
  color: #b15d31;
}

.home-page {
  background:
    radial-gradient(circle at top left, rgba(125, 220, 114, 0.35), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 178, 76, 0.18), transparent 20%),
    linear-gradient(180deg, #f9fff6 0%, #eef8e6 46%, #e5f1dc 100%);
}

.home-shell {
  min-height: 100vh;
  padding-bottom: 1.25rem;
}

.home-topbar {
  margin-bottom: 1.5rem;
}

.home-hero,
.story-grid,
.split-feature,
.home-spotlight,
.feature-marquee-grid {
  display: grid;
  gap: 1rem;
}

.home-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: calc(100vh - 8.5rem);
}

.hero-kicker,
.gallery-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(22, 53, 29, 0.08);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-intro,
.home-card,
.split-copy,
.split-mini,
.spotlight-lead,
.spotlight-panel,
.spotlight-mini,
.home-footer {
  border: 1px solid var(--border);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.home-hero-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(145deg, rgba(125, 220, 114, 0.2), rgba(255, 255, 255, 0.82) 48%);
}

.home-hero-intro h1 {
  max-width: 9ch;
  margin-top: 1rem;
}

.home-hero-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
}

.home-card {
  padding: 1.6rem;
}

.home-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 178, 76, 0.22), transparent 30%),
    linear-gradient(160deg, #d9f0cf 0%, #f7fff2 62%);
}

.home-card-main h2 {
  max-width: 9ch;
  margin-top: 1rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.home-card-main p {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.8;
}

.scroll-card {
  opacity: 0;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 650ms ease;
  will-change: transform, opacity;
}

.scroll-card-left {
  transform: translateX(-110px);
}

.scroll-card-right {
  transform: translateX(110px);
}

.scroll-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-card-food,
.scroll-card-lifestyle {
  position: relative;
  overflow: hidden;
  color: #f7fff8;
}

.scroll-card-food::before,
.scroll-card-lifestyle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.scroll-card-food::after,
.scroll-card-lifestyle::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scroll-card-food::before {
  background-image: url("https://images.pexels.com/photos/20120621/pexels-photo-20120621.jpeg?cs=srgb&dl=pexels-manish-meena-1391970-20120621.jpg&fm=jpg");
}

.scroll-card-food::after {
  background:
    linear-gradient(180deg, rgba(9, 34, 14, 0.2), rgba(9, 34, 14, 0.5)),
    linear-gradient(90deg, rgba(9, 34, 14, 0.82), rgba(9, 34, 14, 0.44) 48%, rgba(9, 34, 14, 0.28));
}

.scroll-card-lifestyle::before {
  background-image: url("https://commons.wikimedia.org/wiki/Special:FilePath/Himachali_person_wearing_traditional_Cap.jpg");
  background-position: center top;
}

.scroll-card-lifestyle::after {
  background:
    linear-gradient(180deg, rgba(43, 24, 6, 0.18), rgba(19, 33, 12, 0.48)),
    linear-gradient(90deg, rgba(20, 34, 12, 0.82), rgba(20, 34, 12, 0.44) 48%, rgba(20, 34, 12, 0.24));
}

.scroll-card-food > *,
.scroll-card-lifestyle > * {
  position: relative;
  z-index: 1;
}

.scroll-card-food .panel-kicker,
.scroll-card-lifestyle .panel-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #f7fff8;
}

.scroll-card-food h2,
.scroll-card-lifestyle h2 {
  color: #f7fff8;
}

.scroll-card-food p,
.scroll-card-lifestyle p {
  color: rgba(247, 255, 248, 0.9);
}

.split-mini h3,
.spotlight-panel h3,
.spotlight-mini h3 {
  margin-top: 0.85rem;
  font-size: 1.35rem;
}

.split-copy p,
.split-mini p,
.spotlight-lead p,
.spotlight-panel p,
.spotlight-mini p {
  color: var(--muted);
  line-height: 1.75;
}

.home-main {
  position: relative;
  z-index: 1;
}

.home-gallery {
  overflow: hidden;
}

.why-fresh-section {
  overflow: hidden;
}

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

.pahadi-legacy-section {
  position: relative;
}

.pahadi-legacy-section::before {
  content: "";
  position: absolute;
  inset: auto 0 -1.2rem;
  height: 72%;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(125, 220, 114, 0.42), rgba(255, 178, 76, 0.3));
  filter: blur(1px);
}

.pahadi-legacy-card {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 39rem;
  padding: 2.6rem 2.8rem;
  border: 1px solid rgba(37, 117, 48, 0.16);
  border-radius: 2rem;
  background:
    linear-gradient(90deg, rgba(9, 34, 14, 0.14), rgba(9, 34, 14, 0.28) 24%, rgba(9, 34, 14, 0.66) 54%, rgba(9, 34, 14, 0.82)),
    linear-gradient(180deg, rgba(10, 40, 16, 0.16), rgba(10, 40, 16, 0.4)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 64px rgba(58, 118, 57, 0.16);
  overflow: hidden;
}

.pahadi-legacy-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  margin-left: auto;
  color: #f7fff8;
}

.pahadi-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #f7fff8;
}

.pahadi-legacy-copy h2 {
  max-width: 9ch;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  color: #f7fff8;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.pahadi-legacy-copy p {
  max-width: 34rem;
  color: rgba(247, 255, 248, 0.9);
  line-height: 1.78;
}

.pahadi-legacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.pahadi-legacy-points span {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7fff8;
  font-size: 0.9rem;
  font-weight: 700;
}

.pahadi-legacy-btn {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #f6f0d8, #fff8ea);
  color: #103417;
}

.pahadi-legacy-btn:hover {
  background: linear-gradient(135deg, #fff8ea, #f6f0d8);
}

.auto-gallery-frame {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0;
}

.auto-gallery-frame::before,
.auto-gallery-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 7rem);
  z-index: 2;
  pointer-events: none;
}

.auto-gallery-frame::before {
  left: 0;
  background: linear-gradient(90deg, rgba(249, 255, 246, 1), rgba(249, 255, 246, 0));
}

.auto-gallery-frame::after {
  right: 0;
  background: linear-gradient(270deg, rgba(229, 241, 220, 1), rgba(229, 241, 220, 0));
}

.auto-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gallery-loop 28s linear infinite;
}

.auto-gallery-card {
  flex: 0 0 clamp(220px, 24vw, 360px);
  overflow: hidden;
  min-height: clamp(16rem, 28vw, 24rem);
  border: 1px solid var(--border);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.auto-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 1.8rem;
}

.split-feature {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-stack {
  display: grid;
  gap: 1rem;
}

.split-mini {
  padding: 1.35rem;
}

.home-spotlight {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
  align-items: stretch;
}

.spotlight-lead,
.spotlight-panel,
.spotlight-mini {
  padding: 1.5rem;
}

.spotlight-lead {
  background:
    linear-gradient(135deg, rgba(125, 220, 114, 0.18), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.82);
}

.spotlight-panel-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 178, 76, 0.24), transparent 28%),
    linear-gradient(160deg, rgba(22, 53, 29, 0.95), rgba(37, 117, 48, 0.88));
}

.spotlight-panel-feature h3,
.spotlight-panel-feature p,
.spotlight-panel-feature .text-link {
  color: #f5ffef;
}

.spotlight-panel-feature .panel-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #f5ffef;
}

.spotlight-stack {
  display: grid;
  gap: 1rem;
}

.spotlight-mini {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 250, 237, 0.92));
}

.home-footer {
  margin-bottom: 2.5rem;
  background:
    linear-gradient(135deg, rgba(125, 220, 114, 0.14), rgba(255, 178, 76, 0.12)),
    rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-deep);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes gallery-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 980px) {
  .admin-layout {
    flex-direction: column;
  }

  .admin-form-panel {
    position: static;
    width: 100%;
  }

  .admin-toolbar-head,
  .admin-products-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cart-summary-panel {
    position: static;
  }

  .shop-layout,
  .shop-hero-panel {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

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

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

  .shop-products-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero,
  .split-feature,
  .home-spotlight,
  .pahadi-legacy-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-intro {
    min-height: auto;
  }

  .why-fresh-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .offer-banner,
  .savings-panel,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .cart-button {
    margin-left: 0;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    width: 100%;
    min-height: 34rem;
  }

  .footer-meta {
    flex-wrap: wrap;
  }

  .category-toolbar,
  .highlight-grid {
    flex-wrap: wrap;
  }

  .hero-stats article,
  .feature-slab,
  .feature-stack {
    width: 100%;
  }

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

@media (max-width: 720px) {
  .shop-notice-bar,
  .admin-form-actions,
  .admin-two-col,
  .admin-product-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-product-media {
    min-height: 10rem;
  }

  .cart-item-card,
  .cart-item-body {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-controls {
    width: 100%;
    align-items: flex-start;
  }

  .shop-hero-copy,
  .shop-toolbar-panel,
  .shop-products-panel,
  .shop-sidebar {
    padding: 1.2rem;
  }

  .shop-category-list,
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-copy h1 {
    max-width: 11ch;
  }

  .shop-hero-visual {
    min-height: 21rem;
  }

  .shop-hero-image {
    right: 0.5rem;
    width: min(100%, 22rem);
  }

  .shop-floating-offer {
    top: 1rem;
    right: 1rem;
  }

  .shop-floating-delivery {
    left: 1rem;
    bottom: 1rem;
  }

  .split-feature,
  .home-spotlight {
    grid-template-columns: 1fr;
  }

  .scroll-card-left,
  .scroll-card-right {
    transform: translateY(44px);
  }

  .scroll-card.is-visible {
    transform: translateY(0);
  }

  .pahadi-legacy-card {
    padding: 1.35rem;
    min-height: auto;
    justify-content: flex-start;
  }

  .pahadi-legacy-logo {
    right: 1rem;
    width: min(54vw, 240px);
    opacity: 0.88;
  }

  .pahadi-legacy-section::before {
    inset: auto 0 -0.8rem;
    height: 84%;
  }

  .pahadi-legacy-copy h2 {
    max-width: 11ch;
  }

  .home-card-main,
  .split-copy,
  .split-mini,
  .spotlight-lead,
  .spotlight-panel,
  .spotlight-mini {
    padding: 1.25rem;
  }

  .auto-gallery-track {
    animation-duration: 22s;
  }

  .home-card-main {
    min-height: auto;
  }

  .home-card-main h2 {
    max-width: 12ch;
  }

  .hero-shell,
  .section,
  .footer,
  .speed-strip {
    width: min(100% - 1.2rem, 1600px);
  }

  .nav-links {
    gap: 0.35rem;
    padding: 0.35rem;
  }

  .nav-links a {
    flex: 1 1 140px;
    justify-content: center;
    text-align: center;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero {
    gap: 1.25rem;
  }

  .hero-actions .btn,
  .input-row .btn {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .hero-gridline {
    inset: 0.75rem;
  }

  .hero-panel,
  .hero-product {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-panel-main h2,
  .hero-panel-main p,
  .hero-text {
    max-width: none;
  }

  .hero-visual {
    padding-top: 3rem;
  }

  .product-grid,
  .info-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    min-width: calc(50% - 0.5rem);
  }

  .footer-meta {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .shop-hero-actions,
  .shop-product-meta,
  .shop-product-actions,
  .admin-toolbar-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-category-link {
    padding: 0.9rem;
  }

  .shop-product-card {
    padding: 0.75rem;
  }

  .shop-product-media {
    min-height: 13rem;
  }

  .shop-add-button {
    width: 100%;
    border-radius: 999px;
  }

  .shop-buy-button {
    width: 100%;
  }

  .admin-form-actions .btn,
  .admin-product-actions .btn,
  .admin-toolbar-actions .btn {
    width: 100%;
  }

  .home-hero-intro,
  .home-card,
  .split-copy,
  .split-mini,
  .spotlight-lead,
  .spotlight-panel,
  .spotlight-mini,
  .home-footer {
    padding: 1.15rem;
  }

  .auto-gallery-card {
    flex-basis: 78vw;
    min-height: 15rem;
  }

  .home-card-main h2 {
    font-size: 1.95rem;
  }

  .topbar,
  .hero-visual,
  .category-card,
  .feature-slab,
  .stack-card,
  .offer-banner,
  .savings-panel,
  .footer {
    padding: 1.2rem;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-copy span {
    line-height: 1.4;
  }

  .topbar {
    border-radius: 1.35rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-visual {
    padding-top: 2.75rem;
  }

  .hero-panel-main,
  .hero-panel-aside,
  .hero-product {
    padding: 1rem;
  }

  .hero-stats article,
  .nav-links a {
    flex-basis: 100%;
  }

  .category-toolbar,
  .hero-actions {
    flex-direction: column;
  }

  .filter-chip,
  .hero-actions .btn,
  .input-row .btn {
    width: 100%;
  }

  .hero-panel-main h2 {
    font-size: 1.9rem;
  }

  .input-row {
    flex-direction: column;
  }
}
