/* ============================================
   PETFELIZ - ESTILOS PRINCIPAIS
   ============================================ */

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fed7aa;
  --secondary: #1e3a5f;
  --secondary-light: #2d5a8e;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-cream: #fff7ed;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.top-bar-promo {
  background: var(--primary);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  animation: pulse-badge 2s infinite;
}

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

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.top-bar-link:hover { opacity: 1; }
.top-bar-link svg { width: 14px; height: 14px; }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-main {
  padding: 14px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text { line-height: 1.2; }
.logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-slogan {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.search-bar {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 11px 50px 11px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.search-bar input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition);
}

.search-btn:hover { background: var(--primary-dark); }
.search-btn svg { width: 16px; height: 16px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  transition: all var(--transition);
}

.header-action-btn:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.header-action-btn svg { width: 20px; height: 20px; }

.btn-whatsapp {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
}

.btn-whatsapp:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--secondary);
  position: relative;
}

.nav .container {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-link svg { width: 13px; height: 13px; opacity: 0.7; }

.nav-item:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
  border: 1px solid var(--border);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-medium);
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

.btn-nav-schedule {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.btn-nav-schedule:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-nav-schedule svg { width: 14px; height: 14px; }

.mobile-menu-btn {
  display: none;
  padding: 10px;
  color: #fff;
}

.mobile-menu-btn svg { width: 22px; height: 22px; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #f97316;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-1 {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 40%, #1e3a5f 100%);
  min-height: 520px;
}

.hero-slide-2 {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 40%, #c2410c 100%);
  min-height: 520px;
}

.hero-slide-3 {
  background: linear-gradient(135deg, #166534 0%, #16a34a 40%, #15803d 100%);
  min-height: 520px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 60px 0;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-title span {
  color: #fcd34d;
  position: relative;
}

.hero-subtitle {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #fff;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

.btn-hero-primary svg,
.btn-hero-secondary svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 28px;
}

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

.hero-stat-value {
  font-size: 24px;
  font-weight: 900;
  color: #fcd34d;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 3px;
  font-weight: 500;
}

.hero-image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

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

.hero-float-card.card-1 { bottom: 24px; left: -24px; }
.hero-float-card.card-2 { top: 24px; right: -24px; }

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon.orange { background: var(--primary-light); color: var(--primary); }
.float-icon.green { background: #dcfce7; color: var(--accent); }
.float-icon svg { width: 20px; height: 20px; }

.float-info .float-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.float-info .float-label {
  font-size: 11px;
  color: var(--text-light);
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}

.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ============================================
   QUICK LINKS
   ============================================ */
.quick-links {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.quick-links .container {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-links .container::-webkit-scrollbar { display: none; }

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.quick-link-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-cream);
}

.quick-link-item.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.quick-link-item svg { width: 16px; height: 16px; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section { padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-cream);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-eyebrow svg { width: 13px; height: 13px; }

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title span { color: var(--primary); }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--bg-white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.category-card:hover {
  border-color: var(--primary);
  background: var(--bg-cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.category-card:hover .category-icon { transform: scale(1.1) rotate(-5deg); }

.category-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.category-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.products { background: var(--bg-light); }

.products-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
}

.products-tab {
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.products-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img-area {
  position: relative;
  background: var(--bg-light);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--transition);
}

.product-card:hover .product-img-area img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.badge-sale { background: #fee2e2; color: #dc2626; }
.badge-new { background: #dcfce7; color: #16a34a; }
.badge-popular { background: #fef3c7; color: #d97706; }

.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  color: var(--text-muted);
}

.product-fav:hover { color: #ef4444; transform: scale(1.1); }
.product-fav svg { width: 16px; height: 16px; }

.product-info { padding: 16px; }

.product-brand {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.stars { color: #f59e0b; font-size: 12px; }

.rating-count { font-size: 11px; color: var(--text-muted); }

.product-price-area {
  margin-bottom: 12px;
}

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

.price-current {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.price-installment {
  font-size: 11px;
  color: var(--text-light);
}

.btn-add-cart {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}

.btn-add-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-add-cart svg { width: 16px; height: 16px; }

.products-footer {
  text-align: center;
  margin-top: 36px;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-see-all:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-see-all svg { width: 16px; height: 16px; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 0;
  overflow: hidden;
}

.promo-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 160px;
  padding-top: 0;
  padding-bottom: 0;
}

.promo-text { color: #fff; padding: 32px 0; }
.promo-eyebrow {
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.promo-desc { font-size: 15px; opacity: 0.88; }

.promo-action { flex-shrink: 0; }

.btn-promo {
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.service-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
}

.service-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-service {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.service-card:hover .btn-service { gap: 8px; }
.btn-service svg { width: 14px; height: 14px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--secondary);
  color: #fff;
  padding: 60px 0;
}

.why-us .section-title { color: #fff; }
.why-us .section-title span { color: #fcd34d; }
.why-us .section-desc { color: rgba(255,255,255,0.7); }
.why-us .section-eyebrow {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(249,115,22,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fcd34d;
  transition: transform var(--transition);
}

.benefit-card:hover .benefit-icon { transform: scale(1.1); }
.benefit-icon svg { width: 28px; height: 28px; }

.benefit-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.benefit-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.avatar-orange { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.avatar-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.avatar-green { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.avatar-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-pet {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-verified svg { width: 12px; height: 12px; }

/* ============================================
   BRANDS
   ============================================ */
.brands { background: var(--bg-white); padding: 40px 0; }

.brands-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: all var(--transition);
  min-width: 120px;
}

.brand-item:hover {
  border-color: var(--primary);
  background: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.brand-item span {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}

.brand-item:hover span { color: var(--primary); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-text .section-header { text-align: left; margin-bottom: 16px; }

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
}

.newsletter-benefit svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.newsletter-form-area { }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row { display: flex; gap: 12px; }

.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.form-input::placeholder { color: var(--text-muted); }

.btn-newsletter {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.45);
}

.newsletter-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-disclaimer svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-slogan { color: rgba(255,255,255,0.6); }

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-btn svg { width: 17px; height: 17px; }

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

.footer-payments {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.floating-whatsapp-btn svg { width: 28px; height: 28px; }

.floating-tooltip {
  background: #fff;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.mobile-nav.open { display: flex; }

.mobile-nav-panel {
  background: #fff;
  width: 300px;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideIn 0.3s ease;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
}

.mobile-nav-close svg { width: 18px; height: 18px; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-medium);
  transition: all var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-light);
  color: var(--primary);
}

.mobile-nav-link svg { width: 18px; height: 18px; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success .toast-icon { color: var(--accent); }
.toast.error .toast-icon { color: #ef4444; }
.toast svg { width: 18px; height: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-left .top-bar-item:not(:first-child) { display: none; }
  .search-bar { display: none; }
  .header-actions .header-action-btn:not(.btn-whatsapp):not(.cart-btn) { display: none; }
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-image-area { display: none; }
  .hero-slide-1, .hero-slide-2, .hero-slide-3 { min-height: 420px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-banner .container { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  .hero-stats { gap: 16px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .top-bar-right { display: none; }
  .quick-links { display: none; }
}

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

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
