:root {
  --ink: #070908;
  --ink-soft: #111512;
  --surface: #f4f5f2;
  --paper: #fbfcf9;
  --white: #ffffff;
  --green: #47ed91;
  --green-bright: #68f5a7;
  --green-dark: #087a43;
  --emerald: #063b24;
  --green-wash: #dffbea;
  --gold: #cdbb8b;
  --ink-green-gradient: linear-gradient(118deg, #030403 0%, #07180f 48%, #030403 100%);
  --ink-green-gradient-soft: linear-gradient(118deg, #0d110e 0%, #0a1d12 50%, #101411 100%);
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(7, 9, 8, 0.14);
  --muted-dark: #a8ada9;
  --muted-light: #68706a;
  --shell: min(1360px, calc(100vw - 96px));
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --rounded: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink-green-gradient);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--rounded);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #31d97c, var(--green-bright) 52%, #31d97c);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 20px;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 24px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.announcement p {
  margin: 0;
}

.announcement a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: linear-gradient(108deg, rgba(7, 9, 8, 0.94) 0%, rgba(7, 30, 18, 0.9) 52%, rgba(7, 9, 8, 0.94) 100%);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--ink);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.brand-mark img {
  position: absolute;
  top: 0;
  left: 24%;
  width: 226%;
  max-width: none;
  height: auto;
  clip-path: inset(0 74% 0 0);
  filter: invert(1);
}

.brand-type {
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}

.brand-type strong {
  color: var(--white);
  font-size: 1.04rem;
  letter-spacing: 0.2em;
  transition: color 220ms ease, letter-spacing 220ms ease;
}

.brand-type small {
  color: var(--muted-dark);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  transition: color 220ms ease, letter-spacing 220ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px) scale(1.025);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(71, 237, 145, 0.08), 0 0 24px rgba(71, 237, 145, 0.18);
  transform: scale(1.035);
}

.brand:hover .brand-type strong,
.brand:focus-visible .brand-type strong {
  color: var(--white);
  letter-spacing: 0.215em;
}

.brand:hover .brand-type small,
.brand:focus-visible .brand-type small {
  color: var(--white);
  letter-spacing: 0.32em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: #c5c9c6;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 180ms ease, letter-spacing 180ms ease, transform 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -11px;
  height: 1px;
  background: var(--green);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.desktop-nav .nav-feature-link:hover,
.desktop-nav .nav-feature-link:focus-visible {
  color: var(--green);
  letter-spacing: 0.012em;
  transform: translateY(-1px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.icon-button svg,
.cart-link svg,
.trust-grid svg,
.search-field svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.icon-button svg {
  width: 21px;
}

.icon-button:hover {
  color: var(--green);
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(71, 237, 145, 0.35);
  border-radius: 0;
  background: rgba(71, 237, 145, 0.05);
  font-size: 0.875rem;
  font-weight: 600;
}

.cart-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.cart-link svg {
  width: 20px;
}

.cart-count {
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  margin-left: 1px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  position: relative;
  display: none;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(4px);
}

.menu-toggle:hover {
  color: var(--green);
}

.menu-toggle:hover span:first-child {
  transform: translateY(-5px);
}

.menu-toggle:hover span:nth-child(2) {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink-green-gradient);
}

.hero-slides {
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 680px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(2.5%);
  transition: opacity 650ms ease, transform 850ms cubic-bezier(.2,.7,.2,1);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-shell {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
  padding-block: 52px 82px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 33px;
  height: 1px;
  background: currentColor;
}

.hero-slide h1,
.section-heading h2,
.expert-copy h2 {
  margin: 0;
  font-family: var(--rounded);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-slide h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 5.5vw, 5.9rem);
}

.hero-slide h1 em {
  color: var(--green);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #b9bfba;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.text-link span {
  color: var(--green);
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -2px);
}

.hero-slide-light .text-link:hover,
.hero-slide-light .text-link:focus-visible {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.slide-art {
  position: relative;
  height: 550px;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  overflow: hidden;
}

.slide-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}

.hero-slide.is-active .slide-art img {
  transform: scale(1.035);
}

.slide-label {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 24px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.slide-art > p {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 20px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.25;
  text-align: right;
}

.slide-art-mounir::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.32));
}

.slide-art-mounir > p {
  color: var(--white);
}

.hero-slide-light {
  background: #f2f1ed;
  color: var(--ink);
}

.hero-slide-light .eyebrow,
.hero-slide-light h1 em {
  color: var(--green-dark);
}

.hero-slide-light .hero-lead {
  color: #4f5751;
}

.hero-slide-light .text-link span {
  color: var(--green-dark);
}

.hero-slide-dark {
  background: var(--ink);
}

.hero-slide-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(71, 237, 145, 0.2) 0%, rgba(24, 108, 61, 0.12) 28%, transparent 66%),
    radial-gradient(ellipse at 18% 18%, rgba(71, 237, 145, 0.08), transparent 48%),
    linear-gradient(112deg, #030403 0%, #07180f 48%, #030403 100%);
}

.slide-art-catala {
  display: grid;
  place-items: center;
  background: var(--paper);
}

.slide-art-catala img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  padding: 55px 60px 35px;
  mix-blend-mode: multiply;
}

.slide-art-catala .slide-label {
  color: var(--green-dark);
}

.slide-art-catala > p {
  color: var(--ink);
}

.catala-word {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 50%;
  color: #d8f8e5;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -.06em;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero-slide-green {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.slide-shell-centered {
  grid-template-columns: 1fr;
}

.slide-shell-centered .hero-copy {
  max-width: 900px;
}

.hero-slide-green .eyebrow {
  color: var(--green-dark);
}

.hero-slide-green h1 {
  color: var(--green-dark);
}

.hero-slide-green h1 em,
.hero-slide-green .hero-lead {
  color: var(--ink);
}

.hero-slide-green h1 {
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}

.hero-signature {
  display: none;
}

.slider-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-dots,
.slider-arrows {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.slider-dots {
  gap: 10px;
}

.slider-dots button {
  width: 48px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-dots span {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.32);
}

.slider-dots button.is-active span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform-origin: left;
  animation: slider-progress 6.5s linear;
}

.slider-arrows {
  gap: 8px;
}

.slider-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.05rem;
}

.hero-slider[data-theme="light"] .slider-controls,
.hero-slider[data-theme="green"] .slider-controls {
  color: var(--ink);
}

.hero-slider[data-theme="light"] .slider-dots span,
.hero-slider[data-theme="green"] .slider-dots span {
  background: rgba(7,9,8,.25);
}

@keyframes slider-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.trust-strip {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-green-gradient-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 116px;
  padding: 25px 34px;
  border-right: 1px solid var(--line-dark);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.trust-grid svg {
  flex: 0 0 31px;
  width: 31px;
  color: var(--green);
}

.trust-grid p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.trust-grid strong {
  font-size: 0.85rem;
}

.trust-grid span {
  color: #7f8781;
  font-size: 0.72rem;
}

.catalog-section {
  position: relative;
  isolation: isolate;
  padding-block: 110px 126px;
  color: var(--ink);
}

.catalog-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: var(--paper);
  transform: translateX(-50%);
}

.catalog-heading .eyebrow {
  color: var(--green-dark);
}

.catalog-heading > p {
  color: var(--muted-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.expert-copy h2 {
  font-size: clamp(2.7rem, 4.3vw, 4.7rem);
}

.section-heading > p {
  max-width: 480px;
  justify-self: end;
  margin: 0 0 6px;
  color: var(--muted-dark);
  font-size: 0.93rem;
  line-height: 1.75;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 60px;
}

.search-field {
  flex: 0 0 min(360px, 32vw);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.search-field:focus-within {
  border-color: var(--green);
}

.search-field svg {
  width: 19px;
  color: #727972;
}

.search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
}

.search-field input::placeholder {
  color: #777d78;
}

.category-scroller {
  min-width: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar {
  display: none;
}

.category-chip {
  min-height: 52px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: #555c56;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 600;
}

.category-chip:hover,
.category-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-status {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  border-top: 1px solid var(--line-light);
}

.catalog-status p {
  margin: 0;
  color: #687069;
  font-size: 0.78rem;
}

.catalog-status strong {
  color: #454b46;
  font-weight: 500;
}

.sort-button {
  border: 0;
  background: transparent;
  color: #343935;
  cursor: pointer;
  font-size: 0.78rem;
}

.sort-button span {
  margin-left: 5px;
  color: var(--green);
}

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

.product-card {
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 0.86;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f0f0ec;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-actions {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  left: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-actions {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.product-actions::after {
  content: "→";
  margin-left: 9px;
  transition: transform 180ms ease;
}

.product-actions:hover,
.product-media:hover .product-actions {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(7, 9, 8, 0.16);
}

.product-media:hover .product-actions::after {
  transform: translateX(4px);
}

.product-info {
  padding: 17px 2px 0;
}

.product-category {
  margin: 0 0 7px;
  color: var(--green-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 46px;
  margin: 0;
  font-family: var(--rounded);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #636a64;
  font-size: 0.8rem;
}

.product-meta strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.product-meta .out-of-stock {
  color: #8c928d;
  font-size: 0.68rem;
}

.product-add {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.product-add:hover,
.product-add:focus-visible,
.product-add.is-added { color: var(--green-dark); transform: translateY(-1px); }

.product-skeleton {
  aspect-ratio: 0.68;
  background: linear-gradient(110deg, #ecece7 25%, #f7f7f3 40%, #ecece7 55%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite linear;
}

@keyframes shimmer {
  to { background-position-x: -200%; }
}

.empty-products {
  grid-column: 1 / -1;
  min-height: 250px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  color: #626963;
  text-align: center;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 58px;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.needs-section {
  padding-block: 112px 124px;
  background: var(--white);
  color: var(--ink);
}

.eyebrow-dark {
  color: var(--ink);
}

.needs-heading > p {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 65px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.needs-grid a {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 8px 20px;
  padding: 32px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.needs-grid a:hover {
  background: linear-gradient(135deg, var(--ink) 12%, #08311e 100%);
  color: var(--white);
}

.needs-grid a > span {
  grid-row: 1 / 3;
  align-self: start;
  color: rgba(7, 9, 8, 0.55);
  font-size: 0.73rem;
  font-weight: 700;
}

.needs-grid a:hover > span {
  color: var(--green);
}

.needs-grid strong {
  font-family: var(--rounded);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
}

.needs-grid small {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.needs-grid a:hover small {
  color: var(--green);
}

.needs-grid i {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: end;
  font-size: 1.25rem;
  font-style: normal;
}

.expert-section {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.7fr;
  align-items: center;
  gap: 64px;
  padding-block: 115px;
  color: var(--ink);
}

.expert-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #f2f1ed;
  transform: translateX(-50%);
}

.expert-number {
  align-self: start;
  color: var(--ink);
  font-family: var(--rounded);
  font-size: clamp(5.5rem, 9vw, 9rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.expert-number span {
  font-size: 0.38em;
  vertical-align: top;
}

.expert-copy .eyebrow {
  color: var(--ink);
}

.expert-copy h2 {
  color: var(--green-dark);
  font-family: var(--rounded);
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.expert-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 27px 0 34px;
  color: #5f665f;
  line-height: 1.8;
}

.expert-copy .button-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(7, 9, 8, 0.16);
}

.expert-section blockquote {
  position: relative;
  align-self: end;
  margin: 0;
  padding: 66px 34px 34px;
  border: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 237, 145, 0.16), transparent 42%),
    var(--ink-green-gradient);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(7, 9, 8, 0.12);
}

.expert-section blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 28px;
  color: var(--green);
  font-family: var(--rounded);
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.expert-section blockquote p {
  margin: 0;
  font-family: var(--rounded);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.expert-section cite {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer {
  background:
    radial-gradient(ellipse at 78% 12%, rgba(71, 237, 145, 0.11), transparent 42%),
    var(--ink-green-gradient);
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 42px;
  padding-block: 76px 65px;
}

.brand-footer {
  margin-bottom: 21px;
}

.footer-brand p,
.footer-top > div > p {
  max-width: 340px;
  margin: 0;
  color: #a8afa9;
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-top h3 {
  margin: 4px 0 24px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-top > div:not(.footer-brand) > a:not(.phone-cta),
.footer-settings-link {
  color: #c0c5c1;
  font-size: 0.88rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-top > div:not(.footer-brand) > a:not(.phone-cta):hover,
.footer-settings-link:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.phone-cta {
  position: relative;
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 5px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(71, 237, 145, 0.68);
  background: rgba(71, 237, 145, 0.06);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.phone-cta__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(71, 237, 145, 0.12);
}

.phone-cta__pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(71, 237, 145, 0.62);
  border-radius: 50%;
  animation: phone-pulse 1.8s ease-out infinite;
}

.phone-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.phone-cta__copy small {
  color: #8e9690;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.phone-cta__copy strong {
  font-family: var(--rounded);
  font-size: 0.9rem;
  font-weight: 700;
}

.phone-cta__arrow {
  color: var(--green);
  font-size: 1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.phone-cta:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(71, 237, 145, 0.14);
}

.phone-cta:hover .phone-cta__copy small,
.phone-cta:hover .phone-cta__arrow {
  color: var(--ink);
}

.phone-cta:hover .phone-cta__arrow {
  transform: translate(2px, -2px);
}

.social-links {
  width: 100%;
  display: grid !important;
  gap: 9px !important;
  margin-top: 7px;
}

.social-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icon {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--green);
  font-family: var(--rounded);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1;
}

.social-button__name { flex: 1; }

.social-button b {
  color: var(--green);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.social-button:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
  transform: translateX(3px);
}

.social-button:hover .social-icon,
.social-button:hover b {
  color: var(--ink);
}

.social-button:hover b {
  transform: translate(2px, -2px);
}

.studio-hours {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.04);
  color: #bac2bb;
  font-size: 0.92rem;
  line-height: 1.55;
}

.studio-hours strong { color: var(--white); font-size: 0.98rem; }

.has-dialog-open { overflow: hidden; }

.advice-modal[hidden] { display: none; }

.advice-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.advice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 5, 0.72);
  backdrop-filter: blur(7px);
}

.advice-modal__card {
  position: relative;
  width: min(100%, 580px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(71, 237, 145, 0.72);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.advice-modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.advice-modal h2 { margin: 15px 0 10px; color: var(--ink); font-size: clamp(1.8rem, 4vw, 2.55rem); line-height: 1.08; }
.advice-modal > .advice-modal__card > p { max-width: 470px; margin: 0 0 25px; color: #4f5a51; line-height: 1.6; }
.advice-modal textarea { min-height: 132px; resize: vertical; }
.advice-modal__privacy { margin: 12px 0 21px; color: #617066; font-size: 0.78rem; line-height: 1.5; }
.advice-modal__privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.consumer-link {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.consumer-link strong { color: var(--green); font-size: 0.78rem; letter-spacing: 0.08em; }
.consumer-link small { color: #c7cec9; font-size: 0.7rem; line-height: 1.35; }
.consumer-link:hover { border-color: var(--green); background: var(--green); color: var(--ink); transform: translateX(3px); }
.consumer-link:hover strong, .consumer-link:hover small { color: var(--ink); }

@keyframes phone-pulse {
  0% { opacity: .8; transform: scale(.75); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: #697069;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.payment-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.payment-marks > small {
  margin-right: 3px;
  color: #8f978f;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.payment-mark {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.payment-netopia { color: var(--green); }
.payment-visa { color: #d8e5ff; font-style: italic; }
.payment-mastercard { color: #ffe0a7; font-size: 0.56rem; letter-spacing: -0.02em; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.footer-legal-links a {
  color: #8d948e;
  transition: color 180ms ease;
}

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

@media (max-width: 1120px) {
  :root { --shell: min(100% - 54px, 1360px); }
  .desktop-nav { gap: 22px; }
  .slide-shell { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 44px; }
  .slide-art { height: 510px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .expert-section { grid-template-columns: .35fr 1fr; }
  .expert-section blockquote { grid-column: 2; max-width: 620px; }
}

@media (min-width: 961px) and (max-width: 1280px) {
  :root { --shell: min(100% - 52px, 1360px); }
  .nav-shell { grid-template-columns: auto 1fr auto; column-gap: 24px; }
  .brand-type small { display: none; }
  .desktop-nav { justify-self: center; gap: 18px; }
  .desktop-nav a { font-size: .8rem; }
  .slide-shell { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 34px; }
  .hero-slide h1 { font-size: clamp(3rem, 5.1vw, 4.55rem); }
  .slide-art { height: 470px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 38px, 1360px); }
  .announcement { justify-content: space-between; }
  .desktop-nav, .search-toggle { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .mobile-menu {
    position: fixed;
    inset: 84px 0 auto;
    height: calc(100svh - 84px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px;
    background:
      radial-gradient(circle at 82% 18%, rgba(71, 237, 145, 0.14), transparent 38%),
      rgba(7, 9, 8, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 19px 5px; border-bottom: 1px solid var(--line-dark); font-family: var(--rounded); font-size: 1.55rem; font-weight: 700; }
  .mobile-menu .nav-feature-link { transition: color 180ms ease, padding-left 180ms ease; }
  .mobile-menu .nav-feature-link:hover, .mobile-menu .nav-feature-link:focus-visible { padding-left: 12px; color: var(--green); }
  .hero-slider, .hero-slides, .hero-slide { min-height: 850px; }
  .slide-shell { min-height: 850px; grid-template-columns: 1fr; align-content: center; gap: 34px; padding-block: 52px 90px; }
  .hero-copy { max-width: 720px; }
  .hero-slide h1 { max-width: 700px; }
  .slide-art { width: min(100%, 720px); height: 385px; justify-self: start; }
  .slide-art-catala img { padding: 32px 48px 20px; }
  .slide-shell-centered { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div:first-child { min-height: 92px; border: 0; border-bottom: 1px solid var(--line-dark); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { justify-self: start; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-field { flex-basis: 52px; width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-actions { opacity: 1; transform: none; }
  .needs-grid { grid-template-columns: 1fr; }
  .expert-section { grid-template-columns: 1fr; gap: 42px; }
  .expert-number { align-self: auto; }
  .expert-section blockquote { grid-column: auto; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  .announcement { gap: 12px; padding-inline: 15px; font-size: .64rem; }
  .announcement p { max-width: 245px; }
  .nav-shell { height: 72px; }
  .brand-type small, .cart-link span { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .cart-link { width: 42px; justify-content: center; padding: 0; }
  .cart-link:has(.cart-count) { width: 49px; gap: 4px; }
  .inner-page .cart-link { position: static; width: auto; min-width: 42px; box-shadow: none; }
  .mobile-menu { top: 72px; height: calc(100svh - 72px); }
  .hero-slider, .hero-slides, .hero-slide { min-height: 860px; }
  .slide-shell { min-height: 860px; align-content: start; gap: 28px; padding-block: 48px 82px; }
  .hero-slide h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-slide-green h1 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .hero-lead { margin-top: 24px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .slide-art { height: 315px; }
  .slide-art-catala img { padding: 24px 34px 12px; }
  .slide-art > p { right: 16px; bottom: 14px; font-size: .96rem; }
  .slide-label { top: 15px; left: 16px; }
  .slider-controls { bottom: 15px; }
  .slider-dots button { width: 34px; }
  .slider-arrows button { width: 40px; height: 40px; }
  .hero-signature { bottom: -4rem; }
  .catalog-section, .needs-section { padding-block: 80px 88px; }
  .section-heading h2, .expert-copy h2 { font-size: 2.55rem; }
  .catalog-toolbar { margin-top: 42px; }
  .catalog-status { min-height: 64px; }
  .product-grid { gap: 34px 10px; }
  .product-media { aspect-ratio: .8; }
  .product-actions { right: 7px; bottom: 7px; left: 7px; }
  .product-actions a { min-height: 39px; font-size: .69rem; }
  .product-info h3 { min-height: 55px; font-size: .79rem; }
  .product-category { font-size: .56rem; }
  .product-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .catalog-footer { flex-direction: column; }
  .needs-grid a { min-height: 176px; grid-template-columns: 36px 1fr auto; gap: 6px 10px; padding: 23px 18px; }
  .expert-section { padding-block: 80px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px 22px; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .social-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-button { padding-inline: 11px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .footer-legal-links { justify-content: flex-start; }
}

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

/* Pagini informative și checkout */
.inner-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.inner-page .site-header {
  position: relative;
}

.inner-page .nav-shell { position: relative; }

.inner-page .cart-link {
  position: absolute;
  z-index: 4;
  top: calc(100% + 18px);
  right: 0;
  border-color: var(--green-dark);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 9, 8, 0.12);
}

.inner-page .cart-link:hover {
  border-color: var(--ink);
  background: var(--green);
  color: var(--ink);
}

.inner-nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.inner-nav a {
  color: #c0c5c1;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.page-hero {
  padding-block: 86px 72px;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(71, 237, 145, 0.13), transparent 40%),
    var(--ink-green-gradient);
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  max-width: 920px;
  margin: 18px 0 20px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: #c0c7c1;
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: center;
  gap: 90px;
  padding-block: 78px 110px;
}

.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.legal-nav strong {
  display: block;
  margin-bottom: 15px;
  color: var(--green-dark);
  font-family: var(--rounded);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 7px;
  color: #5f675f;
  font-size: 0.83rem;
}

.legal-nav a:hover {
  color: var(--green-dark);
}

.legal-content section {
  scroll-margin-top: 32px;
  padding-block: 4px 34px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.11);
}

.legal-content section + section {
  padding-top: 34px;
}

.legal-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #4d554f;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-bottom: 38px;
  padding: 22px 24px;
  border-left: 4px solid var(--green-dark);
  background: var(--green-wash);
  color: #174c32;
  line-height: 1.65;
}

.legal-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.company-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.company-card p {
  margin: 0;
  padding: 18px;
  background: var(--white);
}

.company-card small {
  display: block;
  margin-bottom: 4px;
  color: #7a817c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-table {
  width: 100%;
  margin-block: 24px;
  overflow-x: auto;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.privacy-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.privacy-table th,
.privacy-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  background: var(--ink);
  color: var(--green);
  font-family: var(--rounded);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.privacy-table td {
  color: #4d554f;
  font-size: 0.87rem;
  line-height: 1.6;
}

.privacy-table tbody tr:last-child td {
  border-bottom: 0;
}

.checkout-page {
  padding-block: 72px 110px;
}

.checkout-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.checkout-heading h1 {
  margin: 8px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.checkout-heading > p {
  max-width: 440px;
  margin: 0;
  color: #5f675f;
}

.checkout-preview-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #345441;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-preview-note::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-dark);
  content: "";
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.checkout-panel,
.order-summary {
  border: 1px solid var(--line-light);
  background: var(--white);
}

.checkout-panel {
  padding: clamp(24px, 4vw, 46px);
}

.checkout-block + .checkout-block {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid rgba(7, 9, 8, 0.11);
}

.checkout-block h2,
.order-summary h2 {
  margin: 0 0 22px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.is-wide {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #cdd1cd;
  border-radius: 0;
  background: #fbfcf9;
  color: var(--ink);
}

.form-field input:focus {
  border-color: var(--green-dark);
  outline: 2px solid rgba(8, 122, 67, 0.14);
}

.form-privacy-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--green-dark);
  background: var(--green-wash);
  color: #405047;
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-privacy-note a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-light);
  color: #3f4741;
  font-weight: 600;
}

.payment-choice + .payment-choice {
  margin-top: 10px;
}

.payment-choice span {
  display: grid;
  gap: 4px;
}

.payment-choice small {
  color: #737b75;
  font-size: 0.75rem;
  font-weight: 500;
}

.marketing-preferences > p:not(.eyebrow) {
  margin: -4px 0 17px;
  color: #657068;
  font-size: 0.86rem;
  line-height: 1.6;
}

.marketing-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line-light);
  background: var(--white);
  cursor: pointer;
}

.marketing-choice + .marketing-choice { margin-top: 9px; }
.marketing-choice input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--green-dark); }
.marketing-choice span { display: grid; gap: 3px; }
.marketing-choice strong { color: var(--ink); font-size: 0.84rem; }
.marketing-choice small { color: #697269; font-size: 0.78rem; line-height: 1.45; }
.marketing-note { margin: 14px 0 0 !important; font-size: 0.76rem !important; }
.marketing-note a { color: var(--green-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.checkout-delivery-link {
  margin: 14px 0 0;
  color: #657068;
  font-size: 0.78rem;
  line-height: 1.55;
}

.checkout-delivery-link a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-summary {
  position: sticky;
  top: 28px;
  padding: 30px;
}

.summary-product {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.11);
}

.summary-product img {
  width: 68px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eef0ec;
}

.summary-product p,
.summary-product strong {
  margin: 0;
}

.summary-product p {
  font-size: 0.84rem;
  font-weight: 700;
}

.summary-product small {
  color: #747b75;
}

.summary-lines {
  display: grid;
  gap: 13px;
  padding-block: 24px;
}

.summary-lines p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: #5f675f;
  font-size: 0.86rem;
}

.summary-lines p span small {
  display: block;
  margin-top: 3px;
  color: #7b817c;
  font-size: 0.68rem;
}

.summary-lines .summary-total {
  margin-top: 5px;
  padding-top: 17px;
  border-top: 1px solid rgba(7, 9, 8, 0.11);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.terms-acceptance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: #f7f8f5;
  color: #434a45;
  font-size: 0.82rem;
  line-height: 1.55;
}

.terms-acceptance input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--green-dark);
}

.terms-acceptance a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-button {
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.order-button:not(:disabled):hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.order-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.checkout-status {
  margin: 14px 0 0;
  padding: 13px 14px;
  background: var(--green-wash);
  color: #174c32;
  font-size: 0.78rem;
  line-height: 1.55;
}

.secure-note {
  margin: 14px 0 0;
  color: #747b75;
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-nav {
    position: static;
    columns: 2;
  }

  .checkout-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .order-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .inner-nav {
    display: none;
  }

  .page-hero {
    padding-block: 60px 54px;
  }

  .legal-layout,
  .checkout-page {
    padding-block: 48px 76px;
  }

  .legal-nav {
    columns: 1;
  }

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

  .checkout-panel,
  .order-summary {
    padding: 22px;
  }

  .summary-product {
    grid-template-columns: 58px 1fr;
  }

  .summary-product strong {
    grid-column: 2;
  }
}

/* Internal storefront pages */
.product-detail-page {
  padding-block: 28px 90px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: #70766f;
  font-size: 0.78rem;
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: 620px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.product-detail-loading,
.inner-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.product-detail-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(28px, 5vw, 70px);
  overflow: hidden;
  background: #f3f5f1;
}

.product-detail-media::after {
  position: absolute;
  right: -5%;
  bottom: -16%;
  color: rgba(16, 92, 58, 0.07);
  content: "S";
  font: 800 clamp(12rem, 28vw, 25rem)/0.8 "Plus Jakarta Sans", sans-serif;
}

.product-detail-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 530px);
  max-height: 510px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-index {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  color: #59615b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.product-detail-copy h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  font: 800 clamp(2.2rem, 4.5vw, 4.6rem)/0.98 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.055em;
}

.product-detail-stock {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 11px;
  background: var(--green-wash);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-stock.is-unavailable { background: #f0efed; color: #726f69; }

.product-detail-price {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
}

.product-description {
  max-height: 250px;
  overflow: auto;
  padding-right: 12px;
  color: #4d554f;
  font-size: 0.95rem;
  line-height: 1.75;
}

.product-description p:first-child { margin-top: 0; }

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-advice {
  margin: 24px 0 0;
  color: #646b66;
  font-size: 0.82rem;
}

.product-advice a { color: var(--green-dark); font-weight: 800; text-decoration: underline; }

.delivery-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block: 54px 72px;
  border: 1px solid var(--ink);
}

.delivery-facts article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 156px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  background: var(--white);
}

.delivery-facts article:last-child { border-right: 0; }

.delivery-dot {
  position: absolute;
  top: 19px;
  right: 19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 145, 91, 0.1);
}

.delivery-facts strong {
  display: block;
  font: 800 clamp(1.35rem, 2.2vw, 2rem)/1.05 var(--rounded);
  letter-spacing: -0.04em;
}

.delivery-facts small {
  margin-top: 9px;
  color: #687069;
  font-size: 0.8rem;
  line-height: 1.45;
}

.delivery-details {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding-bottom: 90px;
}

.delivery-main { min-width: 0; }

.delivery-section {
  padding-block: 0 54px;
  border-bottom: 1px solid var(--line-light);
}

.delivery-section + .delivery-section { padding-top: 54px; }

.delivery-section:last-child { border-bottom: 0; }

.delivery-section h2,
.delivery-payment h2,
.delivery-help h2 {
  margin: 13px 0 20px;
  font: 800 clamp(1.8rem, 3.4vw, 3.4rem)/1 var(--rounded);
  letter-spacing: -0.055em;
}

.delivery-section > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #515b54;
  font-size: 1rem;
  line-height: 1.8;
}

.delivery-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(15, 128, 72, 0.24);
  background: var(--green-wash);
}

.delivery-highlight > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-weight: 800;
}

.delivery-highlight p { display: grid; gap: 4px; margin: 0; color: #526057; font-size: 0.82rem; line-height: 1.5; }
.delivery-highlight strong { color: var(--ink); font-size: 1rem; }

.delivery-steps { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; }

.delivery-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--line-light);
}

.delivery-steps li > span { color: var(--green-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.delivery-steps strong { display: block; margin-bottom: 7px; font-size: 1rem; }
.delivery-steps p { margin: 0; color: #5c665f; font-size: 0.9rem; line-height: 1.65; }

.delivery-issues { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.delivery-issues > div { padding: 24px; border: 1px solid var(--line-light); background: #fafbf8; }
.delivery-issues strong { display: block; margin-bottom: 11px; font-size: 0.9rem; }
.delivery-issues p { margin: 0; color: #5b645e; font-size: 0.8rem; line-height: 1.65; }

.delivery-payment {
  position: sticky;
  top: 28px;
  padding: clamp(28px, 4vw, 46px);
  background: radial-gradient(circle at 90% 15%, rgba(31, 145, 91, 0.28), transparent 42%), var(--ink);
  color: var(--white);
}

.delivery-payment .eyebrow { color: #cfe1d5; }
.delivery-payment h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.payment-detail { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.payment-detail > span { color: var(--green); font-size: 0.72rem; font-weight: 800; }
.payment-detail strong { display: block; margin-bottom: 7px; }
.payment-detail p { margin: 0; color: #cfd6d1; font-size: 0.82rem; line-height: 1.65; }
.delivery-payment-note { margin: 5px 0 24px; color: #aeb8b1; font-size: 0.76rem; line-height: 1.6; }
.delivery-payment .button { width: 100%; }

.delivery-help {
  padding-block: 70px;
  background: radial-gradient(circle at 12% 20%, rgba(31, 145, 91, 0.26), transparent 35%), var(--ink);
  color: var(--white);
}

.delivery-help-inner { display: flex; justify-content: space-between; gap: 50px; align-items: end; }
.delivery-help h2 { max-width: 760px; }
.delivery-help p:not(.eyebrow) { max-width: 680px; margin: 0; color: #cad2cc; line-height: 1.7; }
.delivery-help-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.button-outline-light { border: 1px solid rgba(255, 255, 255, 0.65); color: var(--white); }
.button-outline-light:hover { border-color: var(--green); color: var(--green); }

.footer-cookie-button {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-media { min-height: 460px; }
  .delivery-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-facts article:nth-child(2) { border-right: 0; }
  .delivery-facts article:nth-child(-n + 2) { border-bottom: 1px solid var(--line-light); }
  .delivery-details { grid-template-columns: 1fr; }
  .delivery-payment { position: static; }
  .delivery-help-inner { align-items: flex-start; flex-direction: column; }
  .delivery-help-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .product-detail-page { padding-block: 18px 64px; }
  .product-detail { border-inline: 0; margin-inline: calc(var(--shell-pad) * -1); }
  .product-detail-media { min-height: 360px; padding: 52px 28px 28px; }
  .product-detail-copy { padding: 34px 24px 42px; }
  .product-detail-actions { flex-direction: column; }
  .product-detail-actions .button { width: 100%; }
  .delivery-facts { grid-template-columns: 1fr; margin-block: 34px 52px; }
  .delivery-facts article { min-height: 128px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .delivery-facts article:nth-child(3) { border-bottom: 1px solid var(--line-light); }
  .delivery-facts article:last-child { border-bottom: 0; }
  .delivery-details { padding-bottom: 62px; }
  .delivery-issues { grid-template-columns: 1fr; }
  .delivery-help { padding-block: 56px; }
  .delivery-help-actions { width: 100%; }
  .delivery-help-actions .button { width: 100%; }
}

/* Consimțământ cookies — comun tuturor paginilor */
.cookie-consent[hidden],
.cookie-consent__details[hidden],
.cookie-consent__actions[hidden],
.cookie-settings-launcher[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 220;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 36px;
  width: min(1180px, calc(100% - 44px));
  max-height: calc(100svh - 44px);
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  overflow-y: auto;
  border: 1px solid rgba(71, 237, 145, 0.7);
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 237, 145, 0.14), transparent 32%),
    rgba(7, 9, 8, 0.985);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  color: var(--white);
}

.cookie-consent__intro {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.cookie-consent__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--rounded);
  font-size: 1.15rem;
  font-weight: 800;
}

.cookie-consent__eyebrow {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--white);
  font: 750 clamp(1.35rem, 2.5vw, 2rem)/1.12 var(--rounded);
  letter-spacing: -0.035em;
}

.cookie-consent__intro p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: #b9c1bb;
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
  align-content: center;
  min-width: 320px;
}

.cookie-button {
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  font: 750 0.8rem/1.2 var(--rounded);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  outline: 0;
}

.cookie-button--accept {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
}

.cookie-button--reject {
  background: var(--white);
  color: var(--ink);
}

.cookie-button--customize {
  grid-column: 1 / -1;
}

.cookie-consent__details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cookie-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.cookie-choice.is-locked {
  cursor: default;
}

.cookie-choice span {
  display: grid;
  gap: 5px;
}

.cookie-choice strong {
  color: var(--white);
  font: 750 0.9rem/1.2 var(--rounded);
}

.cookie-choice small {
  color: #9da69f;
  font-size: 0.76rem;
  line-height: 1.45;
}

.cookie-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-choice i {
  position: relative;
  width: 44px;
  height: 24px;
  border: 1px solid #6d756f;
  border-radius: 99px;
  background: #262b27;
  transition: border-color 180ms ease, background 180ms ease;
}

.cookie-choice i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #aeb5af;
  content: "";
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-choice input:checked + i {
  border-color: var(--green);
  background: rgba(71, 237, 145, 0.18);
}

.cookie-choice input:checked + i::after {
  transform: translateX(20px);
  background: var(--green);
}

.cookie-choice input:focus-visible + i {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.cookie-consent__save {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(150px, 220px));
  justify-content: end;
}

.cookie-consent__links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 0;
  color: #747d76;
  font-size: 0.74rem;
}

.cookie-consent__links a {
  color: #aeb6b0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8d948e;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-cookie-button:hover {
  color: var(--green);
}

@media (max-width: 860px) {
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    min-width: 0;
  }

  .cookie-consent__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    gap: 20px;
    padding: 20px;
  }

  .cookie-consent__intro {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .cookie-consent__mark {
    width: 40px;
    height: 40px;
  }

  .cookie-consent__actions,
  .cookie-consent__save {
    grid-template-columns: 1fr;
  }

  .cookie-button--customize {
    grid-column: auto;
  }

}
