/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input {
  font: inherit;
  border: none;
  outline: none;
}

/* =========================
   DESIGN TOKENS
========================= */
:root {
  /* Colors */
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f5f5;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-text-muted: #999999;
  --color-border: #e8e8e8;
  --color-border-light: #f0f0f0;
  --color-primary: #1a1a1a;
  --color-primary-hover: #333333;
  --color-accent: #95bf47;
  --color-sale: #e53e3e;
  --color-success: #38a169;
  --color-overlay: rgba(0, 0, 0, 0.45);

  /* Typography */
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Header */
  --header-height: 72px;
}

/* =========================
   BASE
========================= */
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--color-surface);
}

/* =========================
   SECTION HEADERS
========================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--color-text);
}

.link-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--duration-fast) ease;
  white-space: nowrap;
}

.link-arrow:hover {
  color: var(--color-accent);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-accent {
  background: #95bf47;
  color: white;
  border-color: #95bf47;
}

.btn-accent:hover {
  background: #83ab3a;
  border-color: #83ab3a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: white;
  color: var(--color-text);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--color-text);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) ease;
}

.icon-btn:hover {
  background: var(--color-surface-alt);
}

/* =========================
   ANNOUNCEMENT BAR
========================= */
.announcement-bar {
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  letter-spacing: 0.3px;
  padding: 10px 0;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement-side {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.announcement-side a {
  opacity: 0.7;
  transition: opacity var(--duration-fast) ease;
}

.announcement-side a:hover {
  opacity: 1;
}

.announcement-center {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-icon {
  color: #95bf47;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--duration-normal) ease;
}

.header-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2xs);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-align: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--color-text);
  white-space: nowrap;
}

.logo-text strong {
  font-weight: 700;
  color: #95bf47;
}

.logo-text-sm {
  font-size: 22px;
}

.logo-text-footer {
  color: white;
  font-size: 24px;
}

.logo-text-footer strong {
  color: #95bf47;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-img-sm {
  height: 42px;
}

.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
}

/* Navigation */
.nav ul {
  display: flex;
  gap: var(--space-xl);
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 0;
  position: relative;
  transition: color var(--duration-fast) ease;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-text);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-item a:hover {
  color: var(--color-text);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item a svg {
  opacity: 0.5;
  transition: transform var(--duration-fast) ease;
}

.nav-item.has-mega:hover a svg {
  transform: rotate(180deg);
}

/* Cart trigger */
.cart-trigger {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 0 4px;
}

/* =========================
   SEARCH BAR
========================= */
.search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg) 0;
  z-index: 50;
}

.search-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 640px;
  margin: 0 auto;
}

.search-inner svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.search-input {
  flex: 1;
  font-size: 16px;
  padding: var(--space-xs) 0;
  background: transparent;
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-close {
  opacity: 0.5;
  transition: opacity var(--duration-fast) ease;
}

.search-close:hover {
  opacity: 1;
}

/* =========================
   MEGA MENU
========================= */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  z-index: 90;
}

.mega-enter,
.mega-leave {
  transition: all var(--duration-normal) var(--ease-out);
}

.mega-enter-from,
.mega-leave-to {
  opacity: 0;
  transform: translateY(-8px);
}

.mega-enter-to,
.mega-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

.mega-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mega-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition:
    color var(--duration-fast) ease,
    padding-left var(--duration-fast) ease;
}

.mega-links a:hover {
  color: var(--color-text);
  padding-left: 4px;
}

.mega-viewall {
  font-weight: 500;
  color: var(--color-text) !important;
  margin-top: var(--space-xs);
}

.mega-promo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 240px;
}

.mega-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.mega-promo-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.mega-promo-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-top: 4px;
}

.mega-promo-link {
  font-size: 13px;
  font-weight: 500;
  margin-top: var(--space-xs);
  display: inline-block;
  opacity: 0.9;
}

.mega-promo-link:hover {
  opacity: 1;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-only {
  display: none;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 200;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: white;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.mobile-link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--duration-fast) ease;
}

.mobile-link:hover {
  color: var(--color-accent);
}

.mobile-drawer-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-footer-link {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* =========================
   HERO
========================= */
.hero-section {
  padding: var(--space-lg) 0 0;
}

.hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: var(--space-4xl);
  max-width: 600px;
  word-break: break-word;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: var(--space-lg);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(149, 191, 71, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.trust-item span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* =========================
   CATEGORY GRID
========================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  color: white;
}

.category-overlay h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
}

.category-count {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

/* =========================
   PRODUCT GRID
========================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow var(--duration-normal) ease,
    transform var(--duration-normal) var(--ease-out);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--color-surface-alt);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--duration-slow) ease;
}

.product-img-hover {
  position: absolute;
  inset: 0;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: white;
}

.product-actions {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) ease;
}

.product-action-btn:hover {
  background: var(--color-text);
  color: white;
  transform: scale(1.08);
}

.product-info {
  padding: var(--space-md);
}

.product-vendor {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.product-name {
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
  color: var(--color-text);
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.product-price {
  font-size: 15px;
  font-weight: 600;
}

.product-compare {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-colors {
  display: flex;
  gap: 6px;
  margin-top: var(--space-sm);
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  transition: transform var(--duration-fast) ease;
}

.color-dot:hover {
  transform: scale(1.3);
}

/* =========================
   SPLIT BANNER
========================= */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  min-height: 480px;
}

.split-banner-media {
  overflow: hidden;
}

.split-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl);
  min-width: 0;
}

.split-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: var(--space-md) 0;
}

.split-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

/* =========================
   NEWSLETTER
========================= */
.newsletter-section {
  padding: var(--space-4xl) 0;
  background: var(--color-primary);
  color: white;
}

.newsletter {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter .section-tag {
  color: #95bf47;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  margin: var(--space-md) 0;
}

.newsletter-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  transition: border-color var(--duration-fast) ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
  background: white;
  color: var(--color-text);
  border-color: white;
  flex-shrink: 0;
}

.newsletter-form .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--color-text);
  color: white;
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand {
  padding-right: var(--space-2xl);
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast) ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration-fast) ease;
}

.footer-col li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--duration-fast) ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================
   CART DRAWER
========================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 300;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 90vw;
  background: white;
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  box-shadow: var(--shadow-xl);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.cart-header-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-xl);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface-alt);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-size: 14px;
  font-weight: 500;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--duration-fast) ease;
}

.qty-control button:hover {
  background: var(--color-surface-alt);
}

.qty-control span {
  width: 36px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
}

.cart-item-remove {
  position: absolute;
  top: var(--space-md);
  right: 0;
  opacity: 0.3;
  transition: opacity var(--duration-fast) ease;
}

.cart-item-remove:hover {
  opacity: 1;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
}

.cart-empty p {
  color: var(--color-text-muted);
  font-size: 15px;
}

.cart-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--color-border-light);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: var(--space-xs);
}

.cart-shipping-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.cart-footer .btn {
  margin-bottom: var(--space-xs);
}

/* =========================
   HEADER PHONE
========================= */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-right: var(--space-sm);
  transition: color var(--duration-fast) ease;
}

.header-phone:hover {
  color: var(--color-text);
}

.bli-kund-top {
  font-weight: 600;
  color: #95bf47 !important;
  opacity: 1 !important;
}

/* =========================
   HERO TRUST
========================= */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   PRODUCT TAX NOTE
========================= */
.product-tax {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* =========================
   CATEGORY WIDE
========================= */
.category-card-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* =========================
   SPLIT BANNER ACTIONS
========================= */
.split-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =========================
   BLI KUND SECTION
========================= */
.bli-kund-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #f8faf3 0%, #eef5de 100%);
}

.bli-kund {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.bli-kund-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: var(--space-sm) 0 var(--space-md);
}

.bli-kund-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

.bli-kund-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 14px;
  font-weight: 500;
}

.bli-kund-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.quick-contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.quick-contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.quick-contact-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-input {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--color-bg);
  transition: border-color var(--duration-fast) ease;
}

.form-input:focus {
  border-color: #95bf47;
  outline: none;
}

/* =========================
   LOCATIONS GRID
========================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.location-card {
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration-normal) var(--ease-out);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.location-icon {
  font-size: 32px;
  margin-bottom: var(--space-sm);
}

.location-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.location-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* =========================
   FOOTER CONTACT INFO
========================= */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.footer-contact-info a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) ease;
}

.footer-contact-info a:hover {
  color: white;
}

/* =========================
   MOBILE DRAWER CTA
========================= */
.mobile-drawer-cta {
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* =========================
   VISIBILITY HELPERS
========================= */
.desktop-only {
  display: flex;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card:last-child {
    grid-column: span 2;
    aspect-ratio: 3 / 2;
  }

  .category-card-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-featured {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-banner-media {
    aspect-ratio: 16 / 9;
  }

  .split-banner-content {
    padding: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bli-kund {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .announcement-bar {
    display: none;
  }

  .announcement-side {
    display: none !important;
  }

  .announcement-inner {
    justify-content: center;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    height: 60px;
    gap: var(--space-xs);
  }

  .header-right {
    gap: 0;
  }

  .logo {
    font-size: 20px;
    overflow: hidden;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero {
    min-height: 380px;
    border-radius: var(--radius-lg);
  }

  .hero-content {
    padding: var(--space-lg);
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .section-title {
    font-size: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .category-card-wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .product-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-name {
    font-size: 13px;
  }

  .split-banner-content {
    padding: var(--space-xl);
  }

  .split-title {
    font-size: 28px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100vw;
  }

  .hero-section {
    padding: var(--space-sm) 0 0;
  }

  .hero-tag {
    font-size: 10px;
    padding: 6px 12px;
  }

  .category-overlay h3 {
    font-size: 20px;
  }

  .location-card {
    padding: var(--space-md);
  }

  .location-card h3 {
    font-size: 15px;
  }

  .location-icon {
    font-size: 24px;
  }

  .hero-trust {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .announcement-center {
    font-size: 11px;
  }

  .trust-item span {
    font-size: 11px;
  }

  .bli-kund {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .bli-kund-title {
    font-size: 28px;
  }

  .bli-kund-benefits {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .split-actions {
    flex-direction: column;
  }
}
