:root {
  --bg: #ffffff;
  --soft-bg: #eef2e7;
  --card: #ffffff;
  --text: #1f2a1f;
  --muted: #66705f;
  --accent: #6f8418;
  --accent-dark: #0b3b2e;
  --border: #dfe5d5;
  --sale: #d60033;
  --yellow: #e5c536;
  --blue: #45a8df;
  --pink: #d9465f;
  --danger: #c9341d;
  --shadow-sm: 0 8px 22px rgba(0,0,0,.08);
  --shadow-md: 0 18px 40px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 52px rgba(0,0,0,.16);
}

[data-theme="dark"] {
  --bg: #101713;
  --soft-bg: #172019;
  --card: #152018;
  --text: #f3f0e8;
  --muted: rgba(255,255,255,.68);
  --accent: #8fce8b;
  --accent-dark: #b9e7b6;
  --border: rgba(255,255,255,.12);
  --sale: #ec3a61;
  --yellow: #d7bc42;
  --blue: #4aaee8;
  --pink: #ec5f79;
  --danger: #d14a32;
  --shadow-sm: 0 8px 22px rgba(0,0,0,.22);
  --shadow-md: 0 18px 40px rgba(0,0,0,.28);
  --shadow-lg: 0 24px 52px rgba(0,0,0,.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Poppins, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(111,132,24,.35);
  outline-offset: 3px;
}

/* HEADER */

.shop-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .shop-header {
  background: rgba(21,32,24,.92);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.header-search {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr 48px;
  border: 1px solid var(--border);
  background: #f1f4ea;
  border-radius: 999px;
  overflow: hidden;
}

[data-theme="dark"] .header-search {
  background: rgba(255,255,255,.06);
}

.header-search input {
  border: 0;
  background: transparent;
  padding: 0 18px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.header-search input::placeholder {
  color: var(--muted);
}

.header-search button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--accent-dark);
  font-size: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}

.header-action:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-action small {
  color: var(--muted);
  font-weight: 500;
}

.action-icon {
  font-size: 22px;
  line-height: 1;
}

.cart-action strong {
  color: var(--accent-dark);
}

.theme-toggle {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: background .2s ease, transform .2s ease;
}

.theme-toggle:hover {
  background: rgba(111,132,24,.08);
  transform: translateY(-1px);
}

/* MENU */

.category-menu {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.menu-inner a {
  position: relative;
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.2;
  transition: color .2s ease;
}

.menu-inner a:last-child {
  text-transform: none;
}

.menu-inner a:hover,
.menu-inner a.is-active {
  color: var(--accent);
}

.menu-inner a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

/* MAIN */

.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 18px 0;
}

/* PREMIUM HOME 2026 */

.premium-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.slider-track {
  position: relative;
  min-height: 520px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.premium-hero-slide {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 78px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.premium-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,244,236,.96) 0%, rgba(246,244,236,.88) 42%, rgba(246,244,236,.38) 100%),
    radial-gradient(circle at 80% 30%, rgba(111,132,24,.25), transparent 34%);
  z-index: 1;
}

[data-theme="dark"] .premium-hero-slide::before {
  background:
    linear-gradient(90deg, rgba(16,23,19,.96) 0%, rgba(16,23,19,.86) 45%, rgba(16,23,19,.42) 100%),
    radial-gradient(circle at 80% 30%, rgba(143,206,139,.18), transparent 34%);
}

.hero-garden {
  background-image: url("/assets/img/banner-ogrod.jpg");
}

.hero-plants {
  background-image: url("/assets/img/banner-sadzonki.jpg");
}

.hero-fruits {
  background-image: url("/assets/img/banner-owoce.jpg");
}

.premium-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.premium-hero-content h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 780px;
}

.premium-hero-content p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.primary {
  background: var(--accent-dark);
  color: #fff;
}

.hero-btn.ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.64);
  color: var(--text);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .hero-btn.ghost {
  background: rgba(255,255,255,.08);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border: 0;
  background: rgba(255,255,255,.72);
  color: var(--accent-dark);
  width: 44px;
  height: 62px;
  border-radius: 999px;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

[data-theme="dark"] .slider-arrow {
  background: rgba(255,255,255,.10);
  color: var(--accent);
}

.slider-arrow.left {
  left: 18px;
}

.slider-arrow.right {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  display: flex;
  gap: 8px;
  z-index: 6;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(11,59,46,.30);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--pink);
}

.benefit-strip {
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.benefit-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.benefit-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.premium-promo-grid {
  margin: 28px auto 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-promo {
  min-height: 190px;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform .24s ease, box-shadow .24s ease;
}

.premium-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.24), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
}

.premium-promo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.premium-promo span,
.premium-promo strong,
.premium-promo small {
  position: relative;
  z-index: 2;
}

.premium-promo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .86;
}

.premium-promo strong {
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.premium-promo small {
  font-size: 14px;
  line-height: 1.45;
  opacity: .92;
}

.premium-promo.sale {
  background: linear-gradient(135deg, #d60033, #ef476f);
}

.premium-promo.green {
  background: linear-gradient(135deg, #5f7814, #8ba51d);
}

.premium-promo.yellow {
  background: linear-gradient(135deg, #d2a813, #efc94a);
}

.premium-promo.blue {
  background: linear-gradient(135deg, #248fc9, #55b7ec);
}

.premium-section {
  max-width: 1180px;
  margin: 0 auto 78px;
}

.premium-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.premium-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.premium-section-head a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.premium-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-category-card {
  aspect-ratio: 1 / 1.08;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--soft-bg);
  box-shadow: var(--shadow-md);
  transition: transform .28s ease, box-shadow .28s ease;
}

.premium-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.premium-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.premium-category-card:hover img {
  transform: scale(1.06);
}

.premium-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.42));
}

.premium-category-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  color: #102116;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .premium-category-card span {
  background: rgba(16,23,19,.82);
  color: var(--text);
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.premium-product-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.premium-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  background: var(--soft-bg);
  overflow: hidden;
}

.premium-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.premium-product-body {
  padding: 18px;
}

.premium-product-body h3 {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
}

.premium-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.premium-price-row strong {
  color: var(--accent);
  font-size: 19px;
}

.premium-price-row span {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}

.premium-cart-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.premium-cart-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.premium-blog-home {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 70px 18px;
  background:
    radial-gradient(circle at top left, rgba(111,132,24,.12), transparent 34%),
    var(--soft-bg);
}

.blog-head,
.premium-blog-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.premium-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-blog-card {
  border-radius: 30px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.premium-blog-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: var(--soft-bg);
}

.premium-blog-card div {
  padding: 22px;
}

.premium-blog-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.premium-blog-card h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.premium-blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.premium-newsletter {
  max-width: 1180px;
  margin: 72px auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(135deg, var(--accent-dark), #4f6515);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.premium-newsletter .section-kicker {
  color: rgba(255,255,255,.75);
}

.premium-newsletter h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.premium-newsletter p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.premium-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.premium-newsletter input {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
}

.premium-newsletter button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
  cursor: pointer;
}

/* PRODUCTS / OLD COMPATIBILITY */

.product-section {
  margin: 54px auto;
  max-width: 1060px;
  clear: both;
}

.classic-product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  background: transparent;
  min-width: 0;
}

.product-image {
  aspect-ratio: 1 / 1.25;
  background: #f4f4f4;
  overflow: hidden;
  margin-bottom: 12px;
}

[data-theme="dark"] .product-image {
  background: rgba(255,255,255,.06);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 0;
  min-height: 40px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.price {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.btn {
  border: 0;
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn.small {
  font-size: 11px;
  padding: 8px 10px;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.add-to-cart-form {
  margin: 0;
}

/* CATALOG */

.catalog-page {
  max-width: 1120px;
  margin: 0 auto 70px;
}

.catalog-head {
  margin: 18px 0 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 24px;
  align-items: end;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.catalog-head h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.catalog-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.catalog-search input,
.catalog-search select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  outline: none;
}

.catalog-toolbar {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.catalog-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.catalog-sort-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-sort-links a,
.pagination a {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.catalog-sort-links a {
  padding: 8px 12px;
  color: var(--muted);
}

.catalog-sort-links a.is-active,
.catalog-sort-links a:hover,
.pagination a.is-active,
.pagination a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.catalog-product-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.pagination {
  margin: 34px 0 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination a {
  min-width: 38px;
  height: 38px;
  padding: 0 13px;
}

/* CART */

.cart-page {
  max-width: 1120px;
  margin: 0 auto 70px;
}

.cart-head-summary {
  min-height: 110px;
  padding: 20px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  align-content: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.cart-head-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-head-summary strong {
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.cart-item-image {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--soft-bg);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-main h2 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.cart-item-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.cart-summary {
  position: sticky;
  top: 128px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.cart-summary h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.summary-row.muted {
  color: var(--muted);
}

.summary-total {
  margin-top: 6px;
  border-bottom: 0;
  font-size: 17px;
}

.summary-total strong {
  color: var(--accent-dark);
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  text-align: center;
}

.cart-continue {
  margin-top: 14px;
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

/* AUTH */

.auth-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 82px;
  padding: 36px 18px 0;
}

.auth-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.auth-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.auth-brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.auth-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 4% 0%, rgba(111,132,24,.12), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(11,59,46,.08), transparent 34%),
    var(--card);
  box-shadow: var(--shadow-lg);
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
}

.auth-panel {
  min-width: 0;
  padding: clamp(28px, 5vw, 56px);
  background: var(--card);
}

.auth-register-box {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.24), transparent 32%),
    linear-gradient(145deg, var(--accent-dark), #5f7814);
  color: #fff;
}

.auth-panel h1,
.auth-register-box h2,
.register-wrap h1,
.register-form h2,
.social-register h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.auth-panel h1 {
  color: var(--text);
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
}

.auth-register-box h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 16px;
}

.auth-lead {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.auth-register-box p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-size: 15px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 0 26px;
}

.social-row button {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 900;
  cursor: not-allowed;
  opacity: .72;
  box-shadow: var(--shadow-sm);
}

.auth-separator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}

.auth-form {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  gap: 16px;
}

.auth-form label,
.register-form label {
  display: grid;
  gap: 8px;
}

.auth-form label span,
.register-form label span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.auth-form input,
.register-form input,
.register-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fffef1;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

[data-theme="dark"] .auth-form input,
[data-theme="dark"] .register-form input,
[data-theme="dark"] .register-form select {
  background: rgba(255,255,255,.06);
}

.auth-form input:focus,
.register-form input:focus,
.register-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(111,132,24,.14);
}

.auth-form input::placeholder,
.register-form input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.auth-submit {
  width: 100%;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 17px;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(201,52,29,.18);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.auth-link {
  justify-self: center;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auth-link:hover {
  color: var(--accent);
}

.auth-register-benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.auth-register-benefits li {
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  font-size: 14px;
}

.auth-register-benefits li::before {
  content: "?";
  margin-right: 9px;
  color: #e5ffad;
  font-weight: 900;
}

.auth-green-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 17px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  transition: transform .2s ease, filter .2s ease;
}

.auth-green-btn:hover {
  transform: translateY(-1px);
  filter: brightness(.98);
}

.form-errors {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(214,0,51,.22);
  border-radius: 15px;
  background: rgba(214,0,51,.07);
  color: #b91c1c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.form-success {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(22,101,52,.22);
  border-radius: 15px;
  background: rgba(22,101,52,.08);
  color: #166534;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.auth-box-small {
  max-width: 640px;
  margin: 0 auto;
}

.auth-box-small .auth-grid {
  grid-template-columns: 1fr;
}

.auth-box-small .auth-panel h1 {
  text-align: left;
}

/* REGISTER */

.register-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.register-wrap > h1 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 26px;
}

.social-register {
  text-align: center;
  margin-bottom: 28px;
}

.social-register h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.social-register .social-row {
  max-width: 420px;
  margin: 0 auto 22px;
}

.social-register .social-row button {
  min-height: 38px;
  font-size: 14px;
}

.register-form {
  display: grid;
  gap: 13px;
}

.register-form h2 {
  text-align: center;
  font-size: 21px;
  margin: 22px 0 8px;
}

.customer-type-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  margin-bottom: 8px;
}

.customer-type-row > span {
  font-weight: 700;
}

.customer-type-row label {
  display: inline-flex;
  grid-template-columns: auto;
  align-items: center;
  gap: 5px;
}

.customer-type-row input {
  min-height: auto;
  width: auto;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.address {
  grid-template-columns: minmax(0, 1fr) 145px;
}

.company-fields {
  display: none;
}

.company-fields.is-visible {
  display: block;
}

.register-form small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.toggle-box {
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  border-radius: 12px;
}

.toggle-box label,
.agreements label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.45;
}

.toggle-box input,
.agreements input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 115px;
}

.password-field button {
  position: absolute;
  right: 8px;
  top: 32px;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.agreements {
  display: grid;
  gap: 8px;
  margin: 20px 0 10px;
}

.agreements a {
  text-decoration: underline;
}

.register-submit {
  width: 100%;
  justify-self: stretch;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .auth-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    padding: 30px 22px;
  }

  .auth-register-box {
    padding: 32px 22px;
  }

  .auth-green-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .auth-page {
    padding: 22px 14px 0;
  }

  .auth-brand {
    margin-bottom: 22px;
  }

  .auth-brand a {
    padding: 14px 18px;
    border-radius: 22px;
  }

  .auth-brand img {
    width: 132px;
  }

  .auth-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .auth-panel,
  .auth-register-box {
    padding: 26px 18px;
  }

  .auth-panel h1 {
    font-size: 32px;
  }

  .auth-register-box h2 {
    font-size: 30px;
  }

  .social-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid.two,
  .form-grid.address {
    grid-template-columns: 1fr;
  }

  .auth-form input,
  .register-form input,
  .register-form select {
    min-height: 50px;
  }

  .password-field input {
    padding-right: 18px;
  }

  .password-field button {
    position: static;
    justify-self: end;
    min-height: auto;
  }
}

.blog-section {
  margin-top: 70px;
  padding: 44px 0 50px;
  background: var(--soft-bg);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  clear: both;
}

.blog-section h2 {
  text-align: center;
  font-size: 28px;
  margin: 0 0 26px;
}

.blog-grid {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.blog-card h3 {
  padding: 14px;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.info-links {
  max-width: 760px;
  margin: 42px auto;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  color: var(--accent);
  font-weight: 700;
}

.seo-text {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
  line-height: 1.55;
}

.premium-seo {
  max-width: 920px;
  margin-top: 80px;
}

.seo-text h2 {
  font-size: 27px;
}

.seo-text h3 {
  font-size: 20px;
  margin-top: 26px;
}

.seo-text p {
  font-size: 13px;
  color: var(--text);
}

.shop-footer {
  background: var(--soft-bg);
  padding: 44px 18px 24px;
}

.footer-inner {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.footer-inner h3 {
  font-size: 14px;
  margin: 0 0 14px;
}

.footer-inner a {
  display: block;
  font-size: 12px;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-inner a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 940px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.product-page,
.section {
  max-width: 1060px;
  margin: 30px auto;
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 130px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-logo img {
    width: 120px;
  }

  .menu-inner {
    gap: 22px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .menu-inner a.is-active::after {
    bottom: -15px;
  }

  .classic-product-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .benefit-strip,
  .premium-promo-grid,
  .premium-category-grid,
  .premium-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-blog-grid,
  .premium-newsletter {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 860px) {
  .catalog-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .main {
    padding: 16px 14px 0;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-logo {
    justify-content: center;
  }

  .header-logo img {
    width: 112px;
  }

  .header-actions {
    justify-content: center;
    gap: 12px;
  }

  .header-action {
    font-size: 12px;
  }

  .category-menu {
    overflow-x: auto;
  }

  .menu-inner {
    height: auto;
    padding: 12px 18px;
    width: max-content;
  }

  .menu-inner a.is-active::after {
    display: none;
  }

  .premium-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .classic-product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .slider-arrow {
    width: 34px;
    height: 50px;
    font-size: 34px;
  }

  .slider-arrow.left {
    left: 8px;
  }

  .slider-arrow.right {
    right: 8px;
  }
}

@media (max-width: 640px) {
  .premium-hero,
  .premium-category-card,
  .premium-product-card,
  .premium-blog-card,
  .premium-newsletter {
    border-radius: 22px;
  }

  .premium-hero-slide {
    min-height: 500px;
    padding: 36px 24px;
  }

  .premium-hero-content h1 {
    font-size: 40px;
  }

  .benefit-strip,
  .premium-promo-grid,
  .premium-category-grid,
  .premium-product-grid,
  .premium-blog-grid {
    grid-template-columns: 1fr;
  }

  .premium-newsletter form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item-image {
    width: 72px;
  }

  .cart-remove-form {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .cart-remove-form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-search {
    height: 44px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}
/* CUSTOMER PANEL LIGHT / ZIELONE DRZEWKO */

.customer-panel-page {
  max-width: 1280px;
  margin: 44px auto 90px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  min-height: 640px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(111, 132, 24, .10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9f2 100%);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.customer-panel-sidebar {
  padding: 6px 26px 6px 0;
  border-right: 1px solid var(--border);
}

.customer-panel-hello {
  margin-bottom: 30px;
}

.customer-panel-hello span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 4px;
}

.customer-panel-hello strong {
  display: block;
  color: var(--accent-dark);
  font-size: 24px;
  line-height: 1.1;
}

.customer-panel-nav {
  display: grid;
  gap: 10px;
}

.customer-panel-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--text);
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.customer-panel-nav a:hover {
  background: var(--soft-bg);
  color: var(--accent-dark);
  transform: translateX(3px);
}

.customer-panel-nav a.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(111, 132, 24, .18);
}

.customer-panel-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 16px;
  line-height: 1;
}

.customer-panel-nav a.is-active .customer-panel-icon {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.customer-panel-user-card {
  margin-top: 34px;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
}

.customer-panel-user-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.customer-panel-user-card strong {
  display: block;
  color: var(--accent-dark);
  font-size: 15px;
  line-height: 1.35;
}

.customer-panel-user-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  word-break: break-word;
}

.customer-panel-content {
  display: grid;
  gap: 34px;
  padding-left: 10px;
}

.customer-panel-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.customer-panel-section h1,
.customer-panel-section h2,
.customer-panel-section h3 {
  margin: 0;
  color: var(--accent-dark);
  letter-spacing: -.035em;
}

.customer-panel-section h1 {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 64px;
}

.customer-panel-section h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 12px;
}

.customer-panel-section h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
}

.customer-panel-section p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.customer-panel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 900;
}

.customer-panel-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.customer-panel-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.illustration-orbit {
  width: 150px;
  height: 150px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(111, 132, 24, .42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 132, 24, .08), transparent 65%);
}

.illustration-orbit::before,
.illustration-orbit::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(111, 132, 24, .22);
  border-radius: 50%;
  transform: rotate(18deg);
}

.illustration-orbit::after {
  inset: 28px;
  transform: rotate(-20deg);
}

.illustration-orbit strong {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: #fff;
  font-size: 24px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.illustration-orbit span {
  position: absolute;
  z-index: 3;
  font-size: 22px;
}

.illustration-orbit span:nth-child(1) {
  left: -18px;
  top: 58px;
}

.illustration-orbit span:nth-child(2) {
  right: -18px;
  bottom: 34px;
}

.illustration-orbit span:nth-child(3) {
  right: -4px;
  top: -10px;
}

.customer-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.customer-panel-card {
  min-height: 160px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.customer-panel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #fbfcf7;
}

.customer-panel-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.customer-panel-card strong {
  display: block;
  color: var(--accent-dark);
  font-size: 26px;
  line-height: 1.1;
}

.customer-panel-card p {
  min-height: 42px;
  margin: 12px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.customer-panel-card a {
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}

.customer-panel-card a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.customer-panel-help {
  margin-top: 4px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(111, 132, 24, .10), transparent 35%),
    var(--soft-bg);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.customer-panel-help h2 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 26px;
}

.customer-panel-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.customer-panel-help a {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.customer-panel-help a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.customer-panel-chat {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
  border: 1px solid var(--border);
  z-index: 40;
}

.customer-panel-chat:hover {
  background: var(--soft-bg);
}

@media (max-width: 1100px) {
  .customer-panel-page {
    grid-template-columns: 1fr;
  }

  .customer-panel-sidebar {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .customer-panel-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-panel-content {
    padding-left: 0;
  }

  .customer-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-panel-section h1 {
    margin-bottom: 26px;
  }
}

@media (max-width: 760px) {
  .customer-panel-page {
    margin: 24px auto 70px;
    padding: 22px 16px;
    border-radius: 24px;
  }

  .customer-panel-nav,
  .customer-panel-grid {
    grid-template-columns: 1fr;
  }

  .customer-panel-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px 18px;
  }

  .customer-panel-illustration {
    display: none;
  }

  .customer-panel-help {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-panel-chat {
    right: 18px;
    bottom: 18px;
  }
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
}

.cookie-actions button:first-child {
  background: var(--soft-bg);
  color: var(--text);
}

.cookie-actions button:last-child {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}
.cart-premium-page,
.checkout-page {
  max-width: 1320px;
  margin: 46px auto 90px;
  padding: 0 22px;
}

.cart-premium-head,
.checkout-head {
  margin-bottom: 26px;
  padding: 28px;
  border-radius: 28px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cart-premium-head h1,
.checkout-head h1 {
  margin: 6px 0 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  letter-spacing: -.05em;
}

.cart-premium-head p,
.checkout-head p {
  margin: 0;
  color: var(--muted);
}

.cart-premium-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: start;
}

.cart-premium-list {
  display: grid;
  gap: 16px;
}

.cart-premium-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cart-premium-img {
  width: 140px;
  height: 120px;
  border-radius: 22px;
  background: var(--soft-bg);
  overflow: hidden;
}

.cart-premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-premium-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cart-premium-info h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.cart-premium-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cart-premium-meta small {
  display: block;
  color: var(--muted);
  margin-bottom: 3px;
}

.cart-premium-meta strong {
  color: var(--dark);
}

.cart-premium-remove button {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  font-weight: 900;
}

.cart-premium-summary,
.checkout-summary,
.checkout-card {
  padding: 26px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cart-premium-summary {
  position: sticky;
  top: 24px;
}

.cart-premium-summary h2,
.checkout-summary h2,
.checkout-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.summary-premium-row,
.summary-premium-total,
.checkout-total-row,
.checkout-product-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.summary-premium-total {
  border-bottom: 0;
  margin-top: 6px;
  font-size: 19px;
}

.summary-premium-total strong {
  color: var(--dark);
  font-size: 24px;
}

.cart-checkout-premium,
.checkout-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
}

.cart-trust-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: var(--soft-bg);
  color: var(--muted);
}

.cart-trust-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.cart-trust-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-card {
  display: grid;
  gap: 20px;
}

.checkout-grid {
  display: grid;
  gap: 16px;
}

.checkout-grid.two,
.checkout-grid.address {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-card label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--text);
}

.checkout-card input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  font: inherit;
}

.delivery-options {
  display: grid;
  gap: 10px;
}

.delivery-option {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--soft-bg);
  cursor: pointer;
}

.delivery-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.delivery-option span {
  display: grid;
  gap: 3px;
}

.delivery-option small {
  color: var(--muted);
}

.checkout-legal {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cart-empty-premium {
  padding: 42px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .cart-premium-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-premium-summary {
    position: static;
  }

  .cart-premium-item {
    grid-template-columns: 110px 1fr;
  }

  .cart-premium-remove {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cart-premium-head,
  .checkout-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-premium-item {
    grid-template-columns: 1fr;
  }

  .cart-premium-img {
    width: 100%;
    height: 220px;
  }

  .checkout-grid.two,
  .checkout-grid.address {
    grid-template-columns: 1fr;
  }
}
.customer-dashboard-page {
  max-width: 1320px;
  margin: 46px auto 90px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
}

.customer-dashboard-sidebar,
.customer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.customer-dashboard-sidebar {
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 24px;
}

.customer-hello {
  margin-bottom: 24px;
}

.customer-hello span {
  display: block;
  color: var(--muted);
}

.customer-hello strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  color: var(--text);
}

.customer-nav {
  display: grid;
  gap: 10px;
}

.customer-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--text);
  background: var(--soft-bg);
}

.customer-nav a.is-active,
.customer-nav a:hover {
  background: var(--accent);
  color: #fff;
}

.customer-dashboard-content {
  display: grid;
  gap: 22px;
}

.customer-card {
  padding: 26px;
}

.customer-hero-card h1 {
  margin: 6px 0 8px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.05em;
}

.customer-hero-card p {
  margin: 0;
  color: var(--muted);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.customer-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.customer-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.customer-card p {
  margin: 5px 0;
  color: var(--muted);
}

.customer-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.customer-section-head h2 {
  margin: 0;
  font-size: 30px;
}

.customer-empty {
  padding: 28px;
  border-radius: 22px;
  background: var(--soft-bg);
}

.customer-empty h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.customer-empty p {
  margin: 0;
  color: var(--muted);
}

.customer-orders-list {
  display: grid;
  gap: 12px;
}

.customer-order-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
}

.customer-order-row span,
.customer-order-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.customer-order-row strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .customer-dashboard-page {
    grid-template-columns: 1fr;
  }

  .customer-dashboard-sidebar {
    position: static;
  }

  .customer-grid,
  .customer-order-row {
    grid-template-columns: 1fr;
  }

  .customer-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.checkout-success-page {
  max-width: 1120px;
  margin: 46px auto 90px;
  padding: 0 22px;
}

.checkout-success-card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.checkout-success-card h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .95;
  letter-spacing: -.055em;
}

.checkout-success-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.checkout-success-number {
  margin: 24px 0;
  padding: 22px;
  border-radius: 24px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
}

.checkout-success-number span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.checkout-success-number strong {
  display: block;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 34px);
}

.checkout-success-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.checkout-success-grid div {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
}

.checkout-success-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.checkout-success-grid strong {
  color: var(--text);
}

.checkout-success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.checkout-grand-total strong {
  color: var(--dark);
  font-size: 22px;
}

.customer-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.customer-summary-line:last-child {
  border-bottom: 0;
}

.customer-summary-total {
  font-size: 20px;
}

.customer-summary-total strong {
  color: var(--dark);
  font-size: 24px;
}

@media (max-width: 760px) {
  .checkout-success-grid {
    grid-template-columns: 1fr;
  }
}
.wishlist-page {
  max-width: 1320px;
  margin: 46px auto 90px;
  padding: 0 22px;
}

.wishlist-add-form,
.wishlist-remove-form {
  margin-top: 10px;
}

.product-bottom {
  gap: 10px;
  flex-wrap: wrap;
}
.home-top-banner {
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255,255,245,.95) 0%, rgba(220,255,180,.74) 58%, rgba(190,235,105,.80) 100%),
    url('/assets/img/home-green-bg.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.home-top-banner-inner {
  max-width: 1180px;
  width: 100%;
  padding: 58px 24px;
  text-align: center;
}

.home-top-banner span {
  display: block;
  margin-bottom: 8px;
  color: #4a3527;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
}

.home-top-banner h1 {
  margin: 0;
  color: #43a537;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}

.spring-announcement {
  max-width: 1180px;
  margin: 74px auto 76px;
  padding: 0 22px;
}

.spring-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dfe5d5;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.spring-card-content {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spring-card-content span {
  display: block;
  color: #4a3527;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 900;
}

.spring-card-content h2 {
  margin: 4px 0 28px;
  color: #49a83d;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.04em;
}

.spring-card-content p {
  margin: 0 0 18px;
  color: #707766;
  font-size: 15px;
  line-height: 1.75;
}

.spring-card-content p strong {
  color: #30382d;
}

.spring-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.spring-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #54aa3f;
  color: #fff;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease;
}

.spring-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.spring-link {
  display: inline-flex;
  margin-top: 22px;
  color: #43a537;
  font-weight: 900;
}

.spring-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.spring-card-image {
  min-height: 430px;
  background: #eef5e8;
}

.spring-card-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .spring-card {
    grid-template-columns: 1fr;
  }

  .spring-card-image {
    order: -1;
    min-height: 280px;
  }

  .spring-card-image img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .home-top-banner {
    min-height: 220px;
  }

  .home-top-banner-inner {
    padding: 44px 18px;
  }

  .spring-announcement {
    margin: 42px auto 54px;
    padding: 0 16px;
  }

  .spring-card {
    border-radius: 20px;
  }

  .spring-card-content {
    padding: 24px;
  }

  .spring-pill {
    width: 100%;
  }
}
.home-feature-grid,
.home-promo-square-grid {
  max-width: 1320px;
  margin: 34px auto;
  padding: 0 22px;
  display: grid;
  gap: 22px;
}

.home-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-feature-card {
  aspect-ratio: 1 / 1;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,244,.96));
  border: 1px solid #dfe8d5;
  box-shadow: 0 18px 38px rgba(11,59,46,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(11,59,46,.13);
  border-color: rgba(111,132,24,.35);
}

.home-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef5e8;
  border: 1px solid #dce8d2;
  font-size: 28px;
}

.home-feature-card strong {
  display: block;
  margin-top: auto;
  color: #162116;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.home-feature-card p {
  margin: 12px 0 0;
  color: #68705f;
  font-size: 15px;
  line-height: 1.65;
}

.home-promo-square-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  margin-bottom: 58px;
}

.home-promo-square {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  color: #fff;
  box-shadow: 0 24px 58px rgba(11,59,46,.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.home-promo-square:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 34px 76px rgba(11,59,46,.22);
  filter: saturate(1.05);
}

.home-promo-square::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .98;
}

.home-promo-square::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -42px;
  top: -42px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  box-shadow:
    -110px 130px 0 rgba(255,255,255,.08),
    -28px 248px 0 rgba(255,255,255,.10);
}

.home-promo-square span {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-promo-square strong {
  display: block;
  max-width: 92%;
  color: #fff;
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: .95;
  letter-spacing: -.055em;
}

.home-promo-square small {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 700;
}

.home-promo-square em {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
}

.promo-sale::before {
  background: linear-gradient(135deg, #d9154f 0%, #f05a7c 100%);
}

.promo-new::before {
  background: linear-gradient(135deg, #5f7d12 0%, #9fb341 100%);
}

.promo-garden::before {
  background: linear-gradient(135deg, #d9a414 0%, #f2d24b 100%);
}

.promo-top::before {
  background: linear-gradient(135deg, #1d8ebc 0%, #6bc7eb 100%);
}

@media (max-width: 1100px) {
  .home-feature-grid,
  .home-promo-square-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-feature-grid,
  .home-promo-square-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .home-feature-card,
  .home-promo-square {
    aspect-ratio: auto;
    min-height: 250px;
  }
}
.premium-product-page {
  max-width: 1320px;
  margin: 34px auto 90px;
  padding: 0 22px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: #68705f;
  font-size: 13px;
}

.product-breadcrumbs a {
  color: #0b3b2e;
  font-weight: 800;
}

.product-breadcrumbs strong {
  color: #162116;
}

.premium-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 34px;
  align-items: start;
}

.product-gallery-premium,
.product-buy-panel,
.product-description-premium,
.product-info-premium {
  background: #fff;
  border: 1px solid #dfe5d5;
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(11, 59, 46, .10);
}

.product-gallery-premium {
  padding: 20px;
}

.product-main-image {
  aspect-ratio: 1 / .82;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f6ef;
  display: grid;
  place-items: center;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.product-thumb {
  aspect-ratio: 1 / 1;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f4f6ef;
  cursor: pointer;
  overflow: hidden;
}

.product-thumb.is-active {
  border-color: #6f8418;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-buy-panel {
  padding: clamp(24px, 3vw, 34px);
  position: sticky;
  top: 24px;
}

.product-category-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef5e8;
  color: #6f8418;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-buy-panel h1 {
  margin: 0;
  color: #162116;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.055em;
}

.product-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  color: #68705f;
  font-size: 13px;
}

.product-meta-line strong {
  color: #0b3b2e;
}

.product-lead {
  margin: 18px 0 0;
  color: #4e584a;
  font-size: 17px;
  line-height: 1.7;
}

.product-price-box {
  margin: 24px 0;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9f2 0%, #eef5e8 100%);
  border: 1px solid #dfe5d5;
}

.product-price-box span {
  display: block;
  margin-bottom: 4px;
  color: #68705f;
  font-size: 13px;
  font-weight: 900;
}

.product-price-box strong {
  display: inline-block;
  color: #0b3b2e;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.045em;
}

.product-price-box del {
  margin-left: 10px;
  color: #9a4b38;
  font-weight: 800;
}

.product-price-box small {
  display: block;
  margin-top: 8px;
  color: #68705f;
}

.product-actions-box {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}

.product-actions-box label {
  display: grid;
  gap: 6px;
  color: #162116;
  font-size: 13px;
  font-weight: 900;
}

.product-actions-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid #dfe5d5;
  border-radius: 14px;
  font: inherit;
}

.product-cart-button {
  align-self: end;
  min-height: 50px;
  border: 0;
  border-radius: 16px;
  background: #6f8418;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.product-cart-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.product-wishlist-form {
  margin-top: 12px;
}

.product-wishlist-form button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid #dfe5d5;
  background: #fff;
  color: #0b3b2e;
  font-weight: 900;
  cursor: pointer;
}

.product-service-box {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.product-service-box div {
  padding: 15px;
  border-radius: 18px;
  background: #f7f9f2;
  border: 1px solid #dfe5d5;
}

.product-service-box strong {
  display: block;
  color: #162116;
  margin-bottom: 4px;
}

.product-service-box span {
  color: #68705f;
  font-size: 13px;
  line-height: 1.5;
}

.product-tabs-premium {
  margin-top: 42px;
}

.product-tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  border-bottom: 1px solid #dfe5d5;
  padding-bottom: 12px;
}

.product-tabs-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f4f6ef;
  color: #0b3b2e;
  font-weight: 900;
}

.product-description-premium,
.product-info-premium {
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 22px;
  color: #4e584a;
  line-height: 1.8;
}

.product-description-premium h2,
.product-info-premium h2 {
  margin: 0 0 16px;
  color: #162116;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

@media (max-width: 1050px) {
  .premium-product-layout {
    grid-template-columns: 1fr;
  }

  .product-buy-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .premium-product-page {
    padding: 0 16px;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-actions-box {
    grid-template-columns: 1fr;
  }
}