:root {
  --ink: #102018;
  --muted: #5f6f64;
  --green: #0b4b24;
  --green-2: #2f6f2c;
  --teal: #087d72;
  --cream: #f7f3e8;
  --soft: #eef4e9;
  --line: #dce6d7;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbf5 0%, #ffffff 34%, #f6faf3 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img {
  width: 190px;
  max-height: 50px;
  object-fit: contain;
  object-position: left;
}
.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--green);
  font-size: .95rem;
  font-weight: 800;
}
.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}
.nav a:hover { background: var(--soft); }

.notice, .errors {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.premium-hero {
  min-height: 650px;
  isolation: isolate;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,243,232,.96) 0%, rgba(247,243,232,.82) 38%, rgba(247,243,232,.22) 72%);
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(11,75,36,0), rgba(11,75,36,.32));
  z-index: 1;
}
.premium-hero::after {
  background:
    linear-gradient(90deg, rgba(13,37,24,.92) 0%, rgba(11,75,36,.78) 38%, rgba(247,243,232,.1) 76%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.08));
}
.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.motion-orbit {
  position: absolute;
  border: 1px solid rgba(191, 231, 200, .34);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(255,255,255,.08), 0 0 42px rgba(8,125,114,.22);
  animation: orbitPulse 6s ease-in-out infinite;
}
.orbit-one {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 16%;
}
.orbit-two {
  width: 210px;
  height: 210px;
  right: 32%;
  bottom: 10%;
  animation-delay: -2s;
}
.motion-line {
  position: absolute;
  width: 260px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(191,231,200,.72), rgba(255,255,255,0));
  opacity: .75;
  transform: rotate(-18deg);
  animation: lightSweep 7s ease-in-out infinite;
}
.line-one {
  right: 7%;
  top: 36%;
}
.line-two {
  right: 27%;
  bottom: 22%;
  width: 200px;
  animation-delay: -3s;
}
.floating-card {
  position: absolute;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 205px;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 22px 54px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  animation: floatCard 5.5s ease-in-out infinite;
}
.floating-card img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}
.floating-card b {
  font-size: .9rem;
  line-height: 1.15;
}
.float-card-one {
  right: 8%;
  top: 20%;
}
.float-card-two {
  right: 21%;
  top: 55%;
  animation-delay: -1.8s;
}
.float-card-three {
  right: 3%;
  bottom: 12%;
  animation-delay: -3.2s;
}
.hero-panel {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 92px);
}
.premium-panel {
  width: min(760px, calc(100% - 36px));
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  animation: panelRise .7s ease-out both;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 {
  color: var(--green);
  font-size: clamp(2.1rem, 5vw, 4.25rem);
}
.premium-panel h1,
.premium-panel p:not(.eyebrow) {
  color: var(--white);
}
.premium-panel .eyebrow {
  color: #bfe7c8;
}
.premium-panel .ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}
h2 {
  color: var(--green);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}
h3 { font-size: 1.05rem; }
.hero p:not(.eyebrow), .page-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
}
.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 44%, transparent 58%);
  transform: translateX(-120%);
  animation: buttonShine 4s ease-in-out infinite;
}
.ghost { background: var(--white); color: var(--green); border: 1px solid var(--line); }
.full { display: flex; width: 100%; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
}
.trust-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.22);
  font-weight: 850;
  text-align: center;
}
.trust-strip span:last-child { border-right: 0; }

.section, .page-head, .filters, .product-detail, .cart-layout, .checkout-layout, .confirmation, .table-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 56px auto;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.metric-row span {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  animation: metricGlow 4.5s ease-in-out infinite;
}
.metric-row span:nth-child(2) {
  animation-delay: -1.4s;
}
.metric-row span:nth-child(3) {
  animation-delay: -2.8s;
}
.metric-row strong {
  color: var(--white);
  font-size: 1.15rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}
.intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 46px auto 20px;
  padding: clamp(34px, 7vw, 78px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9,41,24,.94), rgba(8,125,114,.78)),
    url("../images/brand/category-showcase.webp") center / cover;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(11,75,36,.18);
}
.page-hero h1 {
  max-width: 820px;
  color: var(--white);
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
  line-height: 1.7;
}
.value-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.value-card,
.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(13, 79, 34, .07);
}
.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.contact-card {
  display: grid;
  gap: 8px;
}
.contact-card span {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-card strong {
  color: var(--green);
  line-height: 1.35;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading > a {
  color: var(--teal);
  font-weight: 850;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-ranges {
  margin-top: 24px;
}
.range-tile {
  min-height: 250px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 7px;
  padding: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(13, 79, 34, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.range-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 68px rgba(13, 79, 34, .13);
}
.range-tile img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--cream);
}
.feature-tile {
  min-height: 350px;
  padding: 18px;
}
.feature-tile img {
  height: 230px;
  border-radius: 12px;
}
.range-tile span {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 900;
}
.range-tile small {
  color: var(--muted);
  line-height: 1.35;
}

.promo-strip {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--green);
  border-radius: 8px;
}
.deal-panel {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #092918 0%, #0b4b24 58%, #087d72 100%);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(11,75,36,.2);
}
.deal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.deal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
}
.deal-copy h2,
.deal-copy p {
  color: var(--white);
}
.deal-copy p {
  margin: 0;
  line-height: 1.7;
}
.deal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.deal-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .9rem;
  font-weight: 800;
}
.deal-panel .button {
  justify-self: start;
  background: var(--white);
  color: var(--green);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(13, 79, 34, .07);
}
.process-grid strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}
.process-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.promo-strip .promo-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
}
.promo-strip h2, .promo-strip p { color: var(--white); }
.promo-strip .eyebrow { color: #b8e2c0; }
.promo-strip p {
  margin: 0;
  line-height: 1.6;
}
.promo-strip img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}
.promo-strip .button {
  justify-self: start;
  background: var(--white);
  color: var(--green);
}
.artwork-band {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.elevated-artwork {
  box-shadow: 0 24px 70px rgba(13, 79, 34, .1);
}
.artwork-band img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(13, 79, 34, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 68px rgba(13, 79, 34, .12);
}
.product-media {
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.product-media picture,
.detail-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-media img.fit-cover { object-fit: cover; }
.product-media img.fit-contain { object-fit: contain; }
.product-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}
.category {
  margin: 0;
  color: var(--teal);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-body h3 {
  min-height: 2.3em;
}
.product-body p {
  margin: 0;
  color: var(--muted);
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.icon-button {
  width: 40px;
  min-height: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  background: var(--teal);
  color: var(--white);
  font-size: 1.25rem;
}
.category-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-band a {
  padding: 12px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-weight: 850;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 240px auto;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  font: inherit;
}
.pagination {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 34px;
  align-items: start;
}
.detail-media {
  display: grid;
  gap: 12px;
  padding: 12px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-media img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}
.detail-media img.fit-cover { object-fit: cover; }
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
}
.gallery-thumb {
  aspect-ratio: 1 / 1;
  min-height: auto;
  padding: 6px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-thumb.active {
  border-color: #087d72;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-copy { display: grid; gap: 18px; }
.detail-copy p { color: var(--muted); line-height: 1.65; }
.product-description-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(145deg, #fff, #f7fbf2);
  border: 1px solid #d7e5cf;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(13, 79, 34, .06);
}
.description-kicker {
  width: max-content;
  padding: 6px 10px;
  color: #00654a;
  background: #e7f4ea;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.description-text {
  display: grid;
  gap: 10px;
}
.description-text p {
  margin: 0;
  color: #53685d;
  line-height: 1.72;
}
.description-feature-block {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #d7e5cf;
}
.description-feature-block strong {
  color: #0b4b24;
  font-size: 1rem;
}
.description-feature-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.description-feature-block li {
  position: relative;
  padding: 9px 10px 9px 30px;
  color: #13223a;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #dce8d6;
  border-radius: 10px;
  font-weight: 850;
}
.description-feature-block li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ff7a21;
  border-radius: 50%;
  transform: translateY(-50%);
}
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}
.specs div {
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.specs dt { color: var(--muted); font-size: .8rem; }
.specs dd {
  margin: 4px 0 0;
  color: var(--green);
  font-weight: 900;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 12px;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}
.buy-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}
.variation-box {
  flex-basis: 100%;
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 10px;
}
.variation-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.variation-heading strong {
  color: #111b31;
}
.variation-heading span {
  color: #66758e;
  font-size: .86rem;
}
.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.swatch-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #111b31;
  background: #fff;
  border: 1px solid #d5dfed;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
}
.swatch-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.swatch-option:has(input:checked) {
  border-color: #00654a;
  box-shadow: 0 0 0 1px #00654a;
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.swatch.black {
  background: #000;
}
.swatch.sandy {
  background: #f4a460;
}
.cart-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}
.cart-options span,
.cart-options {
  color: #00654a;
  font-size: .86rem;
  font-weight: 900;
}

.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.cart-lines { display: grid; gap: 12px; }
.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr 118px 100px auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.cart-line img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-line picture {
  display: block;
  width: 86px;
  height: 86px;
}
.cart-line h3 { font-size: 1rem; }
.cart-line p { margin: 6px 0 0; color: var(--muted); }
.link-button {
  padding: 0;
  min-height: auto;
  background: transparent;
  color: var(--teal);
  font-weight: 850;
}
.summary {
  position: sticky;
  top: 88px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(13, 79, 34, .06);
}
.summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.summary .total {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.18rem;
}
.empty-state, .confirmation {
  padding: 62px 18px;
  background: var(--soft);
  border-radius: 8px;
  text-align: center;
}

.checkout-form { display: grid; gap: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.checkout-fixed-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.checkout-fixed-options > div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-left: 5px solid var(--green);
  border-radius: 10px;
}
.checkout-fixed-options span {
  color: #66758e;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-fixed-options strong {
  color: #111b31;
}
.checkout-fixed-options small {
  color: #66758e;
}
label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 800;
}
.table-wrap {
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th {
  background: var(--soft);
  color: var(--green);
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}
.footer div { display: grid; gap: 6px; }

@media (max-width: 980px) {
  .trust-strip, .range-grid, .product-grid, .product-grid.compact, .product-detail, .cart-layout, .checkout-layout, .filters, .promo-strip, .intro-grid, .deal-panel, .process-grid, .value-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .deal-panel img { min-height: 280px; }
  .promo-strip img { max-height: 300px; }
  .hero-motion { opacity: .5; }
  .floating-card {
    width: 170px;
    grid-template-columns: 44px 1fr;
  }
  .floating-card img {
    width: 44px;
    height: 44px;
  }
  .float-card-one { right: 4%; top: 15%; }
  .float-card-two { right: 5%; top: 34%; }
  .float-card-three { display: none; }
  .summary { position: static; }
  .form-grid, .checkout-fixed-options, .specs, .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header, .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand img { width: 176px; }
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    font-size: .9rem;
  }
  .nav a { padding: 9px 8px; }
  .hero {
    min-height: 500px;
    align-items: end;
    padding-bottom: 34px;
  }
  .premium-hero { min-height: 620px; }
  .hero-motion { display: none; }
  .hero::after {
    background: linear-gradient(180deg, rgba(247,243,232,.25), rgba(247,243,232,.96) 58%);
  }
  .hero-panel {
    margin: 0 auto;
  }
  .premium-panel {
    padding: 20px;
    border-radius: 14px;
  }
  h1 { font-size: 2.15rem; }
  .metric-row { grid-template-columns: 1fr; }
  .hero-actions, .buy-box {
    align-items: stretch;
    flex-direction: column;
  }
  .cart-line {
    grid-template-columns: 76px 1fr;
  }
  .cart-line img {
    width: 76px;
    height: 76px;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-16px, -8px, 0); }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(.96) rotate(0deg); opacity: .42; }
  50% { transform: scale(1.08) rotate(8deg); opacity: .85; }
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-45px) rotate(-18deg); opacity: .15; }
  45%, 60% { transform: translateX(55px) rotate(-18deg); opacity: .9; }
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes metricGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(191,231,200,0); border-color: rgba(255,255,255,.2); }
  50% { box-shadow: 0 0 26px rgba(191,231,200,.22); border-color: rgba(191,231,200,.48); }
}

@keyframes buttonShine {
  0%, 62% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes panelRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bannerGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.9); opacity: .46; }
  50% { transform: translate3d(18px, -14px, 0) scale(1.08); opacity: .86; }
}

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

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(191, 231, 90, .8); }
  70% { box-shadow: 0 0 0 12px rgba(191, 231, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(191, 231, 90, 0); }
}

@keyframes productFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(1.5deg); }
}

@keyframes benefitFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -12px, 0); }
}

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

@keyframes dealImageFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.5deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(.8deg); }
}

@keyframes dealOrbit {
  0%, 100% { transform: scale(.96) rotate(0deg); opacity: .45; }
  50% { transform: scale(1.08) rotate(10deg); opacity: .86; }
}

@keyframes dealFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -12px, 0); }
}

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

/* SaaSpire-inspired storefront refresh */
body {
  background: #f7f8fc;
  color: #111b31;
}

.site-header,
.footer {
  display: none;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border-bottom: 1px solid rgba(11, 75, 36, .14);
  box-shadow: 0 16px 42px rgba(17, 27, 49, .08);
  backdrop-filter: blur(16px);
}
.store-topbar {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 72px);
  padding: 8px 18px;
  color: #fff;
  background:
    linear-gradient(90deg, #073d23, #087d72 48%, #0b4b24);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .01em;
}
.store-topbar span {
  position: relative;
  white-space: nowrap;
}
.store-topbar .topbar-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.store-topbar a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}
.store-topbar a:hover {
  border-bottom-color: #bfe75a;
}
.store-topbar span + span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #bfe75a;
  border-radius: 50%;
  transform: translateY(-50%);
}
.store-header-main {
  display: grid;
  grid-template-columns: 230px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1460px, calc(100% - 28px));
  margin: 0 auto;
  padding: 12px 0 14px;
}
.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  min-height: 56px;
  padding: 7px 10px;
  background:
    linear-gradient(135deg, #fff, #f2fbf5);
  border: 1px solid rgba(11, 75, 36, .13);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17, 27, 49, .08);
}
.brand-mark img {
  width: 154px;
  max-height: 42px;
  object-fit: contain;
}
.brand-caption {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--green);
  background: #e7f4ea;
  border: 1px solid rgba(11,75,36,.12);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 950;
}
.store-search {
  display: grid;
  grid-template-columns: 1fr 104px;
  overflow: hidden;
  border: 1px solid rgba(11, 75, 36, .18);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 30px rgba(17, 27, 49, .06);
}
.store-search input {
  min-height: 48px;
  border: 0;
  padding: 0 22px;
  color: #111b31;
  font-size: .96rem;
}
.store-search button {
  min-height: 48px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(135deg, #0b4b24, #087d72);
  color: #fff;
  font-weight: 900;
}
.store-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  background: #f6faf4;
  border: 1px solid rgba(11, 75, 36, .1);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 900;
  white-space: nowrap;
}
.store-actions form {
  margin: 0;
}
.store-actions a,
.store-actions button {
  min-height: 38px;
  padding: 0 12px;
  color: #1b263d;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.store-actions a {
  display: inline-flex;
  align-items: center;
}
.store-actions a:hover,
.store-actions button:hover {
  color: #fff;
  background: var(--green);
}
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff !important;
  background: linear-gradient(135deg, #0b4b24, #087d72) !important;
}
.cart-pill span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0b4b24;
  background: #bfe75a;
  font-size: .72rem;
  font-weight: 950;
}
.cart-pill span.is-bumped {
  animation: cartBump .42s ease;
}
.cart-toast {
  position: fixed;
  right: 18px;
  top: 92px;
  z-index: 80;
  max-width: min(320px, calc(100vw - 28px));
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(135deg, #0b4b24, #087d72);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(17, 27, 49, .2);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}
.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.24); }
}
.store-nav {
  display: flex;
  gap: 30px;
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  padding: 11px 0;
  color: #15223a;
  font-size: .86rem;
  font-weight: 850;
}

.saas-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 690px;
  padding: 72px 0;
}
.saas-hero-copy h1 {
  max-width: 650px;
  color: #111b31;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .98;
}
.saas-hero-copy p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #66758e;
  font-size: 1.02rem;
  line-height: 1.58;
}
.soft-badge {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--green);
  background: #e6f4ec;
  font-size: .86rem;
  font-weight: 900;
}
.saas-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.saas-actions .button {
  min-width: 155px;
}
.mini-benefits {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #6d7a91;
  font-size: .86rem;
}
.mini-benefits li {
  position: relative;
  padding-left: 20px;
}
.mini-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #00654a;
  border-bottom: 3px solid #00654a;
  transform: rotate(-45deg);
}
.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  transform: rotate(-1deg);
}
.hero-collage a {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: 0 28px 74px rgba(17, 27, 49, .14);
}
.hero-collage a:nth-child(2) { transform: translateY(34px); }
.hero-collage a:nth-child(3) { transform: translateY(-8px); }
.hero-collage .collage-accent {
  background: linear-gradient(135deg, #087d72, #0b4b24);
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.animated-packaging-banner {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(11, 75, 36, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .95), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(8, 125, 114, .18), transparent 34%),
    linear-gradient(135deg, #f7f3e8 0%, #edf5e8 52%, #d7e6c7 100%);
  box-shadow: 0 34px 90px rgba(17, 27, 49, .14);
}
.animated-packaging-banner::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(11, 75, 36, .13);
  border-radius: 22px;
  pointer-events: none;
}
.banner-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .78;
  animation: bannerGlow 8s ease-in-out infinite;
}
.banner-glow-one {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 8%;
  background: rgba(8, 125, 114, .18);
}
.banner-glow-two {
  width: 280px;
  height: 280px;
  left: 8%;
  bottom: 12%;
  background: rgba(47, 111, 44, .14);
  animation-delay: -3s;
}
.banner-main-card {
  position: absolute;
  left: 36px;
  top: 34px;
  z-index: 5;
  width: min(330px, calc(100% - 72px));
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #073d23, #087d72);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(7, 61, 35, .24);
  animation: bannerLift 5.5s ease-in-out infinite;
}
.banner-main-card p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 850;
}
.banner-main-card h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}
.banner-main-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--green);
  background: #fff;
  border-radius: 8px;
  font-weight: 950;
}
.live-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #bfe75a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(191, 231, 90, .8);
  animation: livePulse 1.8s ease-out infinite;
}
.banner-product {
  position: absolute;
  z-index: 3;
  object-fit: contain;
  padding: 10px;
  background: rgba(255,255,255,.92);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(17, 27, 49, .14);
  animation: productFloat 6s ease-in-out infinite;
}
.hero-product-one {
  right: 7%;
  top: 58px;
  width: min(330px, 48%);
}
.hero-product-two {
  left: 10%;
  bottom: 96px;
  width: min(300px, 43%);
  animation-delay: -2s;
}
.hero-product-three {
  right: 12%;
  bottom: 70px;
  width: min(310px, 45%);
  animation-delay: -4s;
}
.floating-benefit {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: #0b4b24;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11, 75, 36, .13);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(17, 27, 49, .1);
  font-size: .86rem;
  font-weight: 950;
  animation: benefitFloat 5s ease-in-out infinite;
}
.benefit-one {
  right: 16%;
  top: 45%;
}
.benefit-two {
  left: 36%;
  top: 42%;
  animation-delay: -1.6s;
}
.benefit-three {
  right: 35%;
  bottom: 30%;
  animation-delay: -3.2s;
}
.product-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 2;
  overflow: hidden;
  padding: 10px 0;
  background: rgba(255,255,255,.42);
  border-top: 1px solid rgba(11,75,36,.09);
  border-bottom: 1px solid rgba(11,75,36,.09);
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: productTicker 24s linear infinite;
}
.ticker-track img {
  width: 86px;
  height: 66px;
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 27, 49, .1);
}

.saas-section {
  width: min(1260px, calc(100% - 28px));
  margin: 0 auto;
  padding: 64px 0;
}
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-title-row h2 {
  color: #111b31;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}
.section-title-row > a {
  color: #1b263d;
  font-weight: 800;
}
.saas-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.saas-category-grid a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 5px 18px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 14px;
}
.saas-category-grid span {
  grid-row: span 2;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #eaf6ee;
  border-radius: 14px;
  font-weight: 950;
}
.saas-category-grid strong {
  font-size: 1.05rem;
}
.saas-category-grid small {
  color: #6d7a91;
  line-height: 1.5;
}

.product-grid,
.saas-products.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  border-color: #d9e1ee;
  border-radius: 12px;
  box-shadow: none;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(17, 27, 49, .09);
}
.product-media {
  position: relative;
  aspect-ratio: 1.25 / .9;
  background: #fff;
}
.product-media img {
  padding: 8px;
  background: #fff;
}
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 8px;
  color: #fff;
  background: #ff7a1a;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}
.product-body {
  gap: 7px;
  padding: 14px;
}
.product-body h3 {
  min-height: 2.55em;
  color: #162138;
  font-size: .92rem;
  line-height: 1.35;
}
.rating {
  color: #ff9f1a !important;
  font-size: .82rem;
}
.product-row strong {
  color: var(--green);
  font-size: 1.15rem;
}
.icon-button {
  background: var(--green);
}
.buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: .9rem;
  font-weight: 950;
}

.reviews-section {
  padding-top: 28px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.review-card {
  display: grid;
  gap: 10px;
  min-height: 218px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(17, 27, 49, .06);
}
.review-stars {
  color: #ff9f1a;
  font-size: .9rem;
  letter-spacing: 0;
}
.review-card p {
  margin: 0;
  color: #536179;
  font-size: .92rem;
  line-height: 1.55;
}
.review-card strong {
  align-self: end;
  color: #111b31;
}
.review-card span {
  color: var(--green);
  font-size: .86rem;
  font-weight: 900;
}

.deal-banner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 64px;
  padding: 34px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 18px;
}
.deal-banner p:not(.eyebrow) {
  color: #66758e;
  line-height: 1.7;
}
.deal-banner img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.wholesale-motion-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(460px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  margin-bottom: 64px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 12%, rgba(8, 125, 114, .16), transparent 28%),
    radial-gradient(circle at 4% 80%, rgba(47, 111, 44, .12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6faf2 52%, #eef5e7 100%);
  border: 1px solid #d7e1d2;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(17, 27, 49, .08);
}
.wholesale-motion-banner::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(11, 75, 36, .09);
  border-radius: 16px;
  pointer-events: none;
}
.wholesale-copy {
  position: relative;
  z-index: 3;
}
.wholesale-copy h2 {
  max-width: 540px;
  margin: 0;
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
}
.wholesale-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #5e6f86;
  font-size: 1.05rem;
  line-height: 1.7;
}
.wholesale-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.wholesale-mini-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.wholesale-mini-stats span {
  padding: 8px 11px;
  color: #0b4b24;
  background: #e9f5e8;
  border: 1px solid rgba(11,75,36,.12);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 900;
}
.wholesale-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.deal-main-image {
  position: relative;
  z-index: 3;
  width: min(100%, 680px);
  max-height: 370px;
  object-fit: contain;
  padding: 10px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11, 75, 36, .12);
  border-radius: 18px;
  box-shadow: 0 28px 68px rgba(17, 27, 49, .14);
  animation: dealImageFloat 7s ease-in-out infinite;
}
.deal-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8, 125, 114, .18);
  box-shadow: inset 0 0 36px rgba(8,125,114,.07);
  animation: dealOrbit 9s ease-in-out infinite;
}
.orbit-a {
  width: 340px;
  height: 340px;
  right: 6%;
  top: 6%;
}
.orbit-b {
  width: 230px;
  height: 230px;
  left: 8%;
  bottom: 8%;
  animation-delay: -3s;
}
.deal-float {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, #0b4b24, #087d72);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(11, 75, 36, .2);
  font-size: .88rem;
  font-weight: 950;
  animation: dealFloat 5.4s ease-in-out infinite;
}
.deal-float-one {
  left: 6%;
  top: 18%;
}
.deal-float-two {
  right: 4%;
  top: 14%;
  animation-delay: -1.8s;
}
.deal-float-three {
  left: 14%;
  bottom: 16%;
  animation-delay: -3.2s;
}

.store-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 70px;
  padding: 72px max(28px, calc((100vw - 1260px) / 2));
  color: #cbd4e4;
  background: #101929;
  border-top: 10px solid var(--green);
}
.store-footer img {
  width: 160px;
  max-height: 44px;
  object-fit: contain;
  object-position: left;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}
.store-footer h3 {
  margin-bottom: 18px;
  color: #fff;
}
.store-footer a,
.store-footer p {
  display: block;
  margin: 0 0 12px;
  color: #cbd4e4;
  line-height: 1.7;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 68px auto;
  padding: 46px;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 111, 44, .13), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f4f8ef 100%);
  border: 1px solid #d9e1ee;
  border-radius: 18px;
}
.auth-copy h1 {
  max-width: 620px;
  margin: 0 0 16px;
  color: #111b31;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: .98;
}
.auth-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #66758e;
  font-size: 1.05rem;
  line-height: 1.7;
}
.auth-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(17, 27, 49, .08);
}
.auth-card h2 {
  margin: 0 0 4px;
  color: #111b31;
}
.auth-card .errors {
  width: 100%;
  margin: 0;
}
.auth-switch {
  margin: 0;
  color: #66758e;
  font-size: .95rem;
}
.auth-switch a {
  color: var(--green);
  font-weight: 900;
}
.account-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 72px;
  padding: 28px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-radius: 14px;
}
.account-panel .section-title-row h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.account-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #e5ebf3;
}
.account-order div {
  display: grid;
  gap: 6px;
}
.account-order div:last-child {
  justify-items: end;
}
.account-order strong {
  color: #111b31;
  font-size: 1.05rem;
}
.account-order span,
.account-order small,
.account-order a {
  color: #66758e;
}
.account-order a {
  font-weight: 900;
}
.tracking-box {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin: 24px auto;
  padding: 22px;
  background: #fff;
  border: 1px solid #d9e1ee;
  border-left: 5px solid var(--green);
  border-radius: 12px;
  text-align: left;
}
.tracking-box h2,
.tracking-box p {
  margin: 0;
}
.empty-state {
  padding: 34px;
  color: #66758e;
  background: #f7faf4;
  border: 1px dashed #c9d8c2;
  border-radius: 12px;
}
.empty-state h2 {
  margin-top: 0;
  color: #111b31;
}

@media (max-width: 980px) {
  .store-header-main,
  .saas-hero,
  .wholesale-motion-banner,
  .deal-banner,
  .auth-shell,
  .store-footer {
    grid-template-columns: 1fr;
  }
  .store-topbar {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .store-topbar span + span::before {
    left: -14px;
  }
  .store-header-main {
    gap: 12px;
  }
  .store-brand {
    justify-content: center;
  }
  .store-actions,
  .store-nav {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 18px;
  }
  .saas-category-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .saas-products.product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .saas-hero {
    min-height: auto;
    padding: 44px 0;
  }
  .wholesale-motion-banner {
    padding: 28px;
  }
  .wholesale-visual {
    min-height: 340px;
  }
  .deal-main-image {
    max-height: 320px;
  }
  .hero-collage {
    transform: none;
  }
  .hero-collage a:nth-child(n) {
    transform: none;
  }
  .animated-packaging-banner {
    min-height: 500px;
  }
  .hero-product-one {
    right: 5%;
    top: 148px;
    width: 44%;
  }
  .hero-product-two {
    left: 5%;
    bottom: 98px;
    width: 42%;
  }
  .hero-product-three {
    right: 8%;
    bottom: 86px;
    width: 44%;
  }
  .benefit-two,
  .benefit-three {
    display: none;
  }
}

@media (max-width: 620px) {
  .store-header {
    position: static;
    box-shadow: 0 8px 24px rgba(17, 27, 49, .06);
  }
  .store-topbar {
    gap: 16px;
    padding: 6px 12px;
    font-size: .72rem;
    scrollbar-width: none;
  }
  .store-topbar::-webkit-scrollbar {
    display: none;
  }
  .store-topbar .topbar-call {
    gap: 8px;
  }
  .store-topbar span:not(.topbar-call) {
    display: none;
  }
  .store-header-main {
    width: calc(100% - 20px);
    gap: 8px;
    padding: 8px 0 10px;
  }
  .store-brand {
    justify-content: center;
  }
  .brand-mark {
    width: 148px;
    min-height: 46px;
    padding: 5px 9px;
    border-radius: 12px;
  }
  .brand-mark img {
    width: 128px;
    max-height: 34px;
  }
  .brand-caption {
    display: none;
  }
  .store-search {
    grid-template-columns: minmax(0, 1fr) 86px;
    border-radius: 999px;
  }
  .store-search input,
  .store-search button {
    min-height: 40px;
  }
  .store-search input {
    padding: 0 15px;
    font-size: .88rem;
  }
  .store-search button {
    border-radius: 999px;
    font-size: .85rem;
  }
  .store-actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding: 4px;
    border-radius: 999px;
    scrollbar-width: none;
  }
  .store-actions::-webkit-scrollbar {
    display: none;
  }
  .store-actions a,
  .store-actions button {
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    font-size: .8rem;
    flex: 0 0 auto;
  }
  .cart-pill span {
    width: 18px;
    height: 18px;
  }
  .saas-hero-copy h1 {
    font-size: 2.75rem;
  }
  .hero-collage {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .saas-products.product-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .animated-packaging-banner {
    min-height: 540px;
    border-radius: 18px;
  }
  .wholesale-motion-banner {
    padding: 22px;
  }
  .wholesale-copy h2 {
    font-size: 2.2rem;
  }
  .wholesale-visual {
    min-height: 280px;
  }
  .deal-main-image {
    max-height: 235px;
    padding: 7px;
  }
  .deal-float {
    font-size: .75rem;
    padding: 8px 10px;
  }
  .deal-float-two {
    display: none;
  }
  .banner-main-card {
    left: 18px;
    top: 18px;
    width: calc(100% - 36px);
    padding: 20px;
  }
  .hero-product-one {
    right: 12px;
    top: 220px;
    width: 56%;
  }
  .hero-product-two {
    left: 12px;
    bottom: 118px;
    width: 48%;
  }
  .hero-product-three {
    right: 24px;
    bottom: 78px;
    width: 48%;
  }
  .benefit-one {
    left: 18px;
    right: auto;
    top: 190px;
  }
  .section-title-row {
    align-items: start;
    flex-direction: column;
  }
  .auth-shell,
  .account-panel {
    padding: 22px;
  }
  .account-order {
    align-items: start;
    flex-direction: column;
  }
  .account-order div:last-child {
    justify-items: start;
  }
}

.shop-hero-banner,
.about-hero-banner,
.contact-hero-banner {
  width: min(1180px, calc(100% - 36px));
  margin: 40px auto 28px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(130deg, rgba(255,255,255,.96) 0%, rgba(246,250,238,.92) 47%, rgba(218,235,199,.72) 100%),
    radial-gradient(circle at 86% 16%, rgba(0,121,93,.18), transparent 34%);
  border: 1px solid #d9e4d1;
  border-radius: 24px;
  box-shadow: 0 26px 90px rgba(13,79,34,.13);
}
.shop-hero-banner::before,
.about-hero-banner::before,
.contact-hero-banner::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,96,69,.12), transparent 68%);
  animation: bannerGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.shop-hero-copy,
.about-hero-copy,
.contact-hero-copy {
  position: relative;
  z-index: 2;
}
.shop-hero-copy h1,
.about-hero-copy h1,
.contact-hero-copy h1 {
  max-width: 640px;
  margin: 8px 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: .96;
  color: #073f25;
}
.shop-hero-copy p:not(.eyebrow),
.about-hero-copy p:not(.eyebrow),
.contact-hero-copy p:not(.eyebrow),
.about-story-banner p {
  max-width: 620px;
  color: #5b6c63;
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button.ghost {
  color: #073f25;
  background: #fff;
  border: 1px solid #cbd9c5;
}
.shop-hero-visual {
  position: relative;
  min-height: 350px;
  z-index: 1;
}
.shop-hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 16px 20px 42px;
  background: linear-gradient(145deg, rgba(0,95,69,.12), rgba(255,255,255,.86));
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  transform: rotate(-3deg);
}
.shop-float-card {
  position: absolute;
  width: min(285px, 48%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: rgba(255,255,255,.95);
  border: 1px solid #e2eadc;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(13,79,34,.18);
  animation: productFloat 6s ease-in-out infinite;
}
.shop-float-main {
  right: 4%;
  top: 6px;
}
.shop-float-side {
  left: 2%;
  top: 86px;
  animation-delay: -1.7s;
}
.shop-float-low {
  right: 17%;
  bottom: 0;
  animation-delay: -3.1s;
}
.shop-float-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: #00654a;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0,83,62,.22);
  animation: badgePulse 4s ease-in-out infinite;
}
.label-one {
  left: 0;
  bottom: 52px;
}
.label-two {
  right: 2%;
  top: 122px;
  background: #ff7a21;
  animation-delay: -1.4s;
}
.shop-category-rail {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 18px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
}
.shop-category-rail a {
  flex: 0 0 auto;
  padding: 11px 15px;
  color: #073f25;
  background: #fff;
  border: 1px solid #d9e4d1;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(13,79,34,.06);
}
.shop-category-rail a.active,
.shop-category-rail a:hover {
  color: #fff;
  background: #00654a;
  border-color: #00654a;
}
.shop-filters {
  margin-top: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d9e4d1;
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(13,79,34,.08);
}
.shop-listing {
  margin-top: 26px;
}
.about-hero-banner,
.contact-hero-banner {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
}
.about-hero-visual,
.contact-hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(13,79,34,.14);
}
.about-product-collage {
  min-height: 430px;
  overflow: visible;
  padding: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.96), rgba(255,255,255,.35) 36%, transparent 64%),
    linear-gradient(145deg, rgba(214,232,197,.7), rgba(255,255,255,.56));
  border: 0;
  box-shadow: none;
}
.about-product-collage::before {
  content: "";
  position: absolute;
  inset: 52px 38px 44px 28px;
  background:
    linear-gradient(145deg, rgba(0,101,74,.14), rgba(255,255,255,.86)),
    repeating-linear-gradient(90deg, rgba(0,101,74,.08) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  transform: rotate(-4deg);
}
.about-product-collage::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 92px;
  height: 92px;
  background: rgba(255,122,33,.18);
  border-radius: 50%;
  filter: blur(1px);
}
.about-range-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 9px;
  padding: 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid #dbe8d4;
  border-radius: 20px;
  box-shadow: 0 24px 58px rgba(13,79,34,.17);
  animation: productFloat 6.8s ease-in-out infinite;
}
.about-range-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8fbf4;
  border-radius: 14px;
}
.about-range-card span {
  color: #073f25;
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
}
.about-range-main {
  left: 16%;
  top: 66px;
  width: 245px;
}
.about-range-top {
  right: 5%;
  top: 20px;
  width: 176px;
  animation-delay: -1.4s;
}
.about-range-low {
  right: 13%;
  bottom: 20px;
  width: 220px;
  animation-delay: -2.8s;
}
.about-range-side {
  left: 1%;
  bottom: 42px;
  width: 168px;
  animation-delay: -4.2s;
}
.about-hero-visual img,
.contact-hero-visual img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  animation: imageDrift 9s ease-in-out infinite alternate;
}
.about-product-collage .about-range-card img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8fbf4;
  border-radius: 14px;
  animation: none;
}
.about-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.about-stat-strip span {
  display: grid;
  gap: 3px;
  padding: 14px;
  color: #5b6c63;
  background: rgba(255,255,255,.82);
  border: 1px solid #dfe9d8;
  border-radius: 16px;
}
.about-stat-strip strong {
  color: #00654a;
  font-size: 1.1rem;
}
.about-story-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid #d9e4d1;
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(13,79,34,.09);
}
.about-story-banner h2 {
  margin: 6px 0 12px;
  color: #073f25;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}
.about-story-banner img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(13,79,34,.14);
}
.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.contact-action-grid a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  color: #073f25;
  background: rgba(255,255,255,.86);
  border: 1px solid #d9e4d1;
  border-radius: 16px;
}
.contact-action-grid a:last-child {
  grid-column: 1 / -1;
}
.contact-action-grid span {
  color: #00654a;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-action-grid strong {
  overflow-wrap: anywhere;
}
.contact-support-panel {
  min-height: 430px;
  overflow: visible;
  padding: 0;
  background:
    radial-gradient(circle at 64% 20%, rgba(255,122,33,.14), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(222,238,205,.62));
  border: 0;
  box-shadow: none;
}
.contact-support-panel::before {
  content: "";
  position: absolute;
  inset: 46px 26px 58px 36px;
  background:
    linear-gradient(145deg, rgba(0,101,74,.12), rgba(255,255,255,.9)),
    repeating-linear-gradient(0deg, rgba(0,101,74,.07) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 34px;
  transform: rotate(3deg);
}
.support-card,
.support-product,
.support-phone {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.94);
  border: 1px solid #dbe8d4;
  box-shadow: 0 24px 60px rgba(13,79,34,.16);
}
.support-card-main {
  left: 4%;
  top: 56px;
  width: min(330px, 60%);
  padding: 24px;
  border-radius: 22px;
}
.support-card-main span,
.support-phone span {
  color: #00745d;
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.support-card-main strong {
  display: block;
  margin-top: 6px;
  color: #073f25;
  font-size: 1.65rem;
  line-height: 1.05;
}
.support-card-main p {
  margin: 10px 0 14px;
  color: #5b6c63;
  line-height: 1.55;
}
.support-card-main a {
  color: #00654a;
  font-weight: 950;
  overflow-wrap: anywhere;
}
.support-product {
  display: grid;
  gap: 7px;
  padding: 9px;
  border-radius: 18px;
  animation: productFloat 7s ease-in-out infinite;
}
.support-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8fbf4;
  border-radius: 12px;
}
.support-product span {
  color: #073f25;
  font-size: .78rem;
  font-weight: 950;
  text-align: center;
}
.support-product-one {
  right: 8%;
  top: 18px;
  width: 168px;
}
.support-product-two {
  right: 0;
  bottom: 118px;
  width: 154px;
  animation-delay: -2s;
}
.support-product-three {
  left: 16%;
  bottom: 10px;
  width: 188px;
  animation-delay: -4s;
}
.support-phone {
  right: 12%;
  bottom: 24px;
  display: grid;
  gap: 5px;
  width: min(270px, 54%);
  padding: 17px 20px;
  color: #073f25;
  border-radius: 18px;
}
.support-phone strong {
  font-size: 1.05rem;
}
.contact-benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-benefit-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #073f25;
  background: rgba(255,255,255,.86);
  border: 1px solid #d9e4d1;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(13,79,34,.08);
}
.contact-benefit-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: #ff7a21;
  border-radius: 50%;
}
.contact-grid .contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.contact-grid .contact-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 94px;
  height: 94px;
  background: radial-gradient(circle, rgba(0,101,74,.13), transparent 70%);
}
.contact-enquiry-panel {
  padding: 18px;
  background: linear-gradient(145deg, #fff, #f6faf0);
  border: 1px solid #d9e4d1;
  border-radius: 22px;
}
.contact-form-panel {
  display: block;
  max-width: 1180px;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes imageDrift {
  from { transform: scale(1.01); }
  to { transform: scale(1.06); }
}
@keyframes bannerGlow {
  from { transform: translate3d(0,0,0) scale(1); opacity: .75; }
  to { transform: translate3d(80px,40px,0) scale(1.18); opacity: 1; }
}

@media (max-width: 980px) {
  .shop-hero-banner,
  .about-hero-banner,
  .contact-hero-banner,
  .about-story-banner {
    grid-template-columns: 1fr;
  }
  .shop-hero-visual {
    min-height: 390px;
  }
  .about-hero-visual img,
  .contact-hero-visual img,
  .about-story-banner img {
    height: 300px;
  }
  .about-product-collage {
    min-height: 420px;
  }
  .contact-support-panel {
    min-height: 430px;
  }
  .about-range-main {
    left: 12%;
    top: 52px;
  }
  .about-range-top {
    right: 8%;
  }
  .about-range-low {
    right: 15%;
  }
  .support-card-main {
    left: 8%;
  }
  .support-product-one {
    right: 12%;
  }
}

@media (max-width: 620px) {
  .shop-hero-banner,
  .about-hero-banner,
  .contact-hero-banner {
    min-height: auto;
    padding: 22px;
    border-radius: 18px;
  }
  .shop-hero-copy h1,
  .about-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: 2.35rem;
  }
  .shop-hero-visual {
    min-height: 360px;
  }
  .shop-float-card {
    width: 56%;
    border-radius: 16px;
  }
  .shop-float-main {
    right: 0;
    top: 0;
  }
  .shop-float-side {
    left: 0;
    top: 104px;
  }
  .shop-float-low {
    right: 6%;
    bottom: 0;
  }
  .label-two {
    top: auto;
    bottom: 64px;
  }
  .about-stat-strip,
  .contact-action-grid {
    grid-template-columns: 1fr;
  }
  .contact-action-grid a:last-child {
    grid-column: auto;
  }
  .about-hero-visual img,
  .contact-hero-visual img,
  .about-story-banner img {
    height: 240px;
  }
  .about-product-collage {
    min-height: 390px;
  }
  .contact-support-panel {
    min-height: 520px;
  }
  .contact-support-panel::before {
    inset: 34px 10px 34px 10px;
    border-radius: 24px;
  }
  .support-card-main {
    left: 5%;
    top: 28px;
    width: 78%;
    padding: 18px;
    border-radius: 18px;
  }
  .support-card-main strong {
    font-size: 1.35rem;
  }
  .support-product {
    padding: 7px;
    border-radius: 14px;
  }
  .support-product span {
    font-size: .7rem;
  }
  .support-product-one {
    right: 0;
    top: 178px;
    width: 38%;
  }
  .support-product-two {
    left: 0;
    right: auto;
    bottom: 112px;
    width: 38%;
  }
  .support-product-three {
    left: 33%;
    bottom: 86px;
    width: 44%;
  }
  .support-phone {
    left: 5%;
    right: auto;
    bottom: 14px;
    width: 86%;
    padding: 14px 16px;
  }
  .about-product-collage::before {
    inset: 42px 10px 34px 10px;
    border-radius: 24px;
  }
  .about-range-card {
    padding: 7px;
    border-radius: 15px;
  }
  .about-range-card span {
    font-size: .72rem;
  }
  .about-range-main {
    left: 17%;
    top: 36px;
    width: 52%;
  }
  .about-range-top {
    right: 0;
    top: 112px;
    width: 38%;
  }
  .about-range-low {
    right: 9%;
    bottom: 12px;
    width: 48%;
  }
  .about-range-side {
    left: 0;
    bottom: 60px;
    width: 38%;
  }
  .about-story-banner {
    padding: 20px;
    border-radius: 18px;
  }
}

.vat-note {
  margin: 0;
  color: #00654a;
  font-size: .92rem;
  font-weight: 900;
}
.vat-note.compact {
  color: #66758e;
  font-size: .78rem;
}

/* Final mobile header override: keeps the first screen usable on phones. */
@media (max-width: 760px) {
  .store-header {
    position: static !important;
    box-shadow: 0 8px 22px rgba(17, 27, 49, .06) !important;
  }
  .store-topbar {
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 6px 10px !important;
    overflow-x: auto !important;
    font-size: .72rem !important;
    line-height: 1.1 !important;
    scrollbar-width: none !important;
  }
  .store-topbar::-webkit-scrollbar {
    display: none !important;
  }
  .store-topbar span:not(.topbar-call) {
    display: none !important;
  }
  .store-topbar .topbar-call {
    display: inline-flex !important;
    gap: 8px !important;
    align-items: center !important;
    white-space: nowrap !important;
  }
  .store-topbar span + span::before {
    display: none !important;
  }
  .store-header-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: calc(100% - 20px) !important;
    gap: 7px !important;
    padding: 8px 0 10px !important;
  }
  .store-brand {
    justify-content: center !important;
    height: 48px !important;
  }
  .brand-mark {
    width: 150px !important;
    min-height: 44px !important;
    padding: 5px 9px !important;
    border-radius: 12px !important;
  }
  .brand-mark img {
    width: 128px !important;
    max-height: 34px !important;
  }
  .brand-caption {
    display: none !important;
  }
  .store-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 82px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
  }
  .store-search input,
  .store-search button {
    min-height: 38px !important;
    height: 38px !important;
  }
  .store-search input {
    padding: 0 14px !important;
    font-size: .86rem !important;
  }
  .store-search button {
    border-radius: 999px !important;
    font-size: .82rem !important;
  }
  .store-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    overflow-x: auto !important;
    padding: 4px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
  }
  .store-actions::-webkit-scrollbar {
    display: none !important;
  }
  .store-actions a,
  .store-actions button {
    flex: 0 0 auto !important;
    min-height: 32px !important;
    padding: 0 11px !important;
    font-size: .78rem !important;
  }
  .cart-pill span {
    width: 18px !important;
    height: 18px !important;
  }
  .description-feature-block ul {
    grid-template-columns: 1fr !important;
  }
}

/* Product gallery mobile fix: keep thumbnails compact instead of stacking full-size images. */
.detail-media > picture {
  height: auto !important;
}
.detail-media > picture img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 680px !important;
  object-fit: contain !important;
}
.product-gallery {
  display: flex !important;
  gap: 10px !important;
  overflow-x: auto !important;
  padding: 2px 2px 8px !important;
  scrollbar-width: thin !important;
}
.product-gallery .gallery-thumb {
  flex: 0 0 82px !important;
  width: 82px !important;
  height: 82px !important;
  min-width: 82px !important;
  min-height: 82px !important;
  max-width: 82px !important;
  max-height: 82px !important;
  display: grid !important;
  place-items: center !important;
  padding: 6px !important;
  overflow: hidden !important;
}
.product-gallery .gallery-thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 760px) {
  .product-detail {
    width: calc(100% - 20px) !important;
    margin: 18px auto 34px !important;
    gap: 18px !important;
  }
  .detail-media {
    padding: 8px !important;
    gap: 8px !important;
    border-radius: 12px !important;
  }
  .detail-media > picture img {
    max-height: 460px !important;
  }
  .product-gallery {
    gap: 7px !important;
  }
  .product-gallery .gallery-thumb {
    flex-basis: 62px !important;
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    min-height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    border-radius: 9px !important;
    padding: 4px !important;
  }
}

/* Refined homepage hero showcase. */
.refined-hero-showcase {
  position: relative !important;
  min-height: 560px !important;
  padding: 28px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 82% 14%, rgba(184, 224, 157, .55), transparent 34%),
    linear-gradient(145deg, #f9fbf3 0%, #eaf6df 58%, #d9edd1 100%) !important;
  border: 1px solid rgba(9, 86, 51, .14) !important;
  border-radius: 32px !important;
  box-shadow: 0 30px 90px rgba(17, 27, 49, .12) !important;
}
.refined-hero-showcase::before {
  content: "" !important;
  position: absolute !important;
  inset: 28px !important;
  border: 1px solid rgba(9, 86, 51, .11) !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,.36) !important;
}
.showcase-copy-card,
.showcase-product,
.showcase-delivery-card {
  position: absolute !important;
  z-index: 2 !important;
}
.showcase-copy-card {
  left: 46px !important;
  top: 44px !important;
  width: min(330px, 54%) !important;
  display: grid !important;
  gap: 14px !important;
  padding: 24px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #064b30, #07806f) !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 56px rgba(6, 75, 48, .24) !important;
  animation: gentleFloat 7s ease-in-out infinite !important;
}
.showcase-copy-card span {
  color: #c8f16c !important;
  font-size: .74rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}
.showcase-copy-card strong {
  color: #fff !important;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem) !important;
  line-height: 1.04 !important;
}
.showcase-copy-card a {
  width: fit-content !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 18px !important;
  color: #064b30 !important;
  background: #fff !important;
  border-radius: 10px !important;
  font-weight: 900 !important;
}
.showcase-product {
  display: grid !important;
  gap: 10px !important;
  padding: 12px !important;
  background: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(9, 86, 51, .12) !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 60px rgba(17, 27, 49, .14) !important;
}
.showcase-product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 14px !important;
}
.showcase-product span {
  color: #064b30 !important;
  font-size: .86rem !important;
  font-weight: 900 !important;
}
.showcase-product-main {
  right: 34px !important;
  top: 56px !important;
  width: 285px !important;
  height: 275px !important;
  animation: productFloat 7s ease-in-out infinite !important;
}
.showcase-product-cups {
  left: 72px !important;
  bottom: 44px !important;
  width: 220px !important;
  height: 230px !important;
  animation: productFloat 7s ease-in-out infinite -2s !important;
}
.showcase-product-containers,
.showcase-product-plate {
  right: 74px !important;
  bottom: 42px !important;
  width: 255px !important;
  height: 240px !important;
  animation: productFloat 7s ease-in-out infinite -4s !important;
}
.showcase-delivery-card {
  left: 49% !important;
  top: 48% !important;
  width: 205px !important;
  display: grid !important;
  gap: 4px !important;
  padding: 16px 18px !important;
  background: #fff !important;
  border: 1px solid rgba(9, 86, 51, .12) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 42px rgba(17, 27, 49, .12) !important;
}
.showcase-delivery-card strong {
  color: #064b30 !important;
  font-size: 1rem !important;
}
.showcase-delivery-card span {
  color: #66758e !important;
  font-size: .82rem !important;
  line-height: 1.35 !important;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .refined-hero-showcase {
    min-height: 520px !important;
  }
}

@media (max-width: 620px) {
  .refined-hero-showcase {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 14px !important;
    border-radius: 20px !important;
  }
  .refined-hero-showcase::before {
    display: none !important;
  }
  .showcase-copy-card,
  .showcase-product,
  .showcase-delivery-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    animation: none !important;
  }
  .showcase-copy-card,
  .showcase-product-main,
  .showcase-delivery-card {
    grid-column: 1 / -1 !important;
  }
  .showcase-copy-card {
    padding: 18px !important;
    border-radius: 18px !important;
  }
  .showcase-copy-card strong {
    font-size: 1.75rem !important;
  }
  .showcase-product-main {
    height: 245px !important;
  }
  .showcase-product-cups,
  .showcase-product-containers {
    height: 170px !important;
  }
  .showcase-delivery-card {
    padding: 14px !important;
  }
}

/* Final cleaner hero layout: tidy product showcase with no crowded overlaps. */
.saas-hero {
  grid-template-columns: minmax(0, .82fr) minmax(520px, .78fr) !important;
  min-height: auto !important;
  padding: 58px 0 64px !important;
  align-items: center !important;
}
.saas-hero-copy h1 {
  max-width: 610px !important;
  font-size: clamp(2.65rem, 4.2vw, 4rem) !important;
  line-height: 1.06 !important;
}
.saas-hero-copy p {
  max-width: 610px !important;
  font-size: .98rem !important;
  line-height: 1.62 !important;
}
.refined-hero-showcase {
  position: relative !important;
  display: grid !important;
  grid-template-columns: .92fr 1fr !important;
  gap: 14px !important;
  min-height: auto !important;
  padding: 24px !important;
  align-items: stretch !important;
}
.refined-hero-showcase::before {
  inset: 18px !important;
  border-radius: 24px !important;
}
.refined-hero-showcase .showcase-copy-card,
.refined-hero-showcase .showcase-product,
.refined-hero-showcase .showcase-delivery-card {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  z-index: 2 !important;
  animation: none !important;
}
.refined-hero-showcase .showcase-copy-card {
  min-height: 236px !important;
  align-content: center !important;
  border-radius: 20px !important;
}
.refined-hero-showcase .showcase-copy-card strong {
  font-size: clamp(1.9rem, 2.4vw, 2.35rem) !important;
}
.refined-hero-showcase .showcase-product {
  min-height: 0 !important;
  height: auto !important;
  animation: heroCardBreathe 6.4s ease-in-out infinite !important;
}
.refined-hero-showcase .showcase-product img {
  min-height: 0 !important;
  animation: heroImageBreathe 6.4s ease-in-out infinite !important;
  transform-origin: center center !important;
}
.refined-hero-showcase .showcase-product-main {
  min-height: 236px !important;
  animation-delay: 0s !important;
}
.refined-hero-showcase .showcase-product-main img {
  animation-delay: 0s !important;
}
.refined-hero-showcase .showcase-product-cups {
  animation-delay: -1.6s !important;
}
.refined-hero-showcase .showcase-product-cups img {
  animation-delay: -1.6s !important;
}
.refined-hero-showcase .showcase-product-cups,
.refined-hero-showcase .showcase-product-containers,
.refined-hero-showcase .showcase-product-plate {
  min-height: 205px !important;
}
.refined-hero-showcase .showcase-product-plate {
  animation-delay: -3.2s !important;
}
.refined-hero-showcase .showcase-product-plate img {
  animation-delay: -3.2s !important;
}
.refined-hero-showcase .showcase-delivery-card {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}
.refined-hero-showcase .showcase-delivery-card span {
  max-width: 260px !important;
  text-align: right !important;
}

@media (max-width: 980px) {
  .saas-hero {
    grid-template-columns: 1fr !important;
    padding: 34px 0 44px !important;
  }
  .saas-hero-copy h1 {
    font-size: clamp(2.35rem, 8vw, 3.25rem) !important;
  }
  .refined-hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .saas-hero-copy h1 {
    font-size: 2.15rem !important;
  }
  .saas-hero-copy p {
    font-size: .95rem !important;
  }
  .refined-hero-showcase {
    grid-template-columns: 1fr !important;
    padding: 12px !important;
  }
  .refined-hero-showcase .showcase-copy-card,
  .refined-hero-showcase .showcase-product-main,
  .refined-hero-showcase .showcase-product-cups,
  .refined-hero-showcase .showcase-product-containers,
  .refined-hero-showcase .showcase-product-plate {
    min-height: 190px !important;
  }
  .refined-hero-showcase .showcase-copy-card {
    min-height: auto !important;
  }
  .refined-hero-showcase .showcase-delivery-card {
    display: grid !important;
  }
  .refined-hero-showcase .showcase-delivery-card span {
    max-width: none !important;
    text-align: left !important;
  }
}

@keyframes heroCardBreathe {
  0%, 100% {
    transform: translateY(0) rotate(.35deg);
  }
  50% {
    transform: translateY(-8px) rotate(-.8deg);
  }
}

@keyframes heroImageBreathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.028);
  }
}
