/* ==========================================================================
   EasySlim - Core Stylesheet & Design System
   Nordic Wellness Aesthetic (Finland Geo Localization)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #FAF9F6;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3F6F4;
  --bg-mint: #E8F3EE;
  
  --primary: #1E3F20;
  --primary-hover: #152E17;
  --primary-light: #2D5B33;
  
  --accent: #E55836;
  --accent-hover: #CB4524;
  --accent-light: #FDEEE9;
  
  --text-main: #19231E;
  --text-muted: #56645E;
  --text-light: #84938C;
  
  --border-light: #E2E8E4;
  --border-focus: #2D5B33;
  
  --gold: #C59B27;
  --gold-light: #FCF8EE;
  
  /* Typography */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(30, 63, 32, 0.04);
  --shadow-md: 0 6px 20px rgba(30, 63, 32, 0.07);
  --shadow-lg: 0 14px 35px rgba(30, 63, 32, 0.10);
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 76px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

.section--subtle {
  background-color: var(--bg-subtle);
}

.section--mint {
  background-color: var(--bg-mint);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
  color: var(--primary);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 14px;
}

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

.text-center {
  text-align: center;
}

.nav-list-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 991px) {
  .nav-list-wrapper {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--mint {
  background-color: var(--bg-mint);
  color: var(--primary);
}

.badge--accent {
  background-color: var(--accent-light);
  color: var(--accent);
}

.badge--gold {
  background-color: var(--gold-light);
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn--primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 63, 32, 0.2);
}

.btn--accent {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn--accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(229, 88, 54, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background-color: var(--bg-mint);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Announcement Top Bar */
.announcement-bar {
  background-color: var(--primary);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .announcement-bar {
    padding: 6px 12px;
  }
  .announcement-bar .container {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center;
  }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

/* Left: Logo Column */
.header__logo-col {
  display: flex;
  align-items: center;
  min-width: 175px;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
  font-weight: 800;
}

.logo__leaf {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Center: Navigation Column */
.header__nav-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-list-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  display: flex;
  align-items: center;
}

.nav__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 3px;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav__link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Right: Actions Column */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 175px;
  flex-shrink: 0;
}

.header__actions .btn {
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: none;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 6px;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 1280px) {
  .header__logo-col,
  .header__actions {
    min-width: 205px;
  }
  .nav-list-wrapper {
    gap: 20px;
  }
  .nav__link {
    font-size: 0.94rem;
  }
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: flex;
  }
  
  .header__nav-col {
    display: contents;
  }
  
  .nav__menu {
    position: fixed;
    top: calc(var(--header-height) + 36px);
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 25px 20px 35px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-list-wrapper {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .nav__item {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .nav__link {
    font-size: 1.05rem;
    display: block;
    padding: 8px 0;
    width: 100%;
  }

  .header__logo-col,
  .header__actions {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .header__inner {
    gap: 6px;
  }
  .header__logo-col .logo {
    font-size: 1.15rem;
    gap: 5px;
  }
  .header__actions {
    gap: 6px;
    min-width: auto;
  }
  .header__actions .btn {
    padding: 7px 11px;
    font-size: 0.78rem;
  }
  .nav-cart-btn {
    width: 38px;
    height: 38px;
  }
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  margin-top: 4px;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background-color: var(--bg-surface);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #C2D5C8;
}

.pillar-card__icon {
  font-size: 2.2rem;
}

.pillar-card h3 {
  font-size: 1.3rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* Story Section */
.story-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-card__content {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-quote-box {
  background-color: var(--bg-mint);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.story-card__image {
  background-color: #EBF4EE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

@media (max-width: 900px) {
  .story-card {
    grid-template-columns: 1fr;
  }
  .story-card__content {
    padding: 30px 24px;
  }
}

/* Testimonials / Social Proof */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.stars {
  color: #E58A2B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-main);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

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

/* Articles Directory Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.article-card__header {
  padding: 24px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-card__body {
  padding: 0 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card__body h3 {
  font-size: 1.25rem;
}

.article-card__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.article-card__footer {
  padding: 16px 24px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-link:hover {
  text-decoration: underline;
}

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

/* Certifications Showcase */
.cert-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.cert-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 220px;
}

.cert-badge-item img {
  width: 90px;
  height: 90px;
  transition: var(--transition);
}

.cert-badge-item img:hover {
  transform: scale(1.08);
}

.cert-badge-item h4 {
  font-size: 1rem;
}

.cert-badge-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: #E2E8E4;
  padding: 60px 0 25px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 35px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #A9B8AF;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 700;
}

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

.footer-links a {
  color: #CBD6CE;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: #8C9E93;
}

.footer__bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.footer__policy-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__policy-links a {
  color: #CBD6CE;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer__policy-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   Floating Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  padding: 22px 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(180%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.cookie-banner__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.cookie-banner__btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner__btn--accept {
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
}

.cookie-banner__btn--accept:hover {
  background-color: #162E18;
}

.cookie-banner__btn--necessary {
  background-color: var(--bg-subtle);
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
}

.cookie-banner__btn--necessary:hover {
  background-color: #E6EFEA;
}

.cookie-banner__link {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: underline;
  margin-left: auto;
}

/* ==========================================================================
   Header Shopping Cart Button & Badge
   ========================================================================== */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}

.nav-cart-btn:hover {
  background-color: var(--bg-mint);
  transform: translateY(-2px);
  border-color: #B2D7C0;
}

.nav-cart-btn svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-badge.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   Slide-Over Cart Drawer
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 35, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: #FFFFFF;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2600;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cart-close-btn {
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cart-close-btn:hover {
  color: var(--accent);
  background-color: var(--bg-subtle);
}

.cart-free-shipping-notice {
  background: linear-gradient(90deg, #E8F3EE 0%, #D8EDE1 100%);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--primary);
}

.cart-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.qty-btn {
  background: none;
  width: 28px;
  height: 28px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}

.qty-btn:hover {
  background-color: var(--bg-mint);
}

.qty-num {
  padding: 0 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-remove-btn {
  background: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #C0392B;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-light);
  background-color: #FFFFFF;
}

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

/* ==========================================================================
   Hero Realistic Image with Floating Badges
   ========================================================================== */
.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #E8EFEA;
}

.hero-realistic-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}

.hero__image-wrapper:hover .hero-realistic-img {
  transform: scale(1.02);
}

.hero-float-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatBadge 3.5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-float-badge--top {
  top: 24px;
  left: 24px;
}

.hero-float-badge--bottom {
  bottom: 24px;
  right: 24px;
  animation-delay: 1.5s;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-badge-icon--green {
  background-color: var(--bg-mint);
  color: var(--primary);
}

.float-badge-icon--accent {
  background-color: var(--accent-light);
  color: var(--accent);
}

.float-badge-text h4 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.float-badge-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 600px) {
  .hero-realistic-img {
    height: 380px;
  }
  .hero-float-badge--top {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
  }
  .hero-float-badge--bottom {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
  }
}

/* ==========================================================================
   Checkout Steps & Thank You Styles
   ========================================================================== */
.checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background-color: var(--bg-subtle);
  color: var(--text-muted);
}

.step-pill.active {
  background-color: var(--primary);
  color: #FFFFFF;
}

.step-pill.completed {
  background-color: var(--bg-mint);
  color: var(--primary);
}

.thank-you-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 50px 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8F3EE 0%, #CDE8D8 100%);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 6px 16px rgba(30, 63, 32, 0.15);
}

.tracking-display-box {
  background: linear-gradient(135deg, #1E3F20 0%, #152E17 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tracking-code-pill {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #FFEAA7;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Google Map & Helsinki Studio Section
   ========================================================================== */
.map-section-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 35px;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-subtle);
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-info-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.map-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.map-pin-icon {
  font-size: 1.8rem;
  background-color: var(--bg-mint);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.92rem;
}

.map-detail-item strong {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-detail-item span {
  color: var(--text-main);
  line-height: 1.4;
}

.map-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* ==========================================================================
   Comprehensive Mobile Optimizations (< 900px & < 600px)
   ========================================================================== */
@media (max-width: 900px) {
  .map-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map-embed-wrapper,
  .map-iframe {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 42px 0;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btn--large {
    padding: 13px 22px;
    font-size: 0.95rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner__actions button {
    width: 100%;
  }
  .footer__bottom-nav {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer__policy-links {
    justify-content: center;
  }
}

/* Responsive Table Wrappers */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
