/* ========================================
   BOUGIECUP - Bougies Artisanales Bio
   Site prêt à l'emploi
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --sage-green: #A8B5A0;
  --sage-dark: #8A9A82;
  --sage-light: #C5D1BE;
  --blush-pink: #E8C4C4;
  --blush-dark: #D4A5A5;
  --blush-light: #F5E1E1;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --warm-white: #FFFCF8;
  --charcoal: #3D3D3D;
  --soft-gray: #6B6B6B;
  --light-gray: #E8E8E8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background-color: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes popIn {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage-dark); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { height: 55px; width: auto; transition: transform 0.3s ease; }
.logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  color: var(--sage-dark);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--blush-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.3s ease;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, var(--blush-light) 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 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='%23a8b5a0' 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.6;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { animation: fadeInUp 1s ease; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--sage-dark);
  font-style: italic;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  height: 8px;
  background: var(--blush-pink);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--sage-green);
  color: white;
  border-color: var(--sage-green);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(138, 154, 130, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--soft-gray);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--light-gray);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 3px solid var(--sage-green);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: float 6s ease-in-out infinite;
}

.card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-dark);
  font-size: 1rem;
}

.card-icon.green {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.card-icon.pink {
  background: #fce4ec;
  color: #c2185b;
}

.card-info { display: flex; flex-direction: column; }

.card-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.card-desc {
  font-size: 0.75rem;
  color: var(--soft-gray);
}

.card-1 { top: 10%; right: 0; animation-delay: 0s; }
.card-2 { bottom: 20%; left: -30px; animation-delay: 1.5s; }
.card-3 { bottom: 5%; right: 10%; animation-delay: 3s; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 6rem 0;
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--soft-gray);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.about-card {
  background: var(--cream);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-card.featured {
  background: var(--sage-green);
  color: white;
}

.about-card.featured h3 { color: white; }
.about-card.featured p { color: rgba(255, 255, 255, 0.9); }
.about-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.about-card p {
  color: var(--soft-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-card .card-icon {
  width: 70px; height: 70px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--sage-dark);
}

.card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sage-green);
  transition: all 0.4s ease;
}

.about-card:hover .card-accent {
  height: 100%;
  opacity: 0.05;
}

.about-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 3px solid var(--blush-pink);
  border-radius: 16px;
  z-index: -1;
}

.about-content .content-tag {
  display: inline-block;
  background: var(--blush-light);
  color: var(--blush-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-content h3 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-list li i {
  color: var(--sage-green);
  font-size: 1.2rem;
}

.feature-list li span {
  color: var(--charcoal);
  font-weight: 500;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--light-gray);
  background: transparent;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--soft-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--sage-green);
  color: var(--sage-dark);
}

.filter-btn.active {
  background: var(--sage-green);
  border-color: var(--sage-green);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .product-image img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.bestseller { background: var(--blush-dark); color: white; }
.product-badge.new { background: var(--sage-green); color: white; }
.product-badge.limited { background: var(--charcoal); color: white; }

.product-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay-btn {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  background: var(--sage-green);
  color: white;
  transform: scale(1.1);
}

.overlay-btn.cart:hover { background: var(--blush-dark); }

.product-info { padding: 1.5rem; }

.product-category {
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin: 0.5rem 0;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--soft-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
  font-family: 'Playfair Display', serif;
}

.scent-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.25rem 0.7rem;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--soft-gray);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--charcoal) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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");
}

.process .section-header { position: relative; z-index: 1; }
.process .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sage-light);
  backdrop-filter: blur(10px);
}
.process .section-title { color: white; }
.process .section-desc { color: rgba(255, 255, 255, 0.7); }

.timeline {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.timeline-item.reverse { direction: rtl; }
.timeline-item.reverse .timeline-content,
.timeline-item.reverse .timeline-image { direction: ltr; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-content {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-light);
  opacity: 0.3;
  position: absolute;
  top: 1rem; right: 1.5rem;
}

.timeline-content h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

.timeline-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 6rem 0;
  background: var(--warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  font-size: 2rem;
  color: var(--sage-green);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.stars {
  color: #f4c430;
  font-size: 0.85rem;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: var(--soft-gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.input-group {
  flex: 1;
  position: relative;
}

.input-group i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--soft-gray);
}

.input-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid white;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.input-group input:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 4px rgba(168, 181, 160, 0.1);
}

.btn-subscribe {
  padding: 1rem 2.5rem;
  background: var(--sage-green);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(138, 154, 130, 0.3);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--soft-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.privacy-note i { color: var(--sage-green); }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--sage-green);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--sage-light);
  font-family: 'Playfair Display', serif;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--sage-light);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom .made-with {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom .made-with i { color: var(--blush-dark); }

/* ========================================
   CART SIDEBAR
   ======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  justify-content: flex-end;
  animation: fadeIn 0.3s ease;
}

.cart-overlay.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-panel {
  width: 100%;
  max-width: 450px;
  background: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.cart-header h3 {
  font-size: 1.3rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-header h3 i { color: var(--sage-green); }

.close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--soft-gray);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.close-btn:hover { color: var(--charcoal); }

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

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream);
}

.cart-item img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details { flex: 1; }

.item-details h4 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.item-price {
  color: var(--sage-dark);
  font-weight: 600;
}

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

.quantity {
  background: var(--cream);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.remove-btn {
  background: none;
  border: none;
  color: var(--soft-gray);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.remove-btn:hover { color: #e74c3c; }

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

.empty-cart i {
  font-size: 4rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.empty-cart p {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-cart span {
  color: var(--soft-gray);
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  background: var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-total span:first-child {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--sage-green);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(138, 154, 130, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-links.active { transform: translateY(0); }
  .mobile-toggle { display: block; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title { font-size: 3rem; }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrapper { order: -1; }

  .hero-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .floating-card { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .timeline-item.reverse .timeline-content,
  .timeline-item.reverse .timeline-image { direction: ltr; }

  .timeline-image { order: -1; }
  .timeline-image img { height: 250px; }

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

@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title { font-size: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .btn-subscribe { justify-content: center; }
  .newsletter-text h2 { font-size: 2rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links { justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
