/* HoneyDo Farm - Elegant Farmhouse Design */
/* A warm, loving, homestead aesthetic */

:root {
  /* Warm Farmhouse Palette - 2026 Refresh */
  --cream: #FAF6F1;
  --warm-white: #FFFCF7;
  --linen: #F5EDE4;
  --light-cream: #FBF8F4;
  --honey-gold: #C9922A;
  --honey-light: #F7E8D0;
  --amber: #B57720;
  --dusty-rose: #9E7265;
  --blush: #E8D4CF;
  --rust: #8B4A3B;
  --terracotta: #B56B4D;
  --warm-brown: #4A2F15;
  --chocolate: #3A2515;
  --soft-brown: #6B523C;
  --wheat: #E2D4C0;
  --charcoal: #2D241E;
  --soft-gray: #E8E2DA;
  --stone: #9E9385;
  /* Green tones for page backgrounds */
  --forest-green: #4A5D42;
  --sage-green: #7A8D72;
  
  /* Shadows & Effects */
  --shadow-soft: 0 4px 20px rgba(74, 50, 34, 0.08);
  --shadow-medium: 0 8px 40px rgba(74, 50, 34, 0.12);
  --shadow-hover: 0 12px 50px rgba(74, 50, 34, 0.18);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Dancing Script', cursive;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--soft-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--soft-brown);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--warm-brown);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--warm-brown);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 65ch;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--honey-gold);
  font-size: 1.5rem;
}

/* Links */
a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--honey-gold);
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 900px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-img {
  height: 120px;
  width: auto;
  border-radius: 8px;
  transition: height var(--transition-smooth), transform var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.header.scrolled .logo-img {
  height: 55px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--honey-gold), var(--dusty-rose));
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--amber);
}

/* Cart Icon */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--honey-light);
  transition: all var(--transition-fast);
}

.cart-icon:hover {
  background: var(--honey-gold);
  transform: scale(1.05);
}

.cart-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--warm-brown);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--rust);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--warm-brown);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Menu Active State */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Dropdown */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links .btn {
    margin-top: 0.5rem;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--honey-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl) 0;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  color: var(--rust);
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  background: linear-gradient(135deg, var(--rust), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--warm-brown);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.hero-title span {
  display: block;
  color: var(--dusty-rose);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--soft-brown);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-image-main {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  transform: rotate(2deg);
  transition: transform var(--transition-smooth);
}

.hero-image:hover .hero-image-main {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--honey-gold);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 162, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 162, 76, 0.5);
  color: white;
}

.btn-secondary {
  background: var(--warm-white);
  color: var(--warm-brown);
  border: 2px solid var(--wheat);
}

.btn-secondary:hover {
  background: var(--honey-light);
  border-color: var(--honey-gold);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--warm-brown);
  border: 2px solid var(--dusty-rose);
}

.btn-outline:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ========================================
   SECTION STYLES
======================================== */
section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--honey-gold);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  margin-bottom: var(--spacing-sm);
}

.section-description {
  margin: 0 auto;
  color: var(--soft-brown);
}

/* Decorative Line */
.deco-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--honey-gold), var(--dusty-rose));
  margin: var(--spacing-sm) auto;
  border-radius: 2px;
}

/* ========================================
   ABOUT SECTION  
======================================== */
.about {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--honey-light);
  border-radius: 50%;
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.about-image-frame {
  position: absolute;
  inset: 20px;
  border: 3px solid var(--honey-gold);
  border-radius: 20px;
  z-index: -1;
  transform: translate(20px, 20px);
}

.about-content h2 {
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-sm);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--spacing-sm);
  background: var(--cream);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.about-feature:hover {
  background: var(--honey-light);
  transform: translateX(5px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--honey-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* ========================================
   PRODUCTS/STORE SECTION
======================================== */
.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  background: var(--rust);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.sold-out {
  background: var(--charcoal);
}

.product-badge.new {
  background: var(--terracotta);
}

.product-badge.surplus {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Surplus Specials */
.surplus-item {
  border: 2px solid var(--honey-gold);
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--honey-light) 100%);
}

.surplus-item.highlighted {
  animation: highlight 1s ease-in-out;
}

@keyframes highlight {
  0%, 100% { box-shadow: var(--shadow-soft); }
  50% { box-shadow: 0 0 30px rgba(212, 162, 76, 0.6); }
}

.surplus-code {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.35rem 0.75rem;
  background: var(--charcoal);
  color: var(--honey-gold);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: monospace;
  border-radius: 4px;
  z-index: 2;
}

.product-note {
  font-size: 0.85rem;
  color: var(--rust);
  font-style: italic;
  margin-top: 0.5rem;
}

.share-btn:hover {
  background: var(--honey-gold) !important;
}

.product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 0.5rem;
  transition: all var(--transition-smooth);
}

.product-card:hover .product-actions {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--honey-gold);
}

.product-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--charcoal);
}

.product-action-btn:hover svg {
  stroke: white;
}

.product-info {
  padding: var(--spacing-md);
}

.product-category {
  font-size: 0.8rem;
  color: var(--dusty-rose);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--warm-brown);
  margin: 0.5rem 0;
}

.product-description {
  font-size: 0.9rem;
  color: var(--soft-brown);
  margin-bottom: var(--spacing-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--honey-gold);
  font-weight: 700;
}

.product-price .original {
  font-size: 1rem;
  color: var(--soft-brown);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.add-to-cart-btn {
  padding: 0.75rem 1.5rem;
  background: var(--warm-brown);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.add-to-cart-btn:hover {
  background: var(--amber);
  transform: scale(1.05);
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.category-filter {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--soft-gray);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-filter:hover,
.category-filter.active {
  background: var(--honey-gold);
  border-color: var(--honey-gold);
  color: white;
}

/* ========================================
   FEATURES/SERVICES
======================================== */
.features {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--chocolate) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.features .section-header {
  position: relative;
  z-index: 1;
}

.features .section-eyebrow {
  color: var(--honey-light);
}

.features .section-title {
  color: white;
}

.features .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.feature-card {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: var(--honey-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.feature-card h4 {
  color: white;
  margin-bottom: var(--spacing-xs);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--warm-white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--honey-light);
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--honey-gold);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--warm-brown);
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--soft-brown);
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--soft-brown) 100%);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto var(--spacing-md);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: var(--spacing-sm);
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
}

.newsletter-input::placeholder {
  color: var(--soft-brown);
}

.newsletter-btn {
  padding: 1rem 2rem;
  background: var(--warm-brown);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--charcoal);
  transform: scale(1.05);
}

/* ========================================
   FOOTER - Warm Farmhouse Style
======================================== */
.footer {
  background: linear-gradient(180deg, var(--warm-brown) 0%, #3D2A16 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--honey-gold), var(--dusty-rose), var(--terracotta), var(--honey-gold));
}

.footer-top {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: var(--spacing-xl) 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  position: relative;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-brand-description {
  color: rgba(251, 247, 240, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--honey-gold);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-location-icon {
  width: 24px;
  height: 24px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(251, 247, 240, 0.08);
  border: 1px solid rgba(251, 247, 240, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--honey-gold);
  border-color: var(--honey-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200, 146, 60, 0.4);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--cream);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--honey-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(251, 247, 240, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--honey-gold);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--honey-gold);
}

.footer-links a:hover::before {
  width: 12px;
}

/* Footer Newsletter Callout */
.footer-newsletter {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(251, 247, 240, 0.08);
}

.footer-newsletter h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: rgba(251, 247, 240, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.newsletter-inline {
  display: flex;
  gap: 0.5rem;
}

.newsletter-inline input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(251, 247, 240, 0.2);
  border-radius: 25px;
  background: rgba(251, 247, 240, 0.08);
  color: var(--cream);
  font-size: 0.95rem;
}

.newsletter-inline input::placeholder {
  color: rgba(251, 247, 240, 0.5);
}

.newsletter-inline button {
  padding: 0.85rem 1.75rem;
  background: var(--honey-gold);
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-inline button:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(251, 247, 240, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(251, 247, 240, 0.5);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--honey-gold);
}

.footer-credit {
  color: rgba(251, 247, 240, 0.4);
  font-size: 0.8rem;
}

.footer-credit a {
  color: rgba(251, 247, 240, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--honey-gold);
}

/* ========================================
   CART DRAWER
======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--soft-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.25rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--soft-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-close:hover {
  background: var(--rust);
}

.cart-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--charcoal);
}

.cart-close:hover svg {
  stroke: white;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-md);
}

.cart-empty {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  stroke: var(--soft-gray);
  margin-bottom: var(--spacing-md);
}

.cart-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--soft-gray);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--warm-brown);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--honey-gold);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--soft-gray);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--honey-light);
  border-color: var(--honey-gold);
}

.cart-item-remove {
  color: var(--rust);
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.cart-item-remove:hover {
  opacity: 0.7;
}

.cart-footer {
  padding: var(--spacing-md);
  border-top: 1px solid var(--soft-gray);
  background: var(--cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.cart-subtotal .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--honey-gold);
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--warm-brown);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.checkout-btn:hover {
  background: var(--amber);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 120px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .category-filters {
    gap: 0.5rem;
  }
  
  .category-filter {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-brand-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-location {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .newsletter-inline {
    flex-direction: column;
  }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

/* ========================================
   COOKIE CONSENT BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: white;
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px;
  color: #ffffff;
  max-width: none;
}

.cookie-banner a {
  color: var(--honey-gold);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-accept {
  background: var(--honey-gold);
  color: var(--charcoal);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  background: var(--amber);
  transform: scale(1.02);
}

.cookie-banner .btn-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner .btn-decline:hover {
  border-color: white;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}
