/* ============================================
   LAREX SHOP - MODERN E-COMMERCE HOME v2
   ============================================ */

:root {
  --primary: #000000;
  --accent: #333333;
  --bg: #ffffff;
  --surface: #f5f5f5;
  --border: #d9d9d9;
  --text: #111111;
  --text-muted: #666666;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header-v2 {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-v2__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-v2__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.header-v2__logo img {
  height: 40px;
  width: auto;
}

.header-v2__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-v2__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.header-v2__nav a:hover {
  color: var(--accent);
}

.header-v2__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-v2__nav a:hover::after {
  width: 100%;
}

.header-v2__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-v2__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  color: var(--text);
}

.header-v2__icon-btn:hover {
  background: var(--surface);
  color: var(--accent);
}

.header-v2__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-v2__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.header-v2__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .header-v2__container {
    padding: 0 40px;
  }
  
  .header-v2__nav {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-v2__container {
    padding: 0 24px;
    height: 64px;
  }
  
  .header-v2__logo {
    font-size: 20px;
  }
  
  .header-v2__logo img {
    height: 32px;
  }
  
  .header-v2__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .header-v2__nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .header-v2__mobile-toggle {
    display: flex;
  }
  
  .header-v2__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  .header-v2__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .header-v2__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* ============================================
   HERO SLIDER - FULL WIDTH
   ============================================ */
.hero-slider-fullwidth {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
}

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

.hero-slider-fullwidth__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slider-fullwidth__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider-fullwidth__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider-fullwidth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider-fullwidth__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-slider-fullwidth__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-slider-fullwidth__content-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.hero-slider-fullwidth__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slider-fullwidth__title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  max-width: 800px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-slider-fullwidth__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-slider-fullwidth__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-slider-fullwidth__actions .btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-slider-fullwidth__actions .btn-primary {
  background: white;
  color: #000000;
}

.hero-slider-fullwidth__actions .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.hero-slider-fullwidth__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-fullwidth__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-slider-fullwidth__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-slider-fullwidth__stat {
  text-align: left;
}

.hero-slider-fullwidth__stat-value {
  font-size: 48px;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slider-fullwidth__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Navigation Arrows */
.hero-slider-fullwidth__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-fullwidth__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-fullwidth__nav--prev {
  left: 40px;
}

.hero-slider-fullwidth__nav--next {
  right: 40px;
}

/* Dots */
.hero-slider-fullwidth__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-slider-fullwidth__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-fullwidth__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-slider-fullwidth__dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

/* OLD HERO SECTION - Split Layout (keeping for reference) */
.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #eeeeee 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-v2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(60px, calc((100vw - 1400px) / 2 + 60px));
  position: relative;
  z-index: 2;
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-v2__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-v2__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-v2__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-v2__actions .btn {
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-v2__actions .btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.hero-v2__actions .btn-primary:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.hero-v2__actions .btn-secondary:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.hero-v2__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px max(60px, calc((100vw - 1400px) / 2 + 60px)) 60px 60px;
  overflow: hidden;
}

.hero-v2__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-v2__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  animation: pulse 2s ease-in-out infinite;
}

.hero-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-v2__stat {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-v2__stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-v2__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ============================================
   CATEGORIES MODERN - SOFT DESIGN
   ============================================ */
.categories-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.categories-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.categories-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.categories-modern__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.categories-modern__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease;
}

.categories-modern__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.categories-modern__badge i {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.categories-modern__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.categories-modern__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.categories-modern__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.category-card-modern {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-card-modern__image-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #d9d9d9 100%);
}

.category-card-modern__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-modern:hover .category-card-modern__image {
  transform: scale(1.1);
}

.category-card-modern__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card-modern:hover .category-card-modern__overlay {
  opacity: 1;
}

.category-card-modern__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-card-modern__content {
  padding: 28px;
  position: relative;
}

.category-card-modern__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}

.category-card-modern__description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-modern__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card-modern__count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.category-card-modern__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card-modern:hover .category-card-modern__arrow {
  background: #111111;
  transform: translateX(4px);
}

.category-card-modern__arrow i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-modern {
    padding: 80px 0;
  }
  
  .categories-modern__container {
    padding: 0 40px;
  }
  
  .categories-modern__header {
    margin-bottom: 48px;
  }
  
  .categories-modern__grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .categories-modern {
    padding: 60px 0;
  }
  
  .categories-modern__container {
    padding: 0 24px;
  }
  
  .categories-modern__header {
    margin-bottom: 40px;
  }
  
  .categories-modern__title {
    font-size: 32px;
  }
  
  .categories-modern__subtitle {
    font-size: 16px;
  }
  
  .categories-modern__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-card-modern__content {
    padding: 20px;
  }
  
  .category-card-modern__name {
    font-size: 20px;
  }
}

/* ============================================
   NEW ARRIVALS MODERN - SOFT DESIGN
   ============================================ */
.new-arrivals-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.new-arrivals-modern::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.new-arrivals-modern::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.new-arrivals-modern__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.new-arrivals-modern__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease;
}

.new-arrivals-modern__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.new-arrivals-modern__badge i {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.new-arrivals-modern__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-arrivals-modern__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.new-arrivals-modern__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.product-card-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.product-card-modern__image-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #d9d9d9 100%);
}

.product-card-modern__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-card-modern__image {
  transform: scale(1.08);
}

.product-card-modern__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent), #888888);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  z-index: 2;
}

.product-card-modern__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-modern__category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-card-modern__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-card-modern__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-modern__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.product-card-modern__cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-card-modern:hover .product-card-modern__cart-btn {
  background: #111111;
  transform: scale(1.1);
}

.new-arrivals-modern__footer {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.new-arrivals-modern__view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.new-arrivals-modern__view-all:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.new-arrivals-modern__view-all i {
  transition: transform 0.3s ease;
}

.new-arrivals-modern__view-all:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .new-arrivals-modern {
    padding: 80px 0;
  }
  
  .new-arrivals-modern__container {
    padding: 0 40px;
  }
  
  .new-arrivals-modern__header {
    margin-bottom: 48px;
  }
  
  .new-arrivals-modern__grid {
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .new-arrivals-modern {
    padding: 60px 0;
  }
  
  .new-arrivals-modern__container {
    padding: 0 24px;
  }
  
  .new-arrivals-modern__header {
    margin-bottom: 40px;
  }
  
  .new-arrivals-modern__title {
    font-size: 32px;
  }
  
  .new-arrivals-modern__subtitle {
    font-size: 16px;
  }
  
  .new-arrivals-modern__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .product-card-modern__content {
    padding: 16px;
  }
  
  .product-card-modern__name {
    font-size: 14px;
  }
  
  .product-card-modern__price {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .new-arrivals-modern__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS MODERN - SOFT DESIGN
   ============================================ */
.testimonials-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-modern__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.testimonials-modern__header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease;
}

.testimonials-modern__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.testimonials-modern__badge i {
  font-size: 14px;
}

.testimonials-modern__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-modern__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-modern__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.testimonial-card-modern {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card-modern::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(102, 126, 234, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-card-modern__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card-modern__rating i {
  color: #888888;
  font-size: 16px;
}

.testimonial-card-modern__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card-modern__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-card-modern__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.testimonial-card-modern__info {
  flex: 1;
}

.testimonial-card-modern__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-card-modern__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-modern {
    padding: 80px 0;
  }
  
  .testimonials-modern__container {
    padding: 0 40px;
  }
  
  .testimonials-modern__header {
    margin-bottom: 48px;
  }
  
  .testimonials-modern__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-modern {
    padding: 60px 0;
  }
  
  .testimonials-modern__container {
    padding: 0 24px;
  }
  
  .testimonials-modern__header {
    margin-bottom: 40px;
  }
  
  .testimonials-modern__title {
    font-size: 32px;
  }
  
  .testimonials-modern__subtitle {
    font-size: 16px;
  }
  
  .testimonial-card-modern {
    padding: 24px;
  }
  
  .testimonial-card-modern__text {
    font-size: 14px;
  }
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
  background: var(--primary);
  color: white;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker-bar__track {
  display: flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.ticker-bar__item::before {
  content: '✦';
  color: var(--accent);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION CONTAINER
   ============================================ */
.section-v2 {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-v2__header {
  text-align: center;
  margin-bottom: 56px;
}

.section-v2__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-v2__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-v2__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.category-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-card-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card-v2:hover .category-card-v2__image {
  transform: scale(1.05);
}

.category-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.category-card-v2__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-card-v2__count {
  font-size: 14px;
  opacity: 0.9;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.product-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-v2__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
}

.product-card-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card-v2:hover .product-card-v2__image {
  transform: scale(1.08);
}

.product-card-v2__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-v2__content {
  padding: 20px;
}

.product-card-v2__category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-card-v2__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-v2__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-v2__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.product-card-v2__cart-btn {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.product-card-v2__cart-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  background: var(--surface);
  padding: 60px;
  border-radius: var(--radius-xl);
}

.feature-card-v2 {
  text-align: center;
}

.feature-card-v2__icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: var(--shadow-md);
}

.feature-card-v2__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-card-v2__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   BANNER PROMO
   ============================================ */
.banner-promo-v2 {
  background: linear-gradient(135deg, var(--primary) 0%, #111111 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-promo-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-promo-v2__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.banner-promo-v2__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.banner-promo-v2__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.banner-promo-v2__cta {
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.banner-promo-v2__cta:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card-v2 {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card-v2:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-v2__stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-card-v2__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card-v2__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card-v2__name {
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}

.testimonial-card-v2__location {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-v2 {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
}

.newsletter-v2__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.newsletter-v2__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.newsletter-v2__form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-v2__input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-v2__input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-v2__submit {
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-v2__submit:hover {
  background: #111111;
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Hero Slider Responsive */
  .hero-slider-fullwidth {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-slider-fullwidth__content-inner {
    padding: 0 40px;
  }
  
  .hero-slider-fullwidth__title {
    font-size: clamp(36px, 6vw, 64px);
  }
  
  .hero-slider-fullwidth__stats {
    gap: 32px;
  }
  
  .hero-slider-fullwidth__stat-value {
    font-size: 36px;
  }
  
  .hero-slider-fullwidth__nav {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .hero-slider-fullwidth__nav--prev {
    left: 20px;
  }
  
  .hero-slider-fullwidth__nav--next {
    right: 20px;
  }
  
  .hero-slider-fullwidth__dots {
    bottom: 30px;
  }
  
  /* Old Hero */
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-v2__content {
    padding: 60px 40px;
  }
  
  .hero-v2__visual {
    padding: 40px;
  }
  
  .section-v2 {
    padding: 60px 40px;
  }
  
  .banner-promo-v2 {
    padding: 60px 40px;
  }
  
  .newsletter-v2 {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* Hero Slider Mobile */
  .hero-slider-fullwidth {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-slider-fullwidth__content-inner {
    padding: 0 24px;
  }
  
  .hero-slider-fullwidth__title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 16px;
  }
  
  .hero-slider-fullwidth__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .hero-slider-fullwidth__actions {
    flex-direction: column;
    margin-bottom: 32px;
  }
  
  .hero-slider-fullwidth__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
  
  .hero-slider-fullwidth__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .hero-slider-fullwidth__stat {
    text-align: center;
  }
  
  .hero-slider-fullwidth__stat-value {
    font-size: 28px;
  }
  
  .hero-slider-fullwidth__stat-label {
    font-size: 11px;
  }
  
  .hero-slider-fullwidth__nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .hero-slider-fullwidth__nav--prev {
    left: 12px;
  }
  
  .hero-slider-fullwidth__nav--next {
    right: 12px;
  }
  
  .hero-slider-fullwidth__dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .hero-slider-fullwidth__dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-slider-fullwidth__dot.active {
    width: 24px;
  }
  
  /* Old Hero */
  .hero-v2__content {
    padding: 40px 24px;
  }
  
  .hero-v2__stats {
    grid-template-columns: 1fr;
  }
  
  .hero-v2__actions {
    flex-direction: column;
  }
  
  .hero-v2__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-v2 {
    padding: 40px 24px;
  }
  
  .product-grid-v2 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  
  .category-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .features-v2 {
    padding: 40px 24px;
    gap: 24px;
  }
  
  .banner-promo-v2 {
    padding: 40px 24px;
  }
  
  .newsletter-v2 {
    padding: 32px 24px;
  }
  
  .newsletter-v2__form {
    flex-direction: column;
  }
  
  .testimonials-v2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON & CHAT PANEL
   ============================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

.whatsapp-fab .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-float 3s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-fab .wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab .wa-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-fab .label {
  font-weight: 600;
  font-size: 15px;
}

.whatsapp-fab .tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.whatsapp-fab .tooltip::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  transform: rotate(45deg);
}

.whatsapp-fab:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Chat Panel */
.wa-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: 360px;
  max-width: calc(100vw - 48px);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.whatsapp-fab.open .wa-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-chat-panel__header {
  background: #25D366;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-chat-panel__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-chat-panel__avatar svg {
  width: 28px;
  height: 28px;
  color: #25D366;
}

.wa-chat-panel__info {
  flex: 1;
}

.wa-chat-panel__name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.wa-chat-panel__status {
  font-size: 13px;
  opacity: 0.9;
}

.wa-chat-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wa-chat-panel__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wa-chat-panel__body {
  padding: 20px;
  background: #f2f2f2;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}

.wa-chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  position: relative;
}

.wa-chat-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.wa-chat-bubble__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 4px;
}

.wa-chat-bubble__time {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.wa-chat-panel__footer {
  padding: 16px;
  background: white;
  border-top: 1px solid var(--border);
}

.wa-chat-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.wa-chat-form__input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  min-height: 44px;
  max-height: 120px;
  transition: var(--transition);
}

.wa-chat-form__input:focus {
  outline: none;
  border-color: #25D366;
}

.wa-chat-form__submit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.wa-chat-form__submit:hover {
  background: #20ba5a;
  transform: scale(1.05);
}

.wa-chat-form__submit:disabled {
  background: var(--border);
  cursor: not-allowed;
  transform: scale(1);
}

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

@media (max-width: 768px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
  }
  
  .whatsapp-fab .wa-btn {
    padding: 14px 20px;
  }
  
  .whatsapp-fab .label {
    display: none;
  }
  
  .whatsapp-fab .wa-btn svg {
    width: 28px;
    height: 28px;
  }
  
  .wa-chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-80 {
  margin-top: 80px;
}

