/* ZooPet - Tienda para Mascotas */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - ZooPet Green Theme */
  --green-dark: #1B5E20;
  --green-primary: #2E7D32;
  --green-medium: #43A047;
  --green-light: #66BB6A;
  --green-lime: #8BC34A;
  --white: #FFFFFF;
  --cream: #F5F5F5;
  --deep-charcoal: #212121;
  --light-gray: #E8E8E8;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  --footer-gradient: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  
  /* Shadows */
  --soft-shadow: 0 4px 20px rgba(27, 94, 32, 0.15);
  --card-shadow: 0 6px 25px rgba(27, 94, 32, 0.2);
  --button-shadow: 0 3px 15px rgba(46, 125, 50, 0.3);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--deep-charcoal);
  background-color: var(--cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 125, 50, 0.3);
  box-shadow: 0 2px 20px rgba(46, 46, 46, 0.08);
  transition: all 0.3s ease;
}

header:hover {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid var(--green-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 0.5rem;
  border-radius: 15px;
}

.logo:hover {
  transform: scale(1.05);
  background: rgba(234, 201, 204, 0.1);
  box-shadow: 0 4px 15px rgba(234, 201, 204, 0.3);
}

.logo-image {
  width: 55px;
  height: 55px;
  margin-right: 1rem;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(46, 46, 46, 0.1));
}

.logo:hover .logo-image {
  transform: rotate(10deg) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(234, 201, 204, 0.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--green-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-primary);
}

/* Legacy logo badge for fallback */
.logo-badge {
  width: 40px;
  height: 40px;
  background: var(--deep-charcoal);
  border-radius: 50% 20% 50% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  color: white;
  font-size: 0.8rem;
}

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

.nav-links li {
  position: relative;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--deep-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:not(.btn):hover {
  color: var(--green-primary);
  transform: translateY(-1px);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--green-light);
  color: var(--deep-charcoal);
  box-shadow: var(--button-shadow);
}

.btn-primary:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 163, 184, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-charcoal);
  border: 2px solid var(--green-light);
}

.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-shop {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(201, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-shop:hover::before {
  left: 100%;
}

.btn-shop:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 163, 184, 0.6);
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  height: 500px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 40px rgba(46, 46, 46, 0.15);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 34, 77, 0.7) 0%,
    rgba(201, 163, 184, 0.6) 50%,
    rgba(234, 201, 204, 0.4) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.slide-text {
  flex: 1;
  max-width: 500px;
}

.slide-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.slide-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.slide-offer {
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 0.5rem 0;
  line-height: 0.9;
}

.slide-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--green-dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  background: var(--green-light);
  color: white;
}

.slide-logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)) brightness(1.1);
  transition: transform 0.3s ease;
}

.slide-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Slideshow Navigation */
.slideshow-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  transform: scale(1.3);
}

.nav-dot:hover {
  background: var(--green-light);
  transform: scale(1.2);
}

/* Slideshow Arrows */
.slideshow-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 3;
  pointer-events: none;
}

.arrow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 1.2rem;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.1);
}

/* Legacy Hero Section (fallback) */
.hero-legacy {
  background: var(--hero-gradient);
  padding: 120px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Trust Icons Section */
.trust-icons {
  background: var(--deep-charcoal);
  padding: 2rem 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 30px rgba(46, 46, 46, 0.15);
}

.trust-icons-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.trust-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.trust-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234, 201, 204, 0.1), transparent);
  transition: left 0.5s ease;
}

.trust-icon:hover::before {
  left: 100%;
}

.trust-icon:hover {
  transform: translateY(-2px);
  border-color: var(--green-light);
  background: rgba(234, 201, 204, 0.05);
}

.trust-icon-symbol {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.trust-icon:hover .trust-icon-symbol {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(234, 201, 204, 0.4);
}

.trust-icon-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.trust-icon-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--green-light);
}

.trust-icon-description {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.3;
  margin: 0;
}

.trust-icon-highlight {
  color: var(--green-light);
  font-weight: 600;
}

/* Trust Icons Responsive */
@media (max-width: 768px) {
  .trust-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .trust-icon {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0.5rem;
  }
  
  .trust-icon-symbol {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .trust-icon-title {
    font-size: 0.9rem;
  }
  
  .trust-icon-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .trust-icons-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .trust-icon {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }
}

/* Product Categories Section */
.product-categories {
  padding: 60px 2rem;
  background: var(--cream);
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto;
}

.categories-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 3rem;
}

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

.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(46, 46, 46, 0.2);
  border-color: var(--green-light);
}

.category-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.category-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 34, 77, 0.1) 0%,
    rgba(201, 163, 184, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-image::before {
  opacity: 1;
}

.category-content {
  padding: 1.5rem;
  text-align: center;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 1rem;
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(234, 201, 204, 0.4);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(234, 201, 204, 0.6);
}

.category-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 0.9rem;
  color: var(--deep-charcoal);
  opacity: 0.7;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.category-card:hover .category-cta {
  background: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 163, 184, 0.4);
}

/* Categories Responsive */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .category-image {
    height: 150px;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: -25px auto 1rem;
  }
  
  .category-name {
    font-size: 1.1rem;
  }
  
  .category-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-image {
    height: 180px;
  }
}

/* Top Sellers Section */
.top-sellers {
  padding: 50px 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.top-sellers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.top-sellers-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Products Carousel */
.products-carousel-container {
  position: relative;
  margin-bottom: 3rem;
}

.products-carousel {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.products-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

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

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.bestseller {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
}

.product-badge.discount {
  background: linear-gradient(135deg, #FF6B6B, #FF5252);
  color: white;
}

.product-badge.new {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
}

.product-badge.limited {
  background: linear-gradient(135deg, #9C27B0, #673AB7);
  color: white;
}

/* Product Image */
.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}

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

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--green-light);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

/* Product Info */
.product-info {
  padding: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #FFD700;
  font-size: 0.9rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.6rem;
}

.current-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
}

.original-price {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 163, 184, 0.4);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--green-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  color: var(--green-light);
  font-size: 1.1rem;
}

.carousel-btn:hover {
  background: var(--green-light);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--beige);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--green-light);
  transform: scale(1.2);
}

/* Section CTA */
.section-cta {
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 163, 184, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 250px;
  }
}

@media (max-width: 768px) {
  .top-sellers {
    padding: 40px 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-card {
    flex: 0 0 220px;
  }
  
  .products-track {
    gap: 1rem;
  }
  
  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 280px;
  }
  
  .products-carousel {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}

/* Services Section - Premium Professional Design */
.services {
  padding: 80px 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--deep-charcoal);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

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

/* Service Card - Modern Card Design */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(46, 46, 46, 0.15);
}

/* Service Image Container */
.service-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.service-badge {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Content */
.service-content {
  padding: 1.5rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin: 0;
  line-height: 1.2;
}

.service-description {
  color: var(--deep-charcoal);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Service Details */
.service-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--deep-charcoal);
}

.service-info i {
  color: var(--green-primary);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* Service Actions */
.service-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-btn {
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-btn:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white;
}

.service-link {
  color: var(--green-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--green-light);
  text-decoration: underline;
}

/* Services CTA */
.services-cta {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--light-gray);
}

.services-cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 1rem;
}

.services-cta-content p {
  font-size: 1.1rem;
  color: var(--deep-charcoal);
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Services Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    gap: 1.5rem;
  }
  
  .services-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .services {
    padding: 60px 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
  }
  
  .service-image-container {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 50px 1rem;
  }
  
  .services-header {
    margin-bottom: 3rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  
  .service-content {
    padding: 1.25rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .services-cta {
    padding: 2rem 1.5rem;
  }
  
  .services-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .services-cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 40px 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-image-container {
    height: 160px;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
  
  .service-details {
    gap: 0.4rem;
  }
  
  .service-info {
    font-size: 0.85rem;
  }
  
  .services-cta {
    padding: 1.5rem 1rem;
  }
  
  .services-cta-content h3 {
    font-size: 1.3rem;
  }
  }
}

/* Promo Section */
.promo {
  background: var(--beige);
  padding: 60px 2rem;
  text-align: center;
  position: relative;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
}

.promo h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promo .emoji {
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

/* Testimonials - Premium BarkBox Carousel Style */
.testimonials {
  padding: 80px 2rem;
  background: var(--off-white);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: var(--deep-charcoal);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.see-all-reviews-btn {
  background: white;
  color: var(--deep-charcoal);
  border: 2px solid var(--deep-charcoal);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.see-all-reviews-btn:hover {
  background: var(--deep-charcoal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 46, 46, 0.2);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
  position: relative;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 2rem;
  padding: 2rem 0;
}

.testimonial-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--light-gray);
  position: relative;
}

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

.testimonial-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.testimonial-content {
  padding: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--deep-charcoal);
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-rating {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stars-large {
  display: flex;
  gap: 3px;
}

.stars-large i {
  color: #FFD700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .stars-large i {
  transform: scale(1.15);
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  opacity: 0.8;
}

/* Testimonials Carousel Controls */
.testimonials-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--green-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  color: var(--green-light);
  font-size: 1.1rem;
}

.testimonials-btn:hover {
  background: var(--green-light);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonials-prev {
  left: -25px;
}

.testimonials-next {
  right: -25px;
}

/* Testimonials Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--beige);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dot.active,
.testimonials-dot:hover {
  background: var(--green-light);
  transform: scale(1.2);
}

/* Logo Variants */
.logo-large {
  width: 120px;
  height: 120px;
  margin: 2rem auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(46, 46, 46, 0.15));
}

.logo-medium {
  width: 80px;
  height: 80px;
}

.logo-small {
  width: 60px;
  height: 60px;
}

/* Footer */
footer {
  background: var(--footer-gradient);
  color: white;
  padding: 60px 2rem 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--green-light);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--green-light);
}

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

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

.social-links a:hover {
  background: var(--green-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Header Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--deep-charcoal);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--green-light);
  color: white;
}

/* Header Enhancement Effects */
@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header {
  animation: headerSlideIn 0.6s ease-out;
}

/* Navigation Items Stagger Animation */
.nav-links li {
  opacity: 0;
  transform: translateY(-10px);
  animation: navItemSlideIn 0.5s ease forwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes navItemSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 400px;
    margin-top: 70px;
  }
  
  .slide-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .slide-title {
    font-size: 2.2rem;
  }
  
  .slide-offer {
    font-size: 3rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
  }
  
  .slide-logo {
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
  }
  
  .slideshow-arrows {
    padding: 0 1rem;
  }
  
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .logo-text {
    display: none;
  }
  
  .logo-image {
    margin-right: 0;
  }
  
  nav {
    padding: 1rem 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-muted {
  opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50px;
  padding: 15px 20px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-text {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    padding: 12px 16px;
    border-radius: 50px;
  }
  
  .whatsapp-button i {
    font-size: 20px;
  }
  
  .whatsapp-text {
    font-size: 13px;
  }
}

/* ===== CLEAN DOUBLE HERO SECTION ===== */
.double-hero {
  display: flex;
  min-height: 70vh;
  position: relative;
  background: linear-gradient(135deg, 
    var(--cream) 0%, 
    var(--green-light) 50%, 
    var(--green-primary) 100%);
}

.double-hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
}

.double-hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Hero Content Styles */
.hero-content {
  max-width: 500px;
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-action {
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--text-dark), var(--green-primary));
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-feature i {
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Floating Badges */
.floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.badge-2 {
  top: 60%;
  right: 20px;
  background: rgba(244, 188, 203, 0.95);
  animation-delay: -2s;
}

.badge-3 {
  bottom: 20px;
  left: 30%;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  animation-delay: -4s;
}

.badge-3 i {
  color: #ff6f00;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .double-hero {
    flex-direction: column;
    min-height: auto;
  }
  
  .double-hero-left,
  .double-hero-right {
    flex: none;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-image-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .double-hero-left {
    padding: 3rem 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-image-container {
    height: 300px;
    margin: 2rem 0;
  }
  
  .floating-badge {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ===== PREMIUM VISUAL ENHANCEMENTS ===== */

/* Enhanced Header with Backdrop Blur */
header {
  backdrop-filter: blur(20px);
  background: rgba(255, 250, 247, 0.95);
  transition: all 0.3s ease;
}

header:hover {
  background: rgba(255, 250, 247, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

/* Logo Enhanced Animation */
.logo:hover .logo-image {
  transform: scale(1.05) rotate(2deg);
  transition: all 0.3s ease;
}

.logo:hover .logo-main {
  color: var(--green-primary);
  transition: all 0.3s ease;
}

/* Navigation Links Premium Hover */
.nav-links a:hover {
  transform: translateY(-2px);
  color: var(--green-primary);
  text-shadow: 0 2px 8px rgba(203, 166, 171, 0.3);
}

/* Enhanced Trust Icons */
.trust-icon:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--cream), rgba(255, 255, 255, 0.9));
}

.trust-icon:hover .trust-icon-symbol {
  transform: scale(1.1) rotate(5deg);
  color: var(--green-primary);
}

.trust-icon:hover .trust-icon-highlight {
  animation: shimmer 1.5s ease-in-out infinite;
}

/* Category Cards Premium Effects */
.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.category-card:hover .category-image {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.category-card:hover .category-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--green-primary);
}

.category-card:hover .category-cta {
  transform: translateX(8px);
  color: var(--green-primary);
}

/* Product Cards Enhanced */
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.product-card:hover .product-overlay {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.product-card:hover .add-to-cart-btn {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(203, 166, 171, 0.4);
}

/* Service Cards Premium Enhancement */
.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.service-card:hover .service-image {
  transform: scale(1.15);
  filter: brightness(1.1) contrast(1.1);
}

.service-card:hover .service-icon {
  transform: scale(1.3) rotate(10deg);
  color: var(--green-primary);
}

.service-card:hover .service-btn {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(203, 166, 171, 0.5);
}

/* Testimonials Cards Enhancement */
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.testimonial-card:hover .stars-large i {
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
  animation: starTwinkle 2s ease-in-out infinite;
}

/* Enhanced Buttons */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  box-shadow: 0 12px 35px rgba(203, 166, 171, 0.4);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
  transform: translateY(-3px) scale(1.05);
}

/* Footer Enhancement */
footer:hover {
  background: linear-gradient(135deg, 
    rgba(88, 88, 88, 0.95), 
    rgba(203, 166, 171, 0.1));
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.2) rotate(10deg);
  background: var(--green-primary);
  box-shadow: 0 8px 25px rgba(203, 166, 171, 0.5);
}

/* Smooth Page Transitions */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Reveal Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px #ffd700);
  }
}

/* Loading Animation for Images */
img {
  transition: all 0.5s ease;
}

img:not([src]) {
  opacity: 0;
}

img[src] {
  opacity: 1;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Focus States for Accessibility */
button:focus,
a:focus,
input:focus {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(244, 188, 203, 0.3);
}

/* Premium Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: shimmerLoad 2s infinite;
}

@keyframes shimmerLoad {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== MOBILE OPTIMIZATION ===== */

/* General Mobile Improvements */
@media (max-width: 768px) {
  /* Better touch targets */
  .btn, .add-to-cart-btn, .quick-view-btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  /* Improved spacing */
  .container {
    padding: 0 1rem;
  }
  
  /* Better text readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Optimize hero section for mobile - fix header overlap and parallax gaps */
  .hero-slideshow {
    min-height: 70vh;
    margin-top: 0;
    padding-top: 0.5rem;
    overflow: hidden; /* Prevent gaps */
    position: relative;
  }
  
  /* Disable parallax transform on mobile */
  .hero-slide {
    transform: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .slide-content {
    padding: 2rem 1rem;
  }
  
  .slide-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .slide-offer {
    font-size: 2rem;
    margin: 1rem 0;
  }
  
  /* Trust icons mobile optimization */
  .trust-icons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .trust-icon {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .trust-icon-symbol {
    margin-bottom: 1rem;
  }
  
  .trust-icon-title {
    font-size: 1.1rem;
  }
  
  .trust-icon-description {
    font-size: 0.9rem;
  }
  
  /* Categories mobile grid */
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card {
    min-height: 200px;
  }
  
  /* Products carousel mobile */
  .products-carousel-container {
    padding: 0 1rem;
  }
  
  .product-card {
    min-width: 250px;
    margin-right: 1rem;
  }
  
  .product-image {
    height: 180px;
  }
  
  /* Services mobile layout */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    max-width: none;
  }
  
  .service-image-container {
    height: 200px;
  }
  
  /* Testimonials mobile */
  .testimonials-carousel-container {
    padding: 0 1rem;
  }
  
  .testimonial-card {
    min-width: 280px;
    margin-right: 1rem;
  }
  
  .testimonial-image {
    height: 150px;
  }
  
  /* Double hero mobile improvements */
  .double-hero {
    padding: 2rem 0;
  }
  
  .double-hero-left {
    padding: 2rem 1rem;
  }
  
  .double-hero-right {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .hero-feature {
    font-size: 0.95rem;
  }
  
  .hero-image-container {
    height: 250px;
    border-radius: 15px;
  }
  
  /* Header mobile optimization - clean and minimal */
  header {
    position: relative;
    padding: 0.75rem 0;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
  }
  
  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .logo {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .logo-image {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .logo-main {
    font-size: 1rem;
    font-weight: 700;
  }
  
  .logo-sub {
    font-size: 0.65rem;
    opacity: 0.8;
  }
  
  /* Navigation mobile - simplified to just essential buttons */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  
  /* Hide non-essential nav links on mobile */
  .nav-links .desktop-only {
    display: none;
  }
  
  .nav-links .mobile-show {
    display: block;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 20px;
    display: block;
  }
  
  .btn-shop, .btn-primary {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
  }
  
  /* Hide mobile menu button if not implemented */
  .mobile-menu-btn {
    display: none;
  }
  
  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  /* WhatsApp button mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .whatsapp-button i {
    font-size: 20px;
  }
  
  /* Touch interactions */
  .product-card:active,
  .category-card:active,
  .service-card:active,
  .testimonial-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
  
  /* Remove hover effects on mobile */
  .product-card:hover,
  .category-card:hover,
  .service-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Ensure smooth scrolling on mobile */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Hero slideshow controls mobile */
  .slideshow-nav {
    bottom: 1rem;
    gap: 0.4rem;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
    margin: 0 0.2rem;
  }
  
  .slideshow-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 0 1rem;
    pointer-events: none;
  }
  
  .arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve carousel indicators on mobile */
  .carousel-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  /* Better button spacing on mobile */
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* Desktop - show all navigation elements */
@media (min-width: 769px) {
  .nav-links .desktop-only {
    display: block;
  }
  
  .nav-links .mobile-show {
    display: block;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .slide-title {
    font-size: 1.6rem;
  }
  
  .trust-icons-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    min-width: 220px;
  }
  
  .testimonial-card {
    min-width: 260px;
  }
  
  .hero-image-container {
    height: 200px;
  }
}

/* Parallax Effect for Hero Section */
.hero-slideshow {
  position: relative;
}

.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 250, 247, 0.1) 0%, 
    rgba(244, 188, 203, 0.1) 50%, 
    rgba(203, 166, 171, 0.1) 100%);
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(45deg, 
      rgba(255, 250, 247, 0.1) 0%, 
      rgba(244, 188, 203, 0.1) 50%, 
      rgba(203, 166, 171, 0.1) 100%);
  }
  50% {
    background: linear-gradient(45deg, 
      rgba(203, 166, 171, 0.1) 0%, 
      rgba(244, 188, 203, 0.1) 50%, 
      rgba(255, 250, 247, 0.1) 100%);
  }
}

/* ===== BOOKING SYSTEM STYLES ===== */
.booking-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream), var(--green-light));
  padding: 2rem 0;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.booking-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.booking-wizard {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Service Categories */
.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-category-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--green-light);
}

.service-category-card.selected {
  background: var(--green-light);
  border-color: var(--green-primary);
  transform: translateY(-5px);
}

.service-category-card .category-icon {
  font-size: 2rem;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.service-category-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-category-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.category-price {
  font-weight: 700;
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Services List */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: white;
  border: 2px solid var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
  border-color: var(--green-primary);
  background: var(--cream);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-details .duration {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.service-details .price {
  font-weight: 700;
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Calendar Styles */
.calendar-container {
  background: var(--cream);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.calendar-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.calendar-nav {
  background: var(--green-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  color: var(--text-medium);
  padding: 0.5rem;
  font-size: 0.9rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.calendar-day.available {
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--cream);
}

.calendar-day.available:hover {
  background: var(--green-light);
  border-color: var(--green-primary);
}

.calendar-day.selected {
  background: var(--green-primary);
  color: white;
}

.calendar-day.today {
  border: 2px solid var(--green-primary);
  font-weight: 800;
}

.calendar-day.past {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.closed {
  background: #ffebee;
  color: #d32f2f;
  cursor: not-allowed;
}

.calendar-day.other-month {
  opacity: 0.3;
}

/* Time Slots */
.time-slots-container {
  margin-top: 2rem;
}

.time-slots-container h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.time-slot {
  background: white;
  border: 2px solid var(--cream);
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.time-slot:hover {
  border-color: var(--green-light);
  background: var(--cream);
}

.time-slot.selected {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: white;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(203, 166, 171, 0.1);
}

/* Booking Summary */
.booking-summary-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 2rem;
}

.booking-summary-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.summary-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(203, 166, 171, 0.2);
}

.summary-section:last-of-type {
  border-bottom: none;
}

.summary-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-section p {
  margin-bottom: 0.25rem;
  color: var(--text-medium);
}

.summary-section p strong {
  color: var(--text-dark);
}

.summary-section .price {
  color: var(--green-primary);
  font-weight: 700;
}

.summary-total {
  background: var(--green-primary);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 1rem;
}

.summary-total h3 {
  margin: 0;
  font-size: 1.5rem;
}

/* Navigation */
.booking-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Success State */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.booking-success h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.booking-id {
  font-size: 1.1rem;
  color: var(--green-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .booking-container {
    padding: 0 1rem;
  }
  
  .booking-wizard {
    padding: 1.5rem;
  }
  
  .booking-title {
    font-size: 2rem;
  }
  
  .service-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .calendar-grid {
    gap: 0.25rem;
  }
  
  .time-slots {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }
  
  .booking-navigation {
    flex-direction: column;
  }
  
  .success-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button {
    padding: 10px 12px;
    border-radius: 40px;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    justify-content: center;
    border-radius: 50%;
  }
  
  .whatsapp-button i {
    font-size: 22px;
  }
}

/* Testimonials Responsive Design */
@media (max-width: 1400px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .testimonials-title {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .testimonials {
    padding: 60px 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-subtitle {
    font-size: 1.1rem;
  }
  
  .testimonial-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 50px 1rem;
  }
  
  .testimonials-header {
    margin-bottom: 3rem;
  }
  
  .testimonials-title {
    font-size: 2.2rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .testimonial-content {
    padding: 1.25rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
  
  .see-all-reviews-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 40px 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonials-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  
  .testimonial-image {
    height: 160px;
  }
  
  .testimonial-content {
    padding: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }
  
  .stars-large i {
    font-size: 1rem;
  }
  
  .reviewer-name {
    font-size: 0.8rem;
  }
}

/* ==========================================
   PRODUCT PAGE STYLES
   ========================================== */

.product-page {
  padding: 2rem 0;
  background: #fdfcf8;
  min-height: 100vh;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #8d7b68;
}

.breadcrumb a {
  color: #8d7b68;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #b4a081;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #c9b896;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-bestseller {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
}

.badge-premium {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.badge-natural {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #b4a081;
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.product-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #ffa726;
}

.rating-text {
  font-weight: 600;
  color: #333;
}

.view-reviews {
  color: #b4a081;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Price Section */
.price-section {
  background: linear-gradient(135deg, #f8f7f4, #f1f0eb);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #e8e5de;
}

.price-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
}

.original-price {
  font-size: 1.4rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
}

.price-savings {
  color: #27ae60;
  font-weight: 600;
}

/* Urgency Section */
.urgency-section {
  background: linear-gradient(135deg, #fff5f5, #fee);
  border: 1px solid #fed7d7;
  border-radius: 12px;
  padding: 1rem;
}

.stock-indicator,
.demand-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stock-indicator:last-child,
.demand-indicator:last-child {
  margin-bottom: 0;
}

.stock-indicator i {
  color: #e74c3c;
}

.demand-indicator i {
  color: #f39c12;
}

.stock-text,
.demand-text {
  font-size: 0.9rem;
  color: #333;
}

/* Product Variants */
.variant-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variant-label {
  font-weight: 600;
  color: #333;
}

.variant-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variant-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 2px solid #e8e5de;
  background: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.variant-btn:hover {
  border-color: #b4a081;
  transform: translateY(-2px);
}

.variant-btn.active {
  border-color: #b4a081;
  background: linear-gradient(135deg, #f8f7f4, #f1f0eb);
}

.variant-price {
  font-weight: 600;
  color: #2c3e50;
}

.variant-popular {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.variant-save {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Add to Cart Section */
.add-to-cart-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e8e5de;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.quantity-btn {
  background: #f8f7f4;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  transition: background 0.3s ease;
}

.quantity-btn:hover {
  background: #e8e5de;
}

#quantity {
  border: none;
  padding: 0.75rem;
  text-align: center;
  width: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  background: white;
}

.add-to-cart-btn-main {
  background: linear-gradient(135deg, #b4a081, #8d7b68);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(180, 160, 129, 0.3);
}

.add-to-cart-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(180, 160, 129, 0.4);
}

.btn-text {
  flex-grow: 1;
  text-align: center;
}

.btn-price {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Fast Actions */
.fast-actions {
  display: flex;
  gap: 1rem;
}

.buy-now-btn {
  flex: 1;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.buy-now-btn:hover {
  transform: translateY(-2px);
}

.wishlist-btn {
  background: white;
  border: 2px solid #e8e5de;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  border-color: #e74c3c;
  color: #e74c3c;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid #bae6fd;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guarantee-item:last-child {
  margin-bottom: 0;
}

.guarantee-item i {
  color: #0ea5e9;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.guarantee-text strong {
  display: block;
  color: #333;
  margin-bottom: 0.25rem;
}

.guarantee-text span {
  color: #666;
  font-size: 0.9rem;
}

/* Product Details Tabs */
.product-details {
  margin-top: 3rem;
}

.tabs-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  background: #f8f7f4;
  border-bottom: 2px solid #e8e5de;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 1.25rem 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
  color: #b4a081;
  background: white;
  border-bottom-color: #b4a081;
}

.tab-content {
  display: none;
  padding: 2rem;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f7f4;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-item i {
  color: #b4a081;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.benefit-text h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Ingredients */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ingredient-category h4 {
  color: #b4a081;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.ingredient-category ul {
  list-style: none;
  padding: 0;
}

.ingredient-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
}

.ingredient-category li:last-child {
  border-bottom: none;
}

/* Feeding Table */
.feeding-table {
  overflow-x: auto;
}

.feeding-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feeding-table th,
.feeding-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.feeding-table th {
  background: #f8f7f4;
  font-weight: 600;
  color: #333;
}

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

/* Reviews */
.reviews-summary {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-main {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

.score-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stars-large {
  display: flex;
  gap: 0.25rem;
  color: #ffa726;
  font-size: 1.2rem;
}

.reviews-breakdown {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.rating-bar span:first-child {
  width: 30px;
  font-weight: 500;
}

.bar {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(135deg, #ffa726, #ff9800);
}

.rating-bar span:last-child {
  width: 40px;
  text-align: right;
  font-size: 0.9rem;
  color: #666;
}

/* Review Items */
.review-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f7f4;
  border-radius: 15px;
  border-left: 4px solid #b4a081;
}

.review-item.featured {
  background: linear-gradient(135deg, #fff5f5, #fef7ff);
  border-left-color: #ffa726;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.review-rating {
  display: flex;
  gap: 0.2rem;
  color: #ffa726;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #e8f5e8;
  color: #27ae60;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.review-content h4 {
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.review-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-images {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.review-images img:hover {
  transform: scale(1.1);
}

.helpful-btn {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.helpful-btn:hover {
  border-color: #b4a081;
  color: #b4a081;
}

.helpful-btn.voted {
  background: #b4a081;
  color: white;
  border-color: #b4a081;
}

/* Recommendations */
.recommendations-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #f0f0f0;
}

.upsells,
.crosssells {
  margin-bottom: 3rem;
}

.upsells h3,
.crosssells h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.upsell-item {
  display: flex;
  gap: 1rem;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.upsell-item:hover {
  transform: translateY(-3px);
}

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

.upsell-content {
  flex: 1;
}

.upsell-content h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.upsell-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.upsell-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upsell-price .price {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}

.add-upsell-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.add-upsell-btn:hover {
  transform: scale(1.05);
}

.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.crosssell-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.crosssell-item:hover {
  transform: translateY(-3px);
}

.crosssell-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.crosssell-content h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.crosssell-price {
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.add-crosssell-btn {
  background: linear-gradient(135deg, #b4a081, #8d7b68);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  transition: transform 0.3s ease;
}

.add-crosssell-btn:hover {
  transform: scale(1.05);
}

/* Notifications */
.add-to-cart-notification,
.wishlist-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.add-to-cart-notification.show,
.wishlist-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wishlist-notification {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Mobile Responsiveness - Product Page */
@media (max-width: 768px) {
  .product-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-header h1 {
    font-size: 2rem;
  }
  
  .price-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .current-price {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .ingredients-list {
    grid-template-columns: 1fr;
  }
  
  .tabs-nav {
    flex-direction: column;
  }
  
  .reviews-summary {
    flex-direction: column;
    gap: 1rem;
  }
  
  .upsell-grid,
  .crosssell-grid {
    grid-template-columns: 1fr;
  }
  
  .upsell-item {
    flex-direction: column;
    text-align: center;
  }
  
  .upsell-item img {
    width: 100%;
    height: 120px;
  }
  
  .fast-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .add-to-cart-notification,
  .wishlist-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(-100px);
  }
  
  .add-to-cart-notification.show,
  .wishlist-notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .product-page {
    padding: 1rem 0;
  }
  
  .product-container {
    padding: 0 0.5rem;
  }
  
  .gallery-main {
    padding: 1rem;
  }
  
  .gallery-main img {
    height: 250px;
  }
  
  .product-info {
    gap: 1rem;
  }
  
  .tab-content {
    padding: 1.5rem 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
}

/* ============================================
   SIDEBAR CART - BARRA DE CARRITO LATERAL
   ============================================ */

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Sidebar Cart */
.sidebar-cart {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-cart.active {
  right: 0;
}

/* Cart Header */
.cart-header {
  padding: 1.5rem;
  border-bottom: 2px solid var(--cream);
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
}

.cart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: var(--green-light);
  color: white;
}

/* Cart Content */
.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
  color: white;
  text-align: center;
  padding: 12px 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
  0%, 100% { background: linear-gradient(135deg, #FF6B6B, #FF8E8E); }
  50% { background: linear-gradient(135deg, #FF8E8E, #FFB3B3); }
}

/* Free Shipping Progress */
.shipping-progress {
  padding: 1.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--cream);
}

.shipping-text {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-align: center;
}

.shipping-amount {
  font-weight: 700;
  color: var(--green-light);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  transition: width 0.5s ease;
  border-radius: 4px;
}

.shipping-incentive {
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
}

/* Cart Items */
.cart-items {
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
}

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

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--green-light);
  background: white;
  color: var(--green-light);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--green-light);
  color: white;
}

.qty-display {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  transition: color 0.3s ease;
}

.remove-item:hover {
  color: #FF6B6B;
}

/* Upsells Section */
.upsells-section {
  background: var(--cream);
  padding: 1.5rem 1rem;
  border-top: 1px solid #E0E0E0;
}

.upsells-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.upsell-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upsell-item:hover {
  border-color: var(--green-light);
}

.upsell-item.selected {
  border-color: var(--green-primary);
  background: #F9F7FF;
}

.upsell-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.upsell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upsell-info {
  flex: 1;
}

.upsell-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.upsell-price {
  font-size: 0.8rem;
  color: var(--green-light);
  font-weight: 600;
}

.upsell-checkbox {
  margin-left: auto;
  align-self: center;
}

/* Last Minute Suggestions */
.last-minute {
  background: linear-gradient(135deg, #FFF9E6, #FFF5CC);
  padding: 1rem;
  border-top: 1px solid #E0E0E0;
}

.last-minute-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.last-minute-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.last-minute-item {
  flex-shrink: 0;
  background: white;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  border: 1px solid #E0E0E0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}

.last-minute-item:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
}

.last-minute-item img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.last-minute-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
  line-height: 1.2;
}

.last-minute-price {
  font-size: 0.7rem;
  color: var(--green-light);
  font-weight: 600;
}

/* Cart Summary */
.cart-summary {
  padding: 1.5rem;
  background: var(--off-white);
  border-top: 2px solid var(--cream);
}

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

.summary-row.total {
  font-weight: 700;
  font-size: 1rem;
  border-top: 1px solid #E0E0E0;
  padding-top: 8px;
  margin-top: 8px;
}

.summary-label {
  color: var(--charcoal);
}

.summary-value {
  color: var(--green-primary);
  font-weight: 600;
}

.summary-value.free {
  color: #28a745;
}

/* Checkout Button */
.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 163, 184, 0.4);
}

.checkout-btn:active {
  transform: translateY(0);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-cart-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.continue-shopping {
  background: var(--green-light);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.continue-shopping:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .sidebar-cart {
    width: 100%;
    right: -100%;
  }
  
  .cart-items {
    max-height: 250px;
  }
  
  .last-minute-items {
    gap: 6px;
  }
  
  .last-minute-item {
    min-width: 70px;
    padding: 6px;
  }
}

/* Animation Classes */
.cart-item-enter {
  animation: cartItemEnter 0.4s ease;
}

@keyframes cartItemEnter {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF6B6B;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: badge-pulse 1s infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}