@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* Design System Variables */
:root {
  --color-warm-white: #FBF8F2;
  --color-white: #FFFFFF;
  --color-deep-olive: #263F32;
  --color-olive-green: #607B5E;
  --color-soft-sage: #DDE8DB;
  --color-aegean-blue: #DCEAF0;
  --color-sand-beige: #EADCC7;
  --color-terracotta: #C96F4A;
  --color-text-dark: #1F2933;
  --color-muted-text: #667085;
  --color-border: #E5E1D8;
  --color-warning-soft: #FFF2C7;
  --color-error: #B42318;
  --color-success: #027A48;

  --font-headings: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 14px;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-deep-olive);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(26px, 4vw, 46px);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-dark);
}

.text-muted {
  color: var(--color-muted-text);
}

/* Top Ad Notice */
.top-ad-notice {
  background-color: var(--color-warning-soft);
  color: var(--color-text-dark);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid var(--color-border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-deep-olive);
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 11px;
  color: var(--color-olive-green);
  font-weight: 500;
  margin-top: -2px;
}

.nav-menu {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-toggle-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
  background-color: var(--color-warm-white);
  border-color: var(--color-olive-green);
}

.cart-icon-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-deep-olive);
  stroke-width: 2;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ticker Bar */
.ticker-bar {
  background-color: var(--color-deep-olive);
  color: var(--color-warm-white);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 500;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
}

.ticker-item::after {
  content: "•";
  margin-left: 2rem;
  color: var(--color-sand-beige);
}

@keyframes ticker-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
    white-space: normal;
    justify-content: center;
  }
  .ticker-item::after {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  text-align: center;
  min-height: 52px;
}

.btn-primary {
  background-color: var(--color-deep-olive);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-olive-green);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-deep-olive);
  border: 2px solid var(--color-deep-olive);
}

.btn-secondary:hover {
  background-color: var(--color-warm-white);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: #b35d3a;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(251, 248, 242, 0.8), rgba(251, 248, 242, 0.9)), url('images/bg-hero-greek-home.jpg') no-repeat center center;
  background-size: cover;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-tag {
  display: inline-block;
  background-color: var(--color-soft-sage);
  color: var(--color-deep-olive);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-subhead {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-olive-green);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.price-display {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-deep-olive);
}

.price-sub {
  font-size: 12px;
  color: var(--color-muted-text);
  display: block;
  margin-top: -4px;
}

/* Scent Selector in Hero */
.hero-scent-selector-wrapper {
  margin-bottom: 2rem;
}

.hero-scent-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-olive);
  margin-bottom: 0.75rem;
  display: block;
}

.scent-swatches {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.scent-swatch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background-color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.scent-swatch:hover {
  border-color: var(--color-olive-green);
  background-color: var(--color-warm-white);
}

.scent-swatch.active {
  border-color: var(--color-deep-olive);
  background-color: var(--color-soft-sage);
  color: var(--color-deep-olive);
  box-shadow: 0 0 0 2px var(--color-deep-olive);
}

.swatch-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.1);
}

.swatch-lavender { background-color: #D3C2E8; }
.swatch-eucalyptus { background-color: #A3D8C4; }
.swatch-pine { background-color: #B2C498; }
.swatch-lemon { background-color: #F8E5A5; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-microcopy {
  font-size: 12px;
  color: var(--color-muted-text);
  border-left: 2px solid var(--color-sand-beige);
  padding-left: 0.75rem;
}

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

.product-hero-img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(38, 63, 50, 0.15));
}

.hero-quick-facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-deep-olive);
}

.fact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-olive-green);
  flex-shrink: 0;
}

/* Trust Conditions Bar */
.trust-bar {
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
}

.trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-deep-olive);
  margin-bottom: 0.25rem;
}

.trust-desc {
  font-size: 14px;
  color: var(--color-muted-text);
}

/* Large Media Sections */
.media-section {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.media-text h2 {
  margin-bottom: 1.5rem;
}

.bullet-list {
  list-style: none;
  margin-top: 1.5rem;
}

.bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23607B5E'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
}

.media-image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.media-image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Problem Section */
.problem-section {
  position: relative;
  background: linear-gradient(rgba(38, 63, 50, 0.85), rgba(38, 63, 50, 0.95)), url('images/bg-kitchen-window.jpg') no-repeat center center;
  background-size: cover;
  padding: 5rem 1.5rem;
  color: var(--color-white);
}

.problem-section h2 {
  color: var(--color-warm-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.problem-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 18px;
  color: var(--color-sand-beige);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.problem-card-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.75rem;
  color: var(--color-sand-beige);
}

.problem-card-desc {
  font-size: 15px;
  color: var(--color-border);
}

.problem-disclaimer-block {
  background-color: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--color-sand-beige);
  padding: 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-sand-beige);
}

/* How It Works */
.how-it-works-section {
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-it-works-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.how-it-works-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  font-size: 16px;
  color: var(--color-muted-text);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.step-card {
  position: relative;
  padding: 2rem;
  background-color: var(--color-warm-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.step-number {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-olive-green);
  opacity: 0.3;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 15px;
  color: var(--color-muted-text);
}

/* Where to Use Section */
.where-to-use-section {
  padding: 5rem 1.5rem;
  background-color: var(--color-warm-white);
}

.where-to-use-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.where-to-use-container h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.where-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.where-card {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.where-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  z-index: 1;
}

.where-card:hover .where-card-bg {
  transform: scale(1.05);
}

.where-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(38, 63, 50, 0.9) 20%, rgba(38, 63, 50, 0.3) 100%);
  z-index: 2;
}

.where-card-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
}

.where-card-title {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-sand-beige);
  margin-bottom: 0.5rem;
}

.where-card-text {
  font-size: 15px;
  color: var(--color-border);
}

/* Scents Section */
.scents-section {
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.scents-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.scents-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  font-size: 16px;
  color: var(--color-muted-text);
}

.scents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.scent-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.scent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(38, 63, 50, 0.08);
  border-color: var(--color-olive-green);
}

.scent-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-warm-white);
  position: relative;
}

.scent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.scent-card:hover .scent-img {
  transform: scale(1.05);
}

.scent-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scent-card-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-deep-olive);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scent-badge {
  font-size: 11px;
  padding: 0.15rem 0.5rem;
  background-color: var(--color-soft-sage);
  color: var(--color-deep-olive);
  border-radius: 12px;
  font-weight: 700;
}

.scent-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted-text);
  margin-bottom: 1.5rem;
}

.scent-select-btn {
  width: 100%;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--color-deep-olive);
  color: var(--color-deep-olive);
  background-color: var(--color-white);
  transition: var(--transition-smooth);
  margin-top: auto;
}

.scent-select-btn:hover {
  background-color: var(--color-deep-olive);
  color: var(--color-white);
}

.scent-select-btn.active {
  background-color: var(--color-olive-green);
  color: var(--color-white);
  border-color: var(--color-olive-green);
}

/* SEO Copy Block */
.seo-section {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.seo-copy {
  font-size: 15px;
  color: var(--color-text-dark);
}

.seo-copy p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Product Specifications Table */
.spec-section {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.spec-container h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.spec-table-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  margin-bottom: 2rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table tr {
  border-bottom: 1px solid var(--color-border);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 1.25rem 1.5rem;
  font-size: 15px;
}

.spec-label {
  font-weight: 700;
  color: var(--color-deep-olive);
  width: 40%;
  background-color: var(--color-warm-white);
}

.spec-value {
  color: var(--color-text-dark);
}

.spec-note {
  font-size: 13px;
  color: var(--color-muted-text);
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Safety Disclaimers */
.safety-section {
  padding: 4rem 1.5rem;
  background-color: var(--color-warning-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.safety-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.safety-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.safety-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 16px;
  font-weight: 500;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.safety-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 14px;
  background-color: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(102, 112, 133, 0.1);
}

.safety-icon {
  color: var(--color-terracotta);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Final Buy Section */
.final-buy-section {
  background: linear-gradient(rgba(251, 248, 242, 0.9), rgba(251, 248, 242, 0.95)), url('images/bg-clean-home-texture.jpg') no-repeat center center;
  background-size: cover;
  padding: 6rem 1.5rem;
  text-align: center;
}

.final-buy-container {
  max-width: 600px;
  margin: 0 auto;
}

.final-buy-section h2 {
  margin-bottom: 1.5rem;
}

.final-buy-text {
  font-size: 16px;
  color: var(--color-muted-text);
  margin-bottom: 2.5rem;
}

.final-buy-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(38, 63, 50, 0.08);
}

.final-buy-price {
  font-family: var(--font-headings);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-deep-olive);
  margin-bottom: 0.25rem;
}

.final-buy-price-sub {
  font-size: 13px;
  color: var(--color-muted-text);
  display: block;
  margin-bottom: 2rem;
}

.final-buy-cta {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 2rem auto;
}

.final-buy-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.summary-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-deep-olive);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Footer styling */
.site-footer {
  background-color: var(--color-deep-olive);
  color: var(--color-warm-white);
  padding: 5rem 1.5rem 2rem 1.5rem;
  border-top: 2px solid var(--color-sand-beige);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  color: var(--color-sand-beige);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 14px;
  color: var(--color-border);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.business-details {
  font-size: 13px;
  color: var(--color-sand-beige);
  line-height: 1.6;
}

.footer-nav-col h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 1.25rem;
}

.footer-nav-col ul {
  list-style: none;
}

.footer-nav-col li {
  margin-bottom: 0.75rem;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--color-border);
}

.footer-nav-col a:hover {
  color: var(--color-sand-beige);
  text-decoration: underline;
}

.footer-contact-info {
  list-style: none;
  font-size: 14px;
  color: var(--color-border);
}

.footer-contact-info li {
  margin-bottom: 0.75rem;
}

.footer-contact-info a {
  text-decoration: underline;
}

.footer-contact-info a:hover {
  color: var(--color-sand-beige);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 4rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-bottom-text {
  font-size: 13px;
  color: var(--color-border);
}

.payment-methods-text {
  font-size: 12px;
  color: var(--color-sand-beige);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Floating Bottom Mobile CTA */
.floating-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.mobile-cta-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-olive);
}

.mobile-cta-price {
  font-size: 15px;
  font-weight: 800;
}

.mobile-cta-btn {
  min-height: 44px;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 41, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translate3d(0, 0, 0);
}

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

.cart-drawer-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
}

.close-drawer-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.close-drawer-btn:hover {
  background-color: var(--color-warm-white);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-empty-text {
  font-size: 16px;
  color: var(--color-muted-text);
  margin-bottom: 1.5rem;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img {
  max-height: 70px;
  width: auto;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-weight: 700;
  color: var(--color-deep-olive);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-warm-white);
  font-weight: 700;
  transition: var(--transition-smooth);
}

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

.qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 14px;
}

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

.remove-item-btn {
  font-size: 13px;
  color: var(--color-error);
  font-weight: 500;
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-warm-white);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 0.75rem;
}

.cart-summary-total {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-deep-olive);
  border-top: 1px dashed var(--color-border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.cart-footer-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.cart-footer-links {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-muted-text);
}

.cart-footer-links a {
  text-decoration: underline;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 41, 51, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  transform: translate3d(-100%, 0, 0);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active .mobile-nav-drawer {
  transform: translate3d(0, 0, 0);
}

.mobile-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  height: 2px;
  width: 100%;
  background-color: var(--color-deep-olive);
  border-radius: 2px;
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-deep-olive);
  display: block;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  width: 380px;
  max-width: calc(100vw - 48px);
  background-color: rgba(38, 63, 50, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  display: none;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

@media (max-width: 576px) {
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    width: auto;
    padding: 1.25rem;
  }
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #EDF2EE;
}

.cookie-text a {
  color: var(--color-sand-beige);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.cookie-btn {
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background-color: var(--color-sand-beige);
  color: var(--color-deep-olive);
  grid-column: span 2;
  font-size: 14px;
}

.cookie-btn-accept:hover {
  background-color: var(--color-white);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--color-sand-beige);
  border: 1px solid transparent;
}

.cookie-btn-settings:hover {
  text-decoration: underline;
}


/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 41, 51, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

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

.modal-container {
  background-color: var(--color-white);
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
}

.close-modal-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.close-modal-btn:hover {
  background-color: var(--color-warm-white);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-warm-white);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Cookie Settings List */
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-setting-info {
  flex: 1;
}

.cookie-setting-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-deep-olive);
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-setting-desc {
  font-size: 13px;
  color: var(--color-muted-text);
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-olive-green);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-olive-green);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

input:disabled + .slider {
  background-color: var(--color-sand-beige);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Checkout Page Specific Styles */
.checkout-page-container {
  max-width: var(--max-width);
  margin: 2rem auto 4rem auto;
  padding: 0 1.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.checkout-section-title {
  font-size: 18px;
  border-bottom: 2px solid var(--color-sand-beige);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.checkout-section-title:first-of-type {
  margin-top: 0;
}

/* Form Styles */
.form-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-deep-olive);
}

.form-input {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 15px;
  transition: var(--transition-smooth);
  background-color: var(--color-warm-white);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-olive-green);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(96, 123, 94, 0.15);
}

.form-input-hint {
  font-size: 12px;
  color: var(--color-muted-text);
  margin-top: 0.25rem;
}

.form-error {
  display: none;
  color: var(--color-error);
  font-size: 13px;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Modern Validation Pseudo classes */
.form-input:user-invalid {
  border-color: var(--color-error);
  background-color: #FDF2F2;
}

.form-input:user-invalid + .form-error {
  display: block;
}

.form-input:user-valid {
  border-color: var(--color-success);
}

/* Payment Demo Card Options */
.payment-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-option-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.payment-option-card:hover {
  background-color: var(--color-warm-white);
}

.payment-option-card.selected {
  border-color: var(--color-olive-green);
  background-color: var(--color-warm-white);
}

.payment-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--color-deep-olive);
}

.payment-details {
  display: flex;
  flex-direction: column;
}

.payment-name {
  font-weight: 600;
  font-size: 14px;
}

.payment-sub {
  font-size: 12px;
  color: var(--color-muted-text);
}

/* Terms Checkboxes */
.checkout-checkbox-group {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-deep-olive);
  flex-shrink: 0;
}

.checkbox-input:user-invalid + span {
  color: var(--color-error);
}

/* Sticky Summary Card */
.order-summary-card {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.summary-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-product-row {
  display: flex;
  gap: 1rem;
}

.summary-product-img-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-product-img {
  max-height: 50px;
  width: auto;
}

.summary-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summary-product-name {
  font-size: 14px;
  font-weight: 700;
}

.summary-product-qty {
  font-size: 12px;
  color: var(--color-muted-text);
}

.summary-product-price {
  font-weight: 700;
  align-self: center;
}

.summary-totals-block {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.summary-grand-total {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-deep-olive);
  border-top: 1px dashed var(--color-border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.checkout-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* Legal Pages Styling */
.legal-page-header {
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
  padding: 4rem 1.5rem 3rem 1.5rem;
  text-align: center;
}

.legal-content-container {
  max-width: 800px;
  margin: 3rem auto 5rem auto;
  padding: 0 1.5rem;
}

.legal-content-container h2 {
  font-size: 22px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.legal-content-container h2:first-of-type {
  margin-top: 0;
}

.legal-content-container h3 {
  font-size: 18px;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content-container p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-content-container ul, .legal-content-container ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content-container li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.withdrawal-form-box {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--border-radius);
  font-family: monospace;
  font-size: 14px;
  white-space: pre-wrap;
  line-height: 1.6;
  margin: 2rem 0;
}

/* Contact Form Specifics */
.contact-form {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-top: 2rem;
}

.contact-submit-btn {
  width: 100%;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

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

  .footer-container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-brand {
    grid-column: span 1;
  }

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

  .form-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }

  .nav-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-deep-olive);
    padding: 0.5rem 0.25rem;
    position: relative;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-olive-green);
    transition: var(--transition-smooth);
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  .hamburger-btn {
    display: none;
  }

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

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