:root {
  --sage: #87A878;
  --sage-dark: #6f9160;
  --beige: #F5F1E8;
  --beige-dark: #ece5d4;
  --charcoal: #2C3E50;
  --charcoal-dark: #22303f;
  --terracotta: #E07A5F;
  --terracotta-dark: #cf6a4e;
  --white: #ffffff;
  --text-muted: #6b7a88;
  --border: rgba(44, 62, 80, 0.1);
  --shadow-sm: 0 4px 14px rgba(44, 62, 80, 0.08);
  --shadow-md: 0 12px 30px rgba(44, 62, 80, 0.14);
  --shadow-lg: 0 24px 50px rgba(44, 62, 80, 0.18);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

input {
  font: inherit;
}

s {
  text-decoration-thickness: 1.5px;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--sage);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 500;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.section-eyebrow {
  display: block;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  transition: background 0.25s;
}

.icon-btn:hover {
  background: rgba(44, 62, 80, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(224, 122, 95, 0.4);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.16s;
}

.reveal.d3 {
  transition-delay: 0.24s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--speed);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: clamp(1.02rem, 3.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-text {
  white-space: nowrap;
}

.logo em {
  font-style: italic;
  color: var(--sage-dark);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--sage);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(135, 168, 120, 0.4);
  flex-shrink: 0;
}

.nav-links {
  display: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: -1px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}

.cart-count.show {
  transform: scale(1);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.menu-toggle:hover {
  background: rgba(44, 62, 80, 0.07);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.25s;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
  border-top: 1px solid transparent;
}

.mobile-menu.open {
  max-height: 420px;
  border-top-color: var(--border);
}

.mobile-menu ul {
  padding: 10px 24px 18px;
}

.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px dashed var(--border);
}

.hero {
  position: relative;
  height: clamp(560px, 92vh, 840px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.hero-slide.active img {
  animation: kenburns 8s var(--ease) forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 62, 80, 0.25) 0%, rgba(44, 62, 80, 0.18) 45%, rgba(44, 62, 80, 0.62) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-inner {
  color: var(--white);
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  font-weight: 700;
  margin: 18px 0 16px;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots button {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s, width 0.3s;
}

.hero-dots button.active {
  background: var(--terracotta);
  width: 46px;
}

.hero-scroll {
  position: absolute;
  bottom: 18px;
  right: 30px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: none;
}

.benefits {
  background: var(--beige);
  padding: clamp(56px, 8vw, 96px) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.benefit {
  text-align: center;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(135, 168, 120, 0.16);
  color: var(--sage-dark);
}

.benefit h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.products {
  padding: clamp(56px, 8vw, 100px) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 0 6px 14px rgba(44, 62, 80, 0.25);
}

.badge--refurbished {
  background: var(--sage);
}

.badge--eco {
  background: var(--terracotta);
}

.product-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-title {
  font-size: 1.18rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-original {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-size: 0.92rem;
}

.price-sale {
  font-size: 1.3rem;
  font-weight: 700;
}

.price-save {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-dark);
  background: rgba(135, 168, 120, 0.15);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.add-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.2s;
}

.add-btn:hover {
  background: var(--sage-dark);
}

.add-btn:active {
  transform: scale(0.97);
}

.add-btn.added {
  background: var(--sage-dark);
}

.eco {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(56px, 8vw, 100px) 0;
}

.eco-grid {
  display: grid;
  gap: 48px;
}

.eco .section-eyebrow {
  color: var(--sage);
}

.eco h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 18px;
}

.eco h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.eco-copy p {
  margin-bottom: 30px;
  max-width: 48ch;
  font-size: 0.98rem;
}

.eco-stats {
  display: grid;
  gap: 10px;
  align-content: center;
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat b {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--sage);
  white-space: nowrap;
}

.stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  max-width: 20ch;
  text-align: right;
}

.site-footer {
  background: var(--charcoal-dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 56px 0 44px;
}

.footer-brand .logo {
  color: var(--white);
}

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

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a,
.footer-col .footer-link {
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-col a:hover,
.footer-col .footer-link:hover {
  color: var(--sage);
}

.footer-link {
  text-align: left;
  padding: 0;
}

.footer-contact li {
  font-size: 0.9rem;
}

.footer-contact li a {
  transition: color 0.25s;
}

.footer-contact li a:hover {
  color: var(--sage);
}

.newsletter p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 6px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form button {
  background: var(--terracotta);
  color: var(--white);
  border-radius: 9px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.25s;
}

.newsletter-form button:hover {
  background: var(--terracotta-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(245, 241, 232, 0.97);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

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

.search-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(80px, 14vh, 120px) 24px 60px;
}

.search-top {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--charcoal);
  padding-bottom: 14px;
}

.search-top svg {
  color: var(--charcoal);
  flex-shrink: 0;
}

.search-top input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--charcoal);
  outline: none;
}

.search-top input::placeholder {
  color: #a8b2bb;
}

.search-top input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search-results {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.search-result-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.search-result-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.search-info {
  flex: 1;
  min-width: 0;
}

.search-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-price {
  display: block;
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 0.88rem;
  margin-top: 2px;
}

.search-price s {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-left: 6px;
}

.search-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--charcoal);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.search-add:hover {
  background: var(--sage-dark);
}

.search-add.added {
  background: var(--sage-dark);
}

.search-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
  font-size: 0.95rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(34, 48, 63, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(430px, 100%);
  background: var(--white);
  z-index: 201;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(44, 62, 80, 0.25);
}

.cart-drawer.open {
  transform: none;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  font-size: 1.4rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}

.cart-close:hover {
  background: var(--beige);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.cart-empty-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--beige);
  display: grid;
  place-items: center;
  color: var(--sage-dark);
}

.cart-empty-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin: 18px 0 6px;
}

.cart-empty-text {
  font-size: 0.9rem;
}

.cart-browse {
  margin-top: 18px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 2px solid rgba(224, 122, 95, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}

.cart-browse:hover {
  border-color: var(--terracotta);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}

.cart-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.cart-item-price {
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 3px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--beige);
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--beige-dark);
}

.qty-val {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  font-size: 0.92rem;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-remove {
  color: var(--text-muted);
  padding: 6px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: color 0.2s, background 0.2s;
}

.cart-item-remove:hover {
  color: var(--terracotta);
  background: rgba(224, 122, 95, 0.1);
}

.cart-item-total {
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 20px 26px 24px;
  background: var(--beige);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cart-shipping {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cart-shipping b {
  color: var(--sage-dark);
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 10px 24px rgba(224, 122, 95, 0.35);
}

.checkout-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  font-weight: 500;
  animation: toast-in 0.4s var(--ease);
  pointer-events: auto;
  max-width: calc(100% - 32px);
}

.toast.hiding {
  animation: toast-out 0.3s forwards;
}

.toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(14px);
  }
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-policy button {
  font-size: 0.8rem;
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.footer-policy button:hover {
  color: var(--sage);
  border-color: rgba(135, 168, 120, 0.5);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(34, 48, 63, 0.55);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.modal-dialog {
  width: min(680px, 100%);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.open .modal-dialog {
  transform: none;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}

.modal-header h2 {
  font-size: 1.45rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.modal-close:hover {
  background: var(--beige);
}

.modal-content {
  padding: 26px 28px 34px;
}

.modal-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 8px;
}

.modal-content h3:first-child {
  margin-top: 0;
}

.modal-content p {
  font-size: 0.93rem;
  margin-bottom: 12px;
}

.modal-content ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
  margin-bottom: 12px;
}

.modal-content li::marker {
  color: var(--terracotta);
}

.modal-content a {
  color: var(--terracotta);
  text-decoration: underline;
}

.modal-content b {
  font-weight: 600;
}

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

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

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  }

  .eco-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 64px;
  }

  .hero-scroll {
    display: block;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    gap: 34px;
  }

  .menu-toggle {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (max-width: 479px) {
  .logo-text {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
