@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1c1e1b;
  --ink-soft: #2a2d28;
  --paper: #f6f4f0;
  --surface: #ffffff;
  --sand: #eeeae3;
  --sage: #3f5a46;
  --sage-hover: #314538;
  --sage-mid: #6b8a72;
  --sage-soft: #e7eee8;
  --line: #e3ded4;
  --muted: #6b6862;

  --ember: #3f5a46;
  --ember-hover: #314538;
  --brass: #6b8a72;

  --color-white: #ffffff;
  --color-cream: #eeeae3;
  --color-mint: #e7eee8;
  --color-mint-deep: #d5e0d6;
  --color-sage: #3f5a46;
  --color-sage-dark: #1c1e1b;
  --color-sage-light: #6b8a72;
  --color-text: #1c1e1b;
  --color-text-secondary: #5c5a55;
  --color-text-muted: #8a8780;
  --color-border: #e3ded4;
  --color-border-light: #eeeae3;
  --color-primary: #3f5a46;
  --color-primary-hover: #314538;
  --color-accent: #6b8a72;
  --color-accent-soft: #e7eee8;
  --color-green-leaf: #c5d0c4;
  --color-green-deep: #1c1e1b;
  --color-bg-light: #f6f4f0;
  --color-dark: #1c1e1b;

  --font-display: 'Source Serif 4', Georgia, serif;
  --font-main: 'Source Serif 4', Georgia, serif;
  --font-ui: 'IBM Plex Sans', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6.5rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 30, 27, 0.05);
  --shadow-md: 0 10px 30px rgba(28, 30, 27, 0.08);
  --shadow-lg: 0 24px 60px rgba(28, 30, 27, 0.12);
  --shadow-hover: 0 12px 28px rgba(63, 90, 70, 0.18);

  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background-color: var(--paper);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 500;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 500;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-sm { font-size: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: none;
  text-align: center;
  width: 100%;
  letter-spacing: 0.02em;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .btn { width: auto; }
}

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

.btn-primary:hover {
  background: var(--sage-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:disabled:hover {
  background: var(--sage);
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--sage-soft);
  color: var(--sage);
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: #d7e3d9;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--line);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(246, 244, 240, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  transition: height 0.25s ease;
}

.header.scrolled .header-container {
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 28px;
  height: 28px;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1;
}

.logo-tagline {
  display: none;
}

.nav-desktop {
  display: none;
}

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

.header-back {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-back:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--surface);
}

.cart-icon,
a.cart-icon,
button.cart-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.cart-icon:hover,
a.cart-icon:hover,
button.cart-icon:hover {
  background: var(--sage-soft);
  border-color: var(--sage-mid);
  color: var(--sage);
  transform: none;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: var(--radius-full);
}

.cart-count.is-empty {
  display: none;
}

body.cart-open {
  overflow: hidden;
}

.menu-toggle {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 11px;
  border-radius: var(--radius-full);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background-color: var(--ink);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-h));
  background-color: var(--paper);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: var(--spacing-lg) 24px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: -0.02em;
}

.mobile-nav a:hover {
  color: var(--sage);
}

/* Sections */
section {
  padding: var(--spacing-xxl) 0;
}

.section-light {
  background-color: var(--sand);
}

.section-mint {
  background-color: var(--sage-soft);
  color: var(--ink);
}

.section-mint .section-header h2,
.section-mint .section-header p,
.section-mint .rich-text p,
.section-mint .card h3,
.section-mint .card p {
  color: inherit;
}

.section-mint .card p {
  color: var(--color-text-secondary);
}

.section-mint .card {
  background: transparent;
  border-color: rgba(63, 90, 70, 0.16);
}

.section-green {
  background: var(--sage);
  color: #fff;
}

.section-green h2,
.section-green p,
.section-green .card h3 {
  color: #fff;
}

.section-green .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.section-green .card {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.section-ink {
  background: var(--ink);
  color: #f6f4f0;
}

.section-ink h2,
.section-ink h3,
.section-ink p,
.section-ink .section-label {
  color: #f6f4f0;
}

.section-ink .section-header p,
.section-ink .step-content p {
  color: rgba(246, 244, 240, 0.7);
}

.section-ink .section-header {
  border-left-color: transparent;
  padding-left: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-h) + 28px) 0 0;
  background: var(--paper);
  overflow: hidden;
  color: var(--ink);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 0;
  padding: 0;
  margin: 0 0 8px;
}

.hero-bg-video {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: left;
  padding: var(--spacing-lg) 0 calc(var(--spacing-xxl) + 24px);
}

@media (max-width: 767px) {
  .hero-content {
    padding-bottom: 180px;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--sage-soft);
  color: var(--sage);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 0;
}

.hero-content h1 {
  color: var(--ink);
  margin-bottom: var(--spacing-md);
  text-shadow: none;
  max-width: 12ch;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  max-width: 540px;
  font-family: var(--font-ui);
}

.price-block {
  margin: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 0;
  padding-left: 0;
}

.price-current {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  margin-right: var(--spacing-xs);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-old {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.price-info {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
  max-width: 280px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-buy-link {
  display: block;
  cursor: pointer;
  color: inherit;
}

.product-buy-link:hover {
  color: inherit;
}

.gallery-item .product-buy-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-product-img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  object-fit: contain;
  max-height: 560px;
}

.hero-visual::after {
  display: none;
}

.hero-features {
  margin-bottom: var(--spacing-md);
  max-width: 520px;
}

.hero-features li {
  font-size: 15px;
  color: var(--color-text-secondary);
}

.hero .feature-list svg {
  color: var(--sage);
}

/* Trust */
.trust-bar {
  background: var(--surface);
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}

.trust-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: auto;
  position: relative;
  min-height: 180px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.5s ease;
}

.gallery-item.main img {
  object-fit: contain;
  background: #fff;
}

.gallery-item.main {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: auto;
  min-height: 380px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Cards / Grid */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: none;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: #d3d8d1;
}

.card h3 {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  text-transform: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--spacing-sm);
  color: var(--sage);
}

.text-center .card-icon {
  margin-left: auto;
  margin-right: auto;
}

#problema .grid-3 {
  counter-reset: pest;
  gap: 16px;
}

#problema .card {
  counter-increment: pest;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

#problema .card h3::before {
  content: counter(pest, decimal-leading-zero) "  ";
  color: var(--sage);
  font-weight: 500;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Ingredients */
.ingredients-intro {
  max-width: none;
  margin: 0 0 var(--spacing-xl);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 0;
}

.ingredient-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.ingredient-card:hover,
.ingredient-card.featured {
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-md);
}

.ingredient-card:hover {
  transform: translateY(-3px);
}

.ingredient-img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background-color: var(--sand);
}

.ingredient-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-img-wrapper img {
  transform: scale(1.04);
}

.ingredient-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sage);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.ingredient-content {
  padding: 22px 22px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ingredient-content p {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.oils-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 0;
  gap: 16px;
}

.oil-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 0;
  min-height: 160px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.oil-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.oil-citronella .oil-visual { background: #dce8b8; color: var(--ink); }
.oil-eucalyptus .oil-visual { background: #3f5a46; color: #fff; }
.oil-lavender .oil-visual { background: #8d7aa8; color: #fff; }
.oil-lemon .oil-visual { background: #f0e3a0; color: var(--ink); }

.oil-card .ingredient-content {
  padding: 22px 24px;
}

.oil-card .ingredient-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.oil-card .ingredient-tag-inline {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

/* Steps */
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(246, 244, 240, 0.12);
}

.step-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  background: transparent;
  padding: var(--spacing-lg) 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(246, 244, 240, 0.12);
  transition: none;
}

.step-item:hover {
  border-color: rgba(246, 244, 240, 0.12);
  box-shadow: none;
}

.step-number {
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--sage-mid);
  border-radius: 0;
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  text-transform: none;
  color: #f6f4f0;
}

/* Places Tags */
.places-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--spacing-md);
  justify-content: flex-start;
}

.place-tag {
  background-color: transparent;
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: all 0.15s ease;
  text-transform: none;
  letter-spacing: 0;
}

.place-tag:hover {
  background-color: #fff;
  color: var(--sage);
  border-color: #fff;
}

/* Rich Text */
.rich-text {
  max-width: 820px;
  margin: 0 auto;
}

.rich-text p {
  margin-bottom: var(--spacing-md);
  font-size: 17px;
  line-height: 1.8;
}

.rich-text h3 {
  margin-top: var(--spacing-xl);
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: none;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Accordion FAQ */
.accordion {
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.accordion + .accordion {
  border-top: 0;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s ease;
  gap: var(--spacing-sm);
  text-transform: none;
  letter-spacing: -0.02em;
}

.accordion-header:hover {
  color: var(--sage);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--sage);
  flex-shrink: 0;
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--sage);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 0 22px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

/* Disclaimers */
.disclaimer-box {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
}

.disclaimer-list {
  font-size: 14px;
  color: var(--color-text-secondary);
  column-count: 1;
  gap: var(--spacing-lg);
  list-style: none;
}

.disclaimer-list li {
  margin-bottom: 10px;
  break-inside: avoid;
  padding-left: 20px;
  position: relative;
}

.disclaimer-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* Tabs */
.tabs {
  margin-top: var(--spacing-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--sand);
  scrollbar-width: none;
}

.tab-buttons::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
  text-transform: none;
  letter-spacing: 0;
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn.active {
  color: var(--sage);
  border-bottom-color: var(--sage);
  background: transparent;
}

.tab-content {
  display: none;
  padding: var(--spacing-lg);
  background: var(--surface);
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.product-details-list {
  list-style: none;
}

.product-details-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  gap: var(--spacing-sm);
}

.product-details-list li span:first-child {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0;
}

.product-details-list li span:last-child {
  color: var(--color-text-secondary);
  text-align: right;
  max-width: 60%;
  font-family: var(--font-ui);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(28, 30, 27, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 98;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border-top: 1px solid var(--line);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.02em;
}

.sticky-cta-price {
  color: var(--sage);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-ui);
}

.sticky-cta .btn {
  padding: 10px 18px;
  width: auto;
  font-size: 13px;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 30, 27, 0.42);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--paper);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(28, 30, 27, 0.12);
  border-left: 0;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.cart-header h2 {
  margin: 0;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.03em;
}

.cart-header-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-ui);
}

.close-cart {
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.close-cart:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-empty {
  text-align: center;
  padding: 64px 12px;
  color: var(--color-text-muted);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--sage-soft);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-bottom: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.cart-item-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--sand);
  padding: 6px;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.cart-item-price {
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  width: max-content;
  background-color: var(--paper);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text);
}

.qty-btn:hover {
  background: var(--sage-soft);
}

.qty-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
  font-family: var(--font-ui);
}

.cart-item-remove:hover {
  color: var(--ink);
  text-decoration: underline;
}

.cart-footer {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
  background-color: var(--surface);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--line);
  text-transform: none;
  letter-spacing: -0.02em;
}

.shipping-note {
  font-size: 13px;
  color: var(--sage);
  text-align: left;
  margin-bottom: var(--spacing-md);
  display: block;
  font-weight: 500;
  font-family: var(--font-ui);
  letter-spacing: 0;
  text-transform: none;
}

.cart-footer .btn {
  width: 100%;
}

.cart-footer .btn-outline {
  margin-top: 8px;
  color: var(--ink);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  transform: translateY(140%);
  width: auto;
  max-width: 640px;
  background-color: var(--surface);
  color: var(--ink);
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  z-index: 1002;
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
  flex: 1;
}

.cookie-actions .btn-outline {
  border-color: var(--line);
  color: var(--ink);
}

.cookie-actions .btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* Footer */
.footer {
  background-color: var(--ink);
  color: rgba(246, 244, 240, 0.72);
  padding: 72px 0 32px;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-family: var(--font-display);
}

.footer-col p {
  color: rgba(246, 244, 240, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  color: var(--sage-mid);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  display: block;
  letter-spacing: -0.03em;
  text-transform: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(246, 244, 240, 0.68);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-ui);
}

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

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(246, 244, 240, 0.68);
  line-height: 1.5;
  font-family: var(--font-ui);
}

.footer-contact svg {
  color: var(--sage-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-imprint {
  border-top: 1px solid rgba(246, 244, 240, 0.1);
  padding-top: 28px;
  margin-bottom: 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(246, 244, 240, 0.5);
}

.footer-imprint p {
  margin-bottom: 4px;
  color: inherit;
}

.footer-imprint a {
  color: rgba(246, 244, 240, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 244, 240, 0.1);
  padding-top: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(246, 244, 240, 0.42);
  margin-bottom: 0;
}

.footer-simple {
  padding: 32px 0;
}

.footer-simple .container {
  text-align: center;
}

.footer-simple p,
.footer-simple a {
  color: rgba(246, 244, 240, 0.62);
  font-size: 13px;
}

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

/* Forms */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 16px;
  background-color: var(--surface);
  transition: all 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(63, 90, 70, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--sage);
}

.checkbox-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--sage);
  text-decoration: underline;
}

.imprint-box {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px;
  margin: 24px 0 32px;
  border-radius: var(--radius-lg);
}

.imprint-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  margin: 0;
}

.imprint-list dt {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 12px;
}

.imprint-list dt:first-child {
  margin-top: 0;
}

.imprint-list dd {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .imprint-list {
    grid-template-columns: 220px 1fr;
    align-items: baseline;
  }

  .imprint-list dt {
    margin-top: 0;
  }
}

.page-header {
  padding: calc(var(--header-h) + 56px) 0 48px;
  background: var(--paper);
  text-align: left;
}

.page-header h1 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  max-width: 18ch;
}

.page-header p {
  color: var(--color-text-secondary);
}

.page-content {
  padding: 24px 0 var(--spacing-xxl);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: none;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin-bottom: var(--spacing-md);
  font-size: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

.header .btn-outline {
  color: var(--ink);
  border-color: var(--line);
}

.header .btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Section Header */
.section-header {
  text-align: left;
  max-width: 720px;
  margin: 0 0 var(--spacing-xl);
  padding-left: 0;
  border-left: 0;
}

.section-header p {
  font-size: 17px;
  margin-bottom: 0;
  font-style: normal;
  font-family: var(--font-ui);
}

.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-mint .section-label,
.hero .section-label {
  color: var(--sage);
}

.section-green .section-label,
.section-ink .section-label {
  color: var(--sage-mid);
}

.section-light .hero-product-img,
#producto .hero-product-img {
  box-shadow: var(--shadow-md);
  background: var(--surface);
  max-width: 100%;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 30, 27, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 90%;
  text-align: left;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.fade-up {
  opacity: 1;
  transform: none;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border-left: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  letter-spacing: 0;
  text-transform: none;
}

.toast.show {
  transform: translateX(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--sage-mid);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-desktop ul {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .nav-desktop a {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-desktop a:hover {
    color: var(--ink);
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xxl);
    min-height: 0;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 80px;
  }

  .hero-content h1 {
    font-size: clamp(52px, 6.4vw, 76px);
  }

  .hero-product-img {
    max-width: 460px;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

  .oil-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .ingredient-img-wrapper {
    aspect-ratio: 16/10;
    min-height: 0;
  }

  .step-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 0;
  }

  .step-item {
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px 8px 0;
    border-bottom: 0;
    border-right: 1px solid rgba(246, 244, 240, 0.12);
  }

  .step-item:last-child {
    border-right: 0;
  }

  .step-number {
    font-size: 42px;
  }

  .disclaimer-list {
    column-count: 2;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  }

  .cookie-banner {
    left: 24px;
    right: auto;
    bottom: 24px;
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
  }

  .cookie-text {
    flex: 1;
  }

  .cookie-actions .btn {
    flex: none;
  }

  .places-tags {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .container {
    padding: 0 40px;
  }
}
