/* zeba creation — citrus atelier home (ox-)
   Same section layout as before; visual language unique to this storefront. */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@400;500;600;700;800&display=swap');

.page-ox-vegime {
  --ox-ink: #14201a;
  --ox-ink-soft: #2a3d33;
  --ox-muted: #5f7268;
  --ox-leaf: #1f7a4d;
  --ox-leaf-deep: #0f4d32;
  --ox-citrus: #f2a52a;
  --ox-guava: #e35d4a;
  --ox-mist: #e8f2ec;
  --ox-foam: #f4faf6;
  --ox-line: rgba(20, 32, 26, 0.1);
  --ox-sans: 'Outfit', 'Sora', system-ui, sans-serif;
  --ox-display: 'DM Serif Display', 'Fraunces', Georgia, serif;
  --ox-radius: 4px;
  --ox-radius-lg: 18px;
  background:
    radial-gradient(1200px 480px at 12% -10%, rgba(242, 165, 42, 0.14), transparent 60%),
    radial-gradient(900px 420px at 95% 8%, rgba(31, 122, 77, 0.1), transparent 55%),
    var(--ox-foam);
  color: var(--ox-ink);
  font-family: var(--ox-sans);
}

.page-ox-vegime .page-main {
  padding-top: 0;
  overflow: clip;
}

/* ── Shared ── */
.ox-section-title {
  position: relative;
  margin: 0 auto 36px;
  max-width: 18ch;
  text-align: center;
  font-family: var(--ox-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ox-ink);
  letter-spacing: -0.01em;
}

.ox-section-title::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ox-citrus), var(--ox-guava));
  animation: ox-title-grow 0.9s ease both;
}

.ox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--ox-radius);
  font-family: var(--ox-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.ox-btn:hover { transform: translateY(-3px) skewX(-2deg); }

.ox-btn-main {
  position: relative;
  overflow: hidden;
  background: var(--ox-ink);
  color: #fff;
  box-shadow: 8px 8px 0 var(--ox-citrus);
}

.ox-btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.ox-btn-main:hover {
  background: var(--ox-leaf);
  color: #fff;
  box-shadow: 10px 10px 0 rgba(242, 165, 42, 0.55);
}

.ox-btn-main:hover::before { transform: translateX(120%); }

/* ── Hero split ── */
.ox-hero-split {
  position: relative;
  padding: 56px 0 64px;
  background:
    linear-gradient(135deg, rgba(20, 32, 26, 0.04) 0%, transparent 42%),
    repeating-linear-gradient(
      -18deg,
      transparent 0 14px,
      rgba(31, 122, 77, 0.035) 14px 15px
    ),
    linear-gradient(180deg, #dceee3 0%, var(--ox-foam) 70%);
  isolation: isolate;
}

.ox-hero-split::before {
  content: '';
  position: absolute;
  width: min(46vw, 420px);
  aspect-ratio: 1;
  right: -8%;
  top: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe08a 0%, #f2a52a 42%, transparent 68%);
  opacity: 0.55;
  animation: ox-orb 10s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.ox-hero-split::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(244, 250, 246, 0.95));
  z-index: 1;
  pointer-events: none;
}

.ox-hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  min-height: 440px;
}

.ox-hero-copy {
  position: relative;
  z-index: 2;
  padding: 8px 0;
  animation: ox-rise 0.75s ease both;
}

.ox-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: var(--ox-radius);
  background: var(--ox-ink);
  color: var(--ox-citrus);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 var(--ox-guava);
}

.ox-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ox-citrus);
  box-shadow: 0 0 0 3px rgba(242, 165, 42, 0.25);
  animation: ox-pulse 1.8s ease-in-out infinite;
}

.ox-hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--ox-display);
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--ox-ink);
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.ox-hero-copy h1::first-line {
  background: linear-gradient(90deg, var(--ox-ink), var(--ox-leaf));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ox-hero-price {
  margin: 0 0 30px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ox-muted);
}

.ox-hero-price::before {
  content: '◆ ';
  color: var(--ox-citrus);
  font-size: 0.75em;
}

.ox-hero-visual {
  position: relative;
  min-height: 420px;
  animation: ox-rise 0.9s 0.12s ease both;
}

.ox-hero-bag {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: min(64%, 340px);
  aspect-ratio: 0.82;
  transform: translateX(-42%) rotate(-2deg);
  background:
    linear-gradient(160deg, #2f6b4a 0%, #184e36 55%, #0f3a28 100%);
  border-radius: 22% 22% 12% 12% / 10% 10% 8% 8%;
  box-shadow:
    0 28px 48px rgba(15, 58, 40, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ox-hero-bag::before {
  content: '';
  position: absolute;
  left: 22%;
  right: 22%;
  top: -10px;
  height: 20px;
  border: 3px solid #0f3a28;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #184e36;
}

.ox-hero-bag::after {
  content: '';
  position: absolute;
  inset: auto -20% -18% -20%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(242, 165, 42, 0.35), transparent 70%);
  pointer-events: none;
}

.ox-hero-bag-main {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 128%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.ox-hero-float {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.14));
  animation: ox-float 4.8s ease-in-out infinite;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  padding: 4px;
  backdrop-filter: blur(2px);
}

.ox-hero-float-1 { width: 92px; top: 2%; left: 14%; animation-delay: 0s; }
.ox-hero-float-2 { width: 60px; top: 12%; right: 12%; animation-delay: 0.45s; animation-name: ox-float-tilt; }
.ox-hero-float-3 { width: 78px; top: 0%; right: 36%; animation-delay: 0.9s; }
.ox-hero-float-4 { width: 52px; top: 30%; left: 4%; animation-delay: 0.25s; animation-name: ox-float-tilt; }
.ox-hero-float-5 { width: 46px; top: 38%; right: 2%; animation-delay: 1.2s; }
.ox-hero-float-6 { width: 42px; top: 20%; left: 40%; animation-delay: 0.7s; animation-name: ox-float-tilt; }

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

@keyframes ox-float-tilt {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes ox-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 22px) scale(1.06); }
}

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

@keyframes ox-title-grow {
  from { transform: scaleX(0.2); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes ox-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

/* ── Services ── */
.ox-services {
  position: relative;
  padding: 28px 0;
  background: var(--ox-ink);
  color: #fff;
  border: 0;
}

.ox-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  text-align: left;
}

.ox-service {
  position: relative;
  padding: 22px 28px;
}

.ox-service + .ox-service {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ox-service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 14px;
  border-radius: 50% 40% 55% 45%;
  background: linear-gradient(145deg, var(--ox-citrus), var(--ox-guava));
  font-size: 1.15rem;
  filter: none;
  box-shadow: 0 8px 18px rgba(227, 93, 74, 0.28);
  animation: ox-blob 5s ease-in-out infinite;
}

.ox-service:nth-child(2) .ox-service-icon { animation-delay: 0.4s; }
.ox-service:nth-child(3) .ox-service-icon { animation-delay: 0.8s; }

@keyframes ox-blob {
  0%, 100% { border-radius: 50% 40% 55% 45%; transform: rotate(0deg); }
  50% { border-radius: 40% 55% 45% 50%; transform: rotate(8deg); }
}

.ox-service strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--ox-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
}

.ox-service p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Category explorer ── */
.ox-explore {
  padding: 68px 0 56px;
  background: transparent;
}

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

.ox-explore-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 22px 20px;
  background: #fff;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-line);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.ox-explore-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ox-citrus), var(--ox-leaf));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.ox-explore-card:nth-child(2)::before { background: linear-gradient(180deg, var(--ox-guava), #f2a52a); }
.ox-explore-card:nth-child(3)::before { background: linear-gradient(180deg, #3aa8c5, var(--ox-leaf)); }
.ox-explore-card:nth-child(4)::before { background: linear-gradient(180deg, #c4782b, var(--ox-guava)); }

.ox-explore-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: transparent;
  background: linear-gradient(160deg, #fff, var(--ox-mist));
}

.ox-explore-card:hover::before { transform: scaleY(1); }

.ox-explore-copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--ox-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ox-ink);
}

.ox-explore-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ox-explore-copy li {
  position: relative;
  padding-left: 12px;
  font-size: 0.78rem;
  color: var(--ox-muted);
  line-height: 1.55;
}

.ox-explore-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ox-citrus);
}

.ox-explore-copy li + li { margin-top: 3px; }

.ox-explore-card img {
  width: 88px;
  height: 88px;
  border-radius: 30% 70% 55% 45% / 45% 40% 60% 55%;
  object-fit: cover;
  border: 0;
  box-shadow: 0 12px 24px rgba(20, 32, 26, 0.12);
  transition: border-radius 0.45s ease, transform 0.45s ease;
}

.ox-explore-card:hover img {
  border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%;
  transform: scale(1.06) rotate(4deg);
}

/* ── Product grids ── */
.ox-daily,
.ox-featured {
  padding: 56px 0;
  background: transparent;
}

.ox-weekly {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(20, 32, 26, 0.03), transparent 30%),
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      rgba(31, 122, 77, 0.04) 22px 23px
    ),
    var(--ox-mist);
}

.ox-prod-grid {
  display: grid;
  gap: 18px;
}

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

.ox-prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--ox-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ox-prod-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ox-leaf), var(--ox-citrus), var(--ox-guava));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ox-prod-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 122, 77, 0.18);
  box-shadow: 0 18px 36px rgba(20, 32, 26, 0.1);
}

.ox-prod-card:hover::after { transform: scaleX(1); }

.ox-prod-sale,
.ox-prod-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: var(--ox-radius);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ox-guava);
}

.ox-prod-ribbon {
  top: 0;
  left: 0;
  padding: 9px 30px 7px 12px;
  border-radius: 0 0 14px 0;
  background: var(--ox-ink);
  color: var(--ox-citrus);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.ox-prod-clock {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(242, 165, 42, 0.18);
  color: var(--ox-ink);
  font-size: 0.78rem;
  animation: ox-pulse 2s ease-in-out infinite;
}

.ox-prod-img {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 165, 42, 0.12), transparent 45%),
    linear-gradient(180deg, var(--ox-foam), #fff 70%);
  transition: background 0.3s ease;
}

.ox-prod-card:hover .ox-prod-img {
  background:
    radial-gradient(circle at 30% 80%, rgba(31, 122, 77, 0.14), transparent 50%),
    linear-gradient(180deg, #dff0e6, #fff 75%);
}

.ox-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.ox-prod-card:hover .ox-prod-img img {
  transform: scale(1.07) rotate(-2deg);
}

.ox-prod-body {
  position: relative;
  padding: 14px 14px 16px;
  border-top: 1px dashed var(--ox-line);
  flex: 1;
}

.ox-prod-body h3 {
  margin: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
}

.ox-prod-body h3 a { color: var(--ox-ink); }

.ox-prod-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ox-prod-price strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ox-leaf-deep);
}

.ox-prod-price s {
  font-size: 0.75rem;
  color: #9aaba2;
}

.ox-prod-cart {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: var(--ox-mist);
  color: var(--ox-leaf-deep);
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ox-prod-cart:hover {
  background: var(--ox-ink);
  color: var(--ox-citrus);
  transform: rotate(-8deg) scale(1.05);
}

.ox-prod-cart.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ── Promo trio ── */
.ox-promo-trio {
  padding: 8px 0 56px;
  background: transparent;
}

.ox-promo-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ox-promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  min-height: 190px;
  padding: 26px 22px;
  border-radius: var(--ox-radius-lg);
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ox-promo-banner::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.45s ease;
}

.ox-promo-banner:hover {
  transform: translateY(-6px) skewY(-0.4deg);
  color: #fff;
  box-shadow: 0 20px 40px rgba(20, 32, 26, 0.14);
}

.ox-promo-banner:hover::before { transform: scale(1.35); }

.ox-promo-tomato {
  background:
    linear-gradient(135deg, #b42318 0%, #e35d4a 55%, #f2a52a 130%);
}

.ox-promo-juice {
  background:
    linear-gradient(145deg, #fff8e8 0%, #ffe6b0 100%);
  color: var(--ox-ink);
}

.ox-promo-greens {
  background:
    linear-gradient(135deg, #0f4d32 0%, #1f7a4d 55%, #3aa878 120%);
}

.ox-promo-copy span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: var(--ox-radius);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
}

.ox-promo-juice .ox-promo-copy span {
  background: rgba(20, 32, 26, 0.08);
  color: var(--ox-muted);
}

.ox-promo-copy h3 {
  margin: 0 0 12px;
  font-family: var(--ox-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.15;
}

.ox-promo-copy em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.ox-promo-banner img {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 150px);
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

.ox-promo-banner:hover img { transform: scale(1.08) rotate(-3deg); }

.ox-promo-juice img {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

/* ── Duo banners ── */
.ox-duo {
  padding: 0 0 56px;
  background: transparent;
}

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

.ox-duo-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  min-height: 210px;
  padding: 30px 26px;
  border-radius: var(--ox-radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ox-duo-banner::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ox-duo-banner:hover { transform: translateY(-5px); }
.ox-duo-banner:hover::after { opacity: 1; }

.ox-duo-mist {
  background:
    linear-gradient(135deg, #1a2e26 0%, #2f5a45 100%);
  color: #fff;
}

.ox-duo-sky {
  background:
    linear-gradient(135deg, #1d6f8f 0%, #3aa8c5 55%, #8fd6e8 120%);
  color: #fff;
}

.ox-duo-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ox-duo-copy h3 {
  margin: 0 0 12px;
  font-family: var(--ox-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.12;
}

.ox-duo-copy em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.ox-duo-sky .ox-duo-copy em,
.ox-duo-sky .ox-duo-copy span,
.ox-duo-sky .ox-duo-copy h3,
.ox-duo-mist .ox-duo-copy em,
.ox-duo-mist .ox-duo-copy span,
.ox-duo-mist .ox-duo-copy h3 { color: #fff; }

.ox-duo-mist::after,
.ox-duo-sky::after { border-color: rgba(255, 255, 255, 0.28); }

.ox-duo-banner img {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 180px);
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

.ox-duo-banner:hover img { transform: translateX(-6px) scale(1.05); }

/* ── Best selling ── */
.ox-best {
  padding: 56px 0 80px;
  background: transparent;
}

.ox-best-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ox-best-col {
  border-radius: var(--ox-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ox-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ox-best-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(20, 32, 26, 0.08);
}

.ox-best-head {
  display: grid;
  place-items: center;
  min-height: 128px;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 77, 50, 0.72), rgba(227, 93, 74, 0.45)),
    var(--ox-best-bg, #ddd) center / cover no-repeat;
  color: #fff;
  position: relative;
}

.ox-best-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 32, 26, 0.35));
}

.ox-best-head strong {
  position: relative;
  z-index: 1;
  font-family: var(--ox-display);
  font-size: 1.85rem;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 0.02em;
}

.ox-best-list {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.ox-best-row {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px dashed var(--ox-line);
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.ox-best-row:last-child { border-bottom: 0; }

.ox-best-row:hover {
  background: var(--ox-foam);
  padding-left: 20px;
}

.ox-best-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 3px 6px;
  border-radius: var(--ox-radius);
  background: var(--ox-guava);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ox-best-row img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: var(--ox-foam);
  border-radius: 14px;
  padding: 4px;
}

.ox-best-meta strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ox-ink);
  margin-bottom: 6px;
}

.ox-best-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ox-best-price em {
  font-style: normal;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ox-leaf-deep);
}

.ox-best-price s {
  font-size: 0.75rem;
  color: #9aaba2;
}

.ox-best-cart {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--ox-mist);
  color: var(--ox-leaf-deep);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.ox-best-row:hover .ox-best-cart {
  background: var(--ox-ink);
  color: var(--ox-citrus);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .ox-prod-grid-6 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .ox-hero-split-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ox-hero-copy h1 { max-width: none; }

  .ox-hero-visual { min-height: 340px; }

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

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

  .ox-promo-trio-grid,
  .ox-best-grid { grid-template-columns: 1fr; }

  .ox-duo-grid { grid-template-columns: 1fr; }

  .ox-services-grid { gap: 0; }
}

@media (max-width: 768px) {
  .ox-hero-split { padding: 36px 0 44px; }

  .ox-hero-visual { min-height: 280px; }

  .ox-hero-float-1 { width: 64px; }
  .ox-hero-float-2 { width: 44px; }
  .ox-hero-float-3 { width: 56px; }

  .ox-services-grid {
    grid-template-columns: 1fr;
  }

  .ox-service + .ox-service {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ox-explore-grid { grid-template-columns: 1fr; }

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

  .ox-promo-banner,
  .ox-duo-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ox-promo-banner img,
  .ox-duo-banner img {
    justify-self: center;
    margin-top: 12px;
  }

  .ox-btn-main { box-shadow: 5px 5px 0 var(--ox-citrus); }
}

@media (max-width: 480px) {
  .ox-prod-grid-6 { grid-template-columns: 1fr; }

  .ox-best-row { grid-template-columns: 64px 1fr auto; }

  .ox-best-row img {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ox-hero-float,
  .ox-service-icon,
  .ox-hero-split::before,
  .ox-hero-badge::before,
  .ox-prod-clock {
    animation: none !important;
  }

  .ox-hero-copy,
  .ox-hero-visual,
  .ox-section-title::after {
    animation: none !important;
  }
}
