/* avokadocuum — Feride'nin Bahçesi / PlatinMarket tarzı */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --green: #5c9c3c;
  --green-dark: #3f7a28;
  --green-nav: #4e8f32;
  --green-deep: #2f5c1f;
  --sale: #e53935;
  --price: #333;
  --muted: #777;
  --line: #e5e5e5;
  --bg: #f5f5f5;
  --white: #fff;
  --ink: #222;
  --max: 1180px;
  --font: "Open Sans", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  min-height: 100vh;
  font-size: 14px;
}

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

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

.full-width {
  width: 100%;
  padding-inline: clamp(12px, 2.5vw, 32px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ——— Top links ——— */
.top-links {
  background: #f0f0f0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.top-links .container {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 8px 12px;
}

.top-links a {
  color: #555;
}

.top-links a:hover {
  color: var(--green);
}

/* ——— Header ——— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px clamp(12px, 2.5vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 26px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8bc34a, var(--green-dark));
  flex-shrink: 0;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 14px 16px;
  border-radius: 50% 50% 45% 45%;
  background: #f4e7b0;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.util-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.util-link:hover {
  border-color: var(--green);
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(92, 156, 60, 0.15);
}

.util-link .count {
  background: var(--sale);
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #fff;
}

/* ——— Category nav ——— */
.cat-nav {
  background: var(--green-nav);
  width: 100%;
}

.cat-nav-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-inline: clamp(8px, 1.5vw, 20px);
}

.cat-nav-inner > a,
.cat-nav-inner > .has-sub {
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
}

.cat-nav a,
.cat-nav .has-sub > span {
  display: block;
  padding: 14px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.cat-nav-inner > a:last-child,
.cat-nav-inner > .has-sub:last-child > span {
  border-right: none;
}

.cat-nav a:hover,
.cat-nav .has-sub:hover > span {
  background: var(--green-dark);
}

.cat-nav .has-sub {
  position: relative;
}

.cat-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  text-align: left;
}

.cat-nav .has-sub:hover .submenu {
  display: block;
}

.cat-nav .submenu a {
  color: #333;
  border-right: none;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  text-align: left;
  padding: 12px 14px;
}

.cat-nav .submenu a:hover {
  background: #f3f8ef;
  color: var(--green-dark);
}

/* Trust strip kaldırıldı */
.trust-strip {
  display: none !important;
}

/* ——— Hero slider ——— */
.hero {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(300px, 48vw, 520px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-caption {
  display: none !important;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.hero-controls .hero-dots {
  pointer-events: auto;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-dots button.is-active {
  background: #fff;
}

.hero-arrows {
  display: none !important;
}

.hero.is-dragging,
.hero.is-dragging * {
  cursor: grabbing;
  user-select: none;
}

/* ——— Category sections ——— */
.home-main {
  width: 100%;
  max-width: none;
  padding: 28px clamp(12px, 2.5vw, 32px) 48px;
}

.cat-section {
  background: transparent;
  border: none;
  margin-bottom: 36px;
}

.cat-section-title {
  background: transparent;
  border-bottom: none;
  padding: 0 0 16px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  display: block;
  text-align: center;
  position: relative;
}

.cat-section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--green);
  margin: 10px auto 0;
}

.cat-section-title a {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px 40px;
  width: 100%;
}

.product-card {
  border: none;
  padding: 0 0 8px;
  background: transparent;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: transform 0.15s;
}

.product-card:hover {
  background: transparent;
  transform: translateY(-3px);
}

.product-card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #999;
  font-size: 14px;
  z-index: 2;
  line-height: 1;
}

.product-card .fav:hover,
.product-card .fav.is-on {
  color: var(--sale);
  border-color: #f5c0c0;
}

.product-card .sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sale);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 2px;
  z-index: 2;
}

.product-card .thumb {
  aspect-ratio: 1;
  margin-bottom: 12px;
  overflow: hidden;
  background: #eee;
  width: 100%;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .thumb img {
  transform: scale(1.04);
}

.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 2.7em;
  color: #333;
  padding: 0 4px;
}

.product-card h3 a:hover {
  color: var(--green);
}

.price-box {
  margin-top: auto;
  margin-bottom: 10px;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.price-old {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.btn-cart {
  display: block;
  width: 100%;
  padding: 9px 10px;
  background: var(--green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
}

.btn-cart:hover {
  background: var(--green-dark);
}

/* ——— Buttons / forms shared ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

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

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: #333;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 7px 12px;
  font-size: 12px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ——— Inner pages ——— */
.page-wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 24px 0 48px;
}

/* Hesabım + sepet: orta genişlik, kenar boşluklu */
.page-wrap.account-layout,
.page-wrap.cart-layout,
.page-wrap.checkout-layout,
.page-wrap.page-narrow {
  width: min(100% - 72px, 1080px);
  max-width: 1080px;
  padding-top: 16px;
  padding-bottom: 48px;
}

main:has(.account-layout) .page-hero,
main:has(.cart-layout) .page-hero,
main:has(.checkout-layout) .page-hero,
main:has(.page-narrow) .page-hero {
  width: min(100% - 72px, 1080px);
  max-width: 1080px;
}

.page-hero {
  background: transparent;
  border-bottom: none;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 28px 0 8px;
  text-align: center;
}

.page-hero h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--green);
  margin: 10px auto 0;
}

.page-hero p {
  color: var(--muted);
  margin-top: 12px;
}

.page-hero .breadcrumb {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumb a:hover {
  color: var(--green);
}

.panel {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

.panel h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.panel h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 8px auto 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 8px 0 20px;
  align-items: start;
  width: 100%;
}

.filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.filters h2 {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
  color: var(--green-deep);
}

.filters h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 8px auto 0;
}

.filter-group {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h3 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.filter-group label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  font-size: 13px;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0 0 16px;
  margin-bottom: 4px;
}

.select,
.field input,
.field select,
.field textarea,
.search-field input,
.coupon input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
}

.select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--green);
  border-color: var(--green);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: #444;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

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

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: 36px;
  padding: 12px 0 28px;
  align-items: start;
  width: 100%;
}

.pdp-gallery {
  width: 100%;
  max-width: 400px;
}

.pdp-main {
  border: none;
  background: #eee;
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  position: relative;
  cursor: crosshair;
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 0.08s linear;
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.pdp-main.is-zooming img {
  transform: scale(2.2);
}

.zoom-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(19, 38, 28, 0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.pdp-main.is-zooming .zoom-hint,
.pdp-main:hover .zoom-hint {
  opacity: 0;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.pdp-thumbs button {
  border: 2px solid transparent;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
  transition: border-color 0.15s, transform 0.15s;
}

.pdp-thumbs button:hover {
  transform: translateY(-2px);
}

.pdp-thumbs button.is-active {
  border-color: var(--green);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .cat-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.pdp-info h1 {
  font-size: clamp(22px, 3vw, 28px);
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.pdp-rating .stars {
  color: #c4922a;
  letter-spacing: 0.04em;
}

.pdp-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.pdp-price .price {
  font-size: 30px;
  display: inline;
}

.pdp-price .price-old {
  display: inline;
  font-size: 16px;
}

.pdp-sale {
  position: static;
  display: inline-block;
}

.pdp-unit {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.pdp-desc {
  color: #555;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 48ch;
}

.pdp-options {
  margin-bottom: 18px;
}

.opt-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.opt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

.chip:has(input:checked) {
  border-color: var(--green);
  background: #f3f8ef;
  color: var(--green-deep);
}

.chip input {
  accent-color: var(--green);
}

.pdp-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.qty {
  display: inline-flex;
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.qty button {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.qty input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.pdp-buy-row .btn-primary {
  min-width: 160px;
  padding: 12px 20px;
  border-radius: 6px;
}

.pdp-buy-row .btn-secondary {
  border-radius: 6px;
  background: #fff;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.pdp-actions .btn-primary {
  min-width: 180px;
  padding: 12px 20px;
  border-radius: 6px;
}

.pdp-actions .btn-secondary {
  border-radius: 6px;
  background: #fff;
}

.pdp-meta-list {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #666;
  font-size: 13px;
  display: grid;
  gap: 8px;
}

.stock-ok {
  color: var(--ok, #2f7a4a);
  font-weight: 700;
}

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pdp-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-trust-item strong {
  font-size: 13px;
  color: var(--green-deep);
}

.pdp-trust-item span {
  font-size: 12px;
  color: var(--muted);
}

.detail-list {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  max-width: 520px;
  margin: 14px auto 0;
  color: #555;
}

.detail-list li {
  margin-bottom: 6px;
}

.spec-table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  width: 36%;
  color: var(--green-deep);
  font-weight: 700;
}

.review-summary {
  margin-bottom: 18px;
}

.review-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-score strong {
  font-size: 36px;
  color: var(--green-deep);
}

.review-list {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.review-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.review-item header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px;
}

.review-item .stars {
  color: #c4922a;
}

.review-item time {
  color: var(--muted);
  margin-left: auto;
}

.related-section {
  margin-top: 12px;
}

.tabs {
  margin: 10px 0 36px;
  width: 100%;
}

.tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  gap: 4px;
}

.tab-nav button {
  padding: 12px 18px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s, transform 0.12s;
}

.tab-nav button.is-active {
  background: transparent;
  color: var(--green-dark);
  border-top: none;
  border-bottom-color: var(--green);
}

.tab-panel {
  background: transparent;
  border: none;
  padding: 20px 0;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ——— Click / press effects (site-wide) ——— */
.clickable,
.cart-row .remove,
.btn,
.btn-cart,
.util-link,
.chip,
.fav,
.menu-toggle,
.mobile-close,
.cat-nav a,
.cat-nav .has-sub > span,
.tab-nav button,
.qty button,
.pdp-thumbs button,
.hero-dots button,
.account-nav a,
.footer-col a,
.top-links a,
.product-card .thumb,
.brand {
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:active,
.btn-cart:active,
.util-link:active,
.chip:active,
.fav:active,
.menu-toggle:active,
.tab-nav button:active,
.qty button:active,
.pdp-thumbs button:active,
.cat-nav a:active,
.account-nav a:active {
  transform: scale(0.96);
}

.btn:active,
.btn-cart:active {
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.55s ease-out forwards;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  z-index: 5;
}

.util-link .ripple,
.btn-secondary .ripple,
.chip .ripple,
.fav .ripple,
.qty button .ripple,
.tab-nav button .ripple,
.pdp-thumbs button .ripple {
  background: rgba(92, 156, 60, 0.28);
}

@keyframes ripple-anim {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .pdp {
    grid-template-columns: 1fr;
  }

  .pdp-gallery,
  .pdp-main {
    max-width: 320px;
    margin-inline: auto;
  }

  .pdp-trust {
    grid-template-columns: 1fr;
  }

  .pdp-main {
    cursor: default;
  }

  .pdp-main.is-zooming img {
    transform: none;
  }

  .zoom-hint {
    display: none;
  }

  .page-wrap,
  .page-hero {
    width: min(100% - 32px, var(--max));
  }

  .page-wrap.account-layout,
  .page-wrap.cart-layout,
  .page-wrap.checkout-layout,
  .page-wrap.page-narrow,
  main:has(.account-layout) .page-hero,
  main:has(.cart-layout) .page-hero,
  main:has(.checkout-layout) .page-hero,
  main:has(.page-narrow) .page-hero {
    width: min(100% - 40px, 1080px);
  }
}

/* Cart / checkout / account */
.cart-layout,
.checkout-layout,
.account-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding: 8px 0 20px;
  align-items: start;
  width: 100%;
}

.account-layout {
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

.cart-table,
.cart-summary,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.account-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
}

.account-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 0;
  height: fit-content;
}

.account-nav a {
  display: block;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: #444;
  box-shadow: none;
}

.account-nav a:last-child {
  border-bottom: none;
}

.account-nav a:hover,
.account-nav a.is-active {
  background: #f3f8ef;
  color: var(--green-dark);
  box-shadow: inset 3px 0 0 var(--green);
  padding-left: 16px;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: none;
  background: #eee;
  border-radius: 4px;
}

.cart-row h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-row .unit {
  font-size: 12px;
  color: var(--muted);
}

.cart-row .remove {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0c4c4;
  border-radius: 6px;
  background: #fff;
  color: var(--sale);
  margin-top: 0;
  transition: background 0.15s, transform 0.12s;
}

.cart-row .remove:hover {
  background: #fdecec;
}

.cart-row .remove svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-total {
  font-weight: 700;
  color: var(--green-dark);
  min-width: 5.5rem;
  text-align: right;
}

.cart-summary h2,
.form-card h2,
.account-panel h2 {
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
  color: var(--green-deep);
  text-align: center;
}

.cart-summary h2::after,
.form-card h2::after,
.account-panel h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 8px auto 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
}

.summary-line.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.coupon {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}

.order-list {
  display: grid;
  gap: 8px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
}

.order-item h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.order-item p {
  font-size: 12px;
  color: var(--muted);
}

.status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: #eef6e8;
  color: var(--green-dark);
  height: fit-content;
  text-transform: uppercase;
}

.status.shipped {
  background: #e3f2fd;
  color: #1565c0;
}

.status.delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
  align-items: start;
}

.order-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.order-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-meta-card .order-meta-row {
  margin-bottom: 0;
  justify-content: center;
}

.order-detail-grid .form-card {
  margin-bottom: 0;
}

.order-detail-grid .cart-row {
  grid-template-columns: 72px 1fr auto;
}

.order-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.steps {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #888;
}

.step.is-done,
.step.is-current {
  color: var(--green-dark);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.step.is-current .step-num,
.step.is-done .step-num {
  background: var(--green);
  color: #fff;
}

.pay-options {
  display: grid;
  gap: 8px;
}

.pay-option {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}

.pay-option:has(input:checked) {
  border-color: var(--green);
  background: #f3f8ef;
}

.auth-wrap {
  max-width: 420px;
  margin: 28px auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
}

.auth-wrap h1 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
  text-align: center;
}

.auth-wrap h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 10px auto 0;
}

.auth-wrap > p {
  color: var(--muted);
  margin: 14px 0 16px;
  text-align: center;
}

.auth-links {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #666;
}

.auth-links a {
  color: var(--green-dark);
  font-weight: 700;
}

.check-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  margin: 8px 0 14px;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0 40px;
}

.contact-block {
  margin-bottom: 16px;
}

.contact-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.contact-block p,
.contact-block a {
  color: #555;
}

.faq-list {
  max-width: 760px;
  margin: 20px auto 40px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
}

.faq-item summary {
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 14px 14px;
  color: #555;
}

.success-box {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  background: transparent;
  border: none;
  padding: 20px 0;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}

.prose {
  max-width: 760px;
  margin: 20px auto 40px;
  background: transparent;
  border: none;
  padding: 0 12px;
  color: #555;
}

.blog-card {
  background: transparent;
  border: none;
  display: block;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
}

.success-box .icon-ok {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.success-box h1 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.prose {
  max-width: 760px;
  margin: 20px auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  color: #555;
}

.prose h2 {
  color: var(--green-deep);
  font-size: 16px;
  text-transform: uppercase;
  margin: 16px 0 8px;
}

.prose ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 10px;
}

.prose a {
  color: var(--green-dark);
  font-weight: 700;
}

.article-hero {
  max-width: 900px;
  margin: 16px auto;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 0 40px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  display: block;
}

.blog-card figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card time,
.blog-card h3 {
  display: block;
  padding: 0 12px;
}

.blog-card time {
  font-size: 12px;
  color: var(--muted);
  padding-top: 10px;
}

.blog-card h3 {
  font-size: 15px;
  padding-bottom: 14px;
  margin-top: 4px;
  color: #222;
}

.link-more {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 12px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  align-items: center;
}

.story-visual {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy h2 {
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.story-copy p {
  color: #555;
  margin-bottom: 10px;
}

.story-copy blockquote {
  border-left: 3px solid var(--green);
  padding-left: 12px;
  font-style: italic;
  color: #444;
  margin: 14px 0;
}

.cta-band {
  background: var(--green-deep);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  margin: 10px 0 20px;
}

.cta-band h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 14px;
}

.mt-1 {
  margin-top: 8px;
}

.text-center {
  text-align: center;
}

.empty {
  text-align: center;
  padding: 40px 16px;
  color: #777;
}

/* ——— Footer ——— */
.site-footer {
  background: #2a2a2a;
  color: #bbb;
  padding: 36px 0 16px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.footer-col h3,
.footer-brand .brand {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer-brand .brand {
  font-size: 20px;
  text-transform: lowercase;
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  margin-bottom: 8px;
  max-width: 28ch;
}

.footer-col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  color: #aaa;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #888;
}

.newsletter {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  border: 1px solid #555;
  background: #333;
  color: #fff;
  padding: 8px 10px;
  border-radius: 2px;
}

.newsletter .btn {
  background: var(--green);
  color: #fff;
  padding: 8px 12px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-panel {
  width: min(86vw, 320px);
  height: 100%;
  background: #fff;
  padding: 16px;
  overflow-y: auto;
}

.mobile-panel .brand {
  margin: 8px 0 16px;
}

.mobile-panel nav a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.mobile-close {
  float: right;
  font-size: 24px;
  color: #666;
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 36px;
  }
}

@media (max-width: 900px) {
  .product-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .cat-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .order-detail-grid,
  .pdp,
  .story,
  .split-2 {
    grid-template-columns: 1fr;
  }

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

  .hero-slider {
    height: clamp(240px, 56vw, 380px);
  }

  .cat-nav-inner > a,
  .cat-nav-inner > .has-sub {
    flex: none;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .header-utils .util-text {
    display: none;
  }

  .util-link {
    padding: 10px 12px;
  }

  .cart-row {
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
  }

  .cart-row .remove {
    grid-column: 3;
    grid-row: 1;
  }

  .cart-row .line-total {
    grid-column: 2 / 4;
    text-align: left;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .cat-section-title {
    font-size: 16px;
  }
}
