/* =========================================================
   PETPULSE 360° — PREMIUM PETSHOP — GLOBAL STYLES
   ========================================================= */

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

/* ─── CSS Custom Properties ─── */
:root {
  --green-deep:    #0B4A3F;
  --green-mid:     #1A6B5C;
  --green-light:   #2E8B76;
  --gold:          #D4A853;
  --gold-light:    #E8C47A;
  --gold-dark:     #B8922E;
  --cream:         #FBF8F3;
  --cream-dark:    #F2EDE4;
  --warm-gray:     #6B6560;
  --text-dark:     #1A1714;
  --text-mid:      #3D3835;
  --white:         #FFFFFF;
  --shadow-soft:   0 4px 24px rgba(11,74,63,0.10);
  --shadow-card:   0 8px 40px rgba(11,74,63,0.12);
  --shadow-gold:   0 8px 32px rgba(212,168,83,0.25);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 99px; }

/* ─── Selection ─── */
::selection { background: var(--gold); color: var(--white); }

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(11,74,63,0.08); color: var(--green-deep);
  border: 1px solid rgba(11,74,63,0.15);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full);
}
.tag.gold { background: rgba(212,168,83,0.12); color: var(--gold-dark); border-color: rgba(212,168,83,0.25); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: var(--radius-full);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: white; box-shadow: 0 4px 20px rgba(11,74,63,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(11,74,63,0.45); transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: white; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(212,168,83,0.4); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: white; }

.btn-ghost {
  background: rgba(255,255,255,0.15); color: white;
  border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-wpp {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white; box-shadow: 0 4px 20px rgba(18,140,126,0.4);
}
.btn-wpp:hover { box-shadow: 0 8px 32px rgba(18,140,126,0.5); transform: translateY(-1px); }

/* ─── Cards ─── */
.card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(11,74,63,0.16); }

/* ─── Section Titles ─── */
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1rem; color: var(--warm-gray); line-height: 1.7; max-width: 600px; }

/* ─── Divider ─── */
.divider { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(11,74,63,0.12); }
.divider span { font-size: 18px; }

/* =========================================================
   TOP BAR
   ========================================================= */
#topbar {
  background: var(--green-deep); color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 500; padding: 10px 0;
  text-align: center; position: relative;
}
#topbar .topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
#topbar .topbar-left { display: flex; align-items: center; gap: 20px; }
#topbar .topbar-item { display: flex; align-items: center; gap: 6px; }
#topbar .topbar-item span { font-size: 13px; }
#topbar .emergency-badge {
  background: #EF4444; color: white; font-weight: 800; font-size: 11px;
  padding: 3px 10px; border-radius: 99px; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.7; } }

/* =========================================================
   HEADER / NAV
   ========================================================= */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,243,0.94); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11,74,63,0.08);
  transition: var(--transition);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(11,74,63,0.12); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 16px rgba(11,74,63,0.35);
  transition: var(--transition);
}
.logo:hover .logo-icon { transform: scale(1.05) rotate(-3deg); }
.logo-text { font-family: 'Playfair Display', serif; }
.logo-name { font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.logo-tagline { font-size: 10px; color: var(--warm-gray); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; font-family: 'Inter', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--text-mid);
  position: relative; padding-bottom: 2px; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--green-deep); border-radius: 2px; transition: width 0.3s ease;
}
.nav-link:hover { color: var(--green-deep); }
.nav-link:hover::after { width: 100%; }
.nav-link.new::before { content: 'NOVO'; position: absolute; top: -10px; right: -28px; background: var(--gold); color: white; font-size: 8px; font-weight: 800; padding: 1px 5px; border-radius: 4px; letter-spacing: 0.05em; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; background: var(--cream-dark); border: 1px solid rgba(11,74,63,0.12);
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition); color: var(--text-dark);
}
.cart-btn:hover { background: var(--green-deep); color: white; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: white;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  animation: bounceIn 0.4s ease;
}
@keyframes bounceIn { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }

.admin-btn {
  font-size: 11px; font-weight: 700; color: var(--warm-gray);
  background: transparent; border: 1px dashed rgba(11,74,63,0.2);
  padding: 7px 12px; border-radius: 8px; transition: var(--transition);
}
.admin-btn:hover { border-color: var(--green-deep); color: var(--green-deep); }

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
  position: relative; overflow: hidden; min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0B4A3F 0%, #1A6B5C 40%, #0D5C4D 100%);
}

.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?auto=format&fit=crop&q=80&w=1600');
}
.hero-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,74,63,0.93) 0%, rgba(11,74,63,0.7) 55%, rgba(11,74,63,0.3) 100%);
}

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; padding: 80px 0; }
.hero-left { }
.hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,83,0.2); border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius-full);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.5s infinite; }

.hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); color: white; margin: 16px 0 24px; line-height: 1.1; }
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-desc { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 520px; margin-bottom: 36px; }

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 32px; }
.hero-stat { }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: white; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Hero Form Card */
.hero-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--gold) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero-form-title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.hero-form-sub { font-size: 12px; color: var(--warm-gray); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row-1 { margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 11px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-select {
  width: 100%; padding: 11px 14px; font-size: 13px;
  background: var(--cream); border: 1.5px solid rgba(11,74,63,0.12);
  border-radius: var(--radius-sm); color: var(--text-dark); font-family: 'Inter', sans-serif;
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus { border-color: var(--green-mid); background: white; box-shadow: 0 0 0 3px rgba(11,74,63,0.08); }
.form-checkbox-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--cream); border-radius: var(--radius-sm); border: 1.5px solid rgba(11,74,63,0.1); cursor: pointer; }
.form-checkbox-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--green-deep); cursor: pointer; }
.form-checkbox-label { font-size: 12px; color: var(--text-mid); line-height: 1.4; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
#trust {
  background: white; border-top: 1px solid rgba(11,74,63,0.06); border-bottom: 1px solid rgba(11,74,63,0.06);
  padding: 32px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(11,74,63,0.07); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.trust-label { font-size: 12px; font-weight: 600; color: var(--warm-gray); }
.trust-value { font-size: 16px; font-weight: 800; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.trust-divider { width: 1px; height: 40px; background: rgba(11,74,63,0.08); }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: var(--transition);
  border: 1px solid rgba(11,74,63,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,74,63,0.15); }
.service-img { height: 200px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-badge {
  position: absolute; top: 12px; right: 12px;
  background: white; color: var(--green-deep); font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: var(--radius-full); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.service-badge.gold { background: var(--gold); color: white; }
.service-body { padding: 24px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.service-duration { font-size: 11px; color: var(--warm-gray); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.service-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green-deep); }
.service-title { font-size: 18px; color: var(--text-dark); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.65; margin-bottom: 16px; }
.service-highlights { display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px; }
.service-highlight { font-size: 12px; color: var(--text-mid); display: flex; align-items: center; gap: 7px; }
.service-highlight::before { content: '✓'; color: var(--green-mid); font-weight: 800; }
.service-cta {
  width: 100%; padding: 12px; text-align: center; font-size: 13px; font-weight: 700;
  background: rgba(11,74,63,0.06); color: var(--green-deep); border-radius: 10px;
  transition: var(--transition); border: 1.5px solid rgba(11,74,63,0.12);
}
.service-cta:hover { background: var(--green-deep); color: white; border-color: var(--green-deep); }

/* =========================================================
   PET HAIR STUDIO
   ========================================================= */
#studio { background: var(--green-deep); color: white; }
.studio-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.studio-left { }
.studio-breed-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.breed-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; transition: var(--transition);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.breed-tab:hover { background: rgba(255,255,255,0.15); color: white; }
.breed-tab.active {
  background: var(--gold); color: white;
  border-color: var(--gold); box-shadow: 0 4px 16px rgba(212,168,83,0.35);
}
.studio-right { }
.grooming-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); overflow: hidden;
}
.grooming-img { height: 280px; overflow: hidden; position: relative; }
.grooming-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.grooming-card:hover .grooming-img img { transform: scale(1.05); }
.grooming-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,74,63,0.8) 0%, transparent 60%);
}
.grooming-img-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: white; font-size: 10px; font-weight: 800;
  padding: 5px 12px; border-radius: var(--radius-full); letter-spacing: 0.06em; text-transform: uppercase;
}
.grooming-img-title { position: absolute; bottom: 16px; left: 16px; right: 16px; }
.grooming-img-title h4 { font-size: 20px; color: white; }
.grooming-img-title span { font-size: 11px; color: rgba(255,255,255,0.7); }
.grooming-body { padding: 24px; }
.grooming-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.spec-item { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 12px; }
.spec-label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.spec-value { font-size: 13px; font-weight: 700; color: white; }
.spec-value.price { color: var(--gold-light); font-size: 18px; font-family: 'Playfair Display', serif; }
.grooming-highlights { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.grooming-highlight { font-size: 12px; color: rgba(255,255,255,0.75); display: flex; gap: 8px; align-items: flex-start; }
.grooming-highlight::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.style-switcher { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.style-tab {
  padding: 6px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12); transition: var(--transition);
}
.style-tab.active { background: rgba(212,168,83,0.25); color: var(--gold-light); border-color: rgba(212,168,83,0.4); }
.style-tab:hover { color: white; background: rgba(255,255,255,0.15); }

/* =========================================================
   PLANS / PETPASS
   ========================================================= */
#plans { background: var(--cream-dark); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.plan-card {
  background: white; border-radius: var(--radius-xl); padding: 36px;
  border: 2px solid rgba(11,74,63,0.08); position: relative; transition: var(--transition);
}
.plan-card.popular {
  background: var(--green-deep); border-color: var(--green-deep); color: white;
  transform: scale(1.03); box-shadow: 0 20px 60px rgba(11,74,63,0.35);
}
.plan-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: white; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 5px 20px; border-radius: var(--radius-full); text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm-gray); margin-bottom: 8px; }
.plan-card.popular .plan-name { color: rgba(255,255,255,0.6); }
.plan-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.plan-card.popular .plan-price { color: white; }
.plan-period { font-size: 14px; color: var(--warm-gray); margin-bottom: 4px; }
.plan-card.popular .plan-period { color: rgba(255,255,255,0.6); }
.plan-bath { font-size: 13px; font-weight: 700; color: var(--green-mid); margin: 16px 0; padding: 8px 14px; background: rgba(11,74,63,0.07); border-radius: 8px; }
.plan-card.popular .plan-bath { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.plan-divider { height: 1px; background: rgba(11,74,63,0.08); margin: 20px 0; }
.plan-card.popular .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature { font-size: 13px; display: flex; gap: 8px; align-items: flex-start; color: var(--text-mid); }
.plan-card.popular .plan-feature { color: rgba(255,255,255,0.85); }
.plan-feature-check { color: var(--green-mid); font-weight: 800; flex-shrink: 0; }
.plan-card.popular .plan-feature-check { color: var(--gold-light); }

/* =========================================================
   BEFORE/AFTER
   ========================================================= */
#transformations { background: white; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ba-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-soft); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-image { position: relative; overflow: hidden; aspect-ratio: 1; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ba-card:hover .ba-image img { transform: scale(1.04); }
.ba-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.6); color: white; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--radius-full); letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: white; z-index: 2; transform: translateX(-50%); }
.ba-divider-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 50%; background: white; z-index: 3; display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.ba-footer { padding: 16px 20px; background: var(--cream); }
.ba-footer h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.ba-footer p { font-size: 12px; color: var(--warm-gray); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials { background: var(--cream); }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,74,63,0.06); position: relative; }
.testimonial-quote { font-size: 48px; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: -8px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cream-dark); }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-pet { font-size: 12px; color: var(--warm-gray); }
.testimonial-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }

/* =========================================================
   SHOP / PRODUCTS
   ========================================================= */
#shop { background: var(--cream-dark); }
.shop-filters { display: flex; align-items: center; gap: 8px; margin: 32px 0 24px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  background: white; color: var(--text-mid); border: 1.5px solid rgba(11,74,63,0.1);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--green-deep); color: var(--green-deep); }
.filter-btn.active { background: var(--green-deep); color: white; border-color: var(--green-deep); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(11,74,63,0.06); transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,74,63,0.14); }
.product-img { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--cream); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: white; font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.05em;
}
.product-body { padding: 16px; }
.product-category { font-size: 10px; color: var(--warm-gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product-name { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.product-stars { color: var(--gold); font-size: 11px; }
.product-reviews { font-size: 11px; color: var(--warm-gray); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { }
.product-price-current { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--green-deep); }
.product-price-old { font-size: 11px; color: var(--warm-gray); text-decoration: line-through; }
.product-add {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-deep); color: white; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.product-add:hover { background: var(--green-mid); transform: scale(1.08); }

/* =========================================================
   FAQ
   ========================================================= */
#faq { background: white; }
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border-radius: var(--radius-md); border: 1px solid rgba(11,74,63,0.08); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; font-size: 15px; font-weight: 600;
  color: var(--text-dark); background: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-deep); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(11,74,63,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--green-deep); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--warm-gray); line-height: 1.75; }

/* =========================================================
   CONTACT
   ========================================================= */
#contact { background: var(--green-deep); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-box { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: white; line-height: 1.5; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.15);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 32px; }
.hours-item { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 12px 16px; }
.hours-day { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.hours-time { font-size: 14px; font-weight: 700; color: white; margin-top: 2px; }
.hours-open { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; margin-right: 5px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #071F1B; color: rgba(255,255,255,0.55);
  padding: 40px 0; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: white; font-family: 'Playfair Display', serif; font-size: 18px; }
.footer-links { display: flex; gap: 24px; }
.footer-link { transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }

/* =========================================================
   CART DRAWER
   ========================================================= */
#cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
#cart-overlay.open { opacity: 1; pointer-events: all; }
#cart-drawer {
  position: fixed; top: 0; right: -440px; bottom: 0; width: 440px; max-width: 100vw;
  background: white; z-index: 201; transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: -8px 0 48px rgba(0,0,0,0.15);
}
#cart-drawer.open { right: 0; }
.cart-header { padding: 24px; border-bottom: 1px solid rgba(11,74,63,0.08); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 22px; color: var(--text-dark); }
.cart-close { width: 36px; height: 36px; border-radius: 10px; background: var(--cream); color: var(--text-mid); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-close:hover { background: var(--green-deep); color: white; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; color: var(--warm-gray); }
.cart-empty span { font-size: 48px; }
.cart-empty p { font-size: 14px; text-align: center; }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(11,74,63,0.06); }
.cart-item-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-price { font-size: 15px; font-weight: 800; color: var(--green-deep); font-family: 'Playfair Display', serif; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; background: var(--cream); color: var(--text-dark); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--green-deep); color: white; }
.qty-num { font-size: 14px; font-weight: 700; width: 20px; text-align: center; }
.cart-item-remove { width: 28px; height: 28px; border-radius: 8px; color: #EF4444; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-item-remove:hover { background: #FEE2E2; }
.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(11,74,63,0.08); background: var(--cream); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid rgba(11,74,63,0.12); border-radius: 10px; font-size: 13px; font-family: 'Inter', sans-serif; background: white; outline: none; transition: var(--transition); text-transform: uppercase; }
.coupon-input:focus { border-color: var(--green-mid); }
.coupon-apply { padding: 10px 16px; background: var(--cream-dark); border: 1.5px solid rgba(11,74,63,0.12); border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--green-deep); transition: var(--transition); }
.coupon-apply:hover { background: var(--green-deep); color: white; border-color: var(--green-deep); }
.cart-summary { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--warm-gray); }
.cart-summary-total { font-size: 20px; font-weight: 800; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.cart-discount { color: #16A34A; font-weight: 700; }

/* =========================================================
   MODALS
   ========================================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: white; border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.3); animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modalIn { from { transform: scale(0.92) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-header { padding: 28px 32px 20px; border-bottom: 1px solid rgba(11,74,63,0.08); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 22px; color: var(--text-dark); }
.modal-close { width: 36px; height: 36px; border-radius: 10px; background: var(--cream); color: var(--text-mid); font-size: 20px; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.modal-close:hover { background: var(--green-deep); color: white; }
.modal-body { padding: 24px 32px 32px; }

/* Admin Modal Specific */
.staff-login-list { display: flex; flex-direction: column; gap: 12px; }
.staff-btn {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--cream); border: 1.5px solid rgba(11,74,63,0.1);
  display: flex; align-items: center; gap: 14px; text-align: left;
  transition: var(--transition);
}
.staff-btn:hover { background: rgba(11,74,63,0.06); border-color: var(--green-mid); }
.staff-avatar { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.staff-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.staff-role { font-size: 11px; color: var(--warm-gray); margin-top: 2px; }
.staff-arrow { margin-left: auto; color: var(--green-mid); font-size: 16px; }

/* =========================================================
   WHATSAPP BOT WIDGET
   ========================================================= */
#wpp-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wpp-trigger-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(7,94,84,0.45);
  transition: var(--transition); position: relative;
}
.wpp-trigger-btn:hover { transform: scale(1.08); }
.wpp-trigger-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(18,140,126,0.4); animation: wppRipple 2s infinite;
}
@keyframes wppRipple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.wpp-notif-badge {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #EF4444; color: white; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white; animation: bounceIn 0.4s ease;
}
.wpp-tooltip {
  background: var(--green-deep); color: white; font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 12px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(11,74,63,0.3);
}
.wpp-tooltip::after { content: ''; position: absolute; bottom: -6px; right: 28px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid var(--green-deep); }

/* Bot Chat Window */
#wpp-chat {
  position: fixed; bottom: 110px; right: 28px; z-index: 151;
  width: 380px; max-width: calc(100vw - 32px);
  background: #111B21; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  height: 580px;
}
#wpp-chat.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wpp-chat-header {
  background: #1F2C33; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wpp-avatar { width: 42px; height: 42px; border-radius: 50%; background: #128C7E; display: flex; align-items: center; justify-content: center; font-size: 18px; position: relative; flex-shrink: 0; }
.wpp-avatar-online { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; border-radius: 50%; background: #4ADE80; border: 2px solid #1F2C33; }
.wpp-header-info { flex: 1; }
.wpp-header-name { font-size: 15px; font-weight: 700; color: white; }
.wpp-header-status { font-size: 12px; color: #4ADE80; display: flex; align-items: center; gap: 4px; }
.wpp-header-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.wpp-header-actions { display: flex; gap: 8px; }
.wpp-action-btn { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.wpp-action-btn:hover { background: rgba(255,255,255,0.15); color: white; }

.wpp-chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 12px; display: flex; flex-direction: column; gap: 8px;
  background-color: #0B141A; background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 20px 20px;
}
.wpp-msg { max-width: 82%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.55; position: relative; }
.wpp-msg.bot { background: #1F2C33; color: rgba(255,255,255,0.9); border-top-left-radius: 3px; align-self: flex-start; }
.wpp-msg.user { background: #005C4B; color: rgba(255,255,255,0.9); border-top-right-radius: 3px; align-self: flex-end; }
.wpp-msg-time { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 5px; text-align: right; }
.wpp-msg.user .wpp-msg-time::after { content: ' ✓✓'; color: #53BDEB; }
.wpp-typing { align-self: flex-start; background: #1F2C33; border-radius: 12px; border-top-left-radius: 3px; padding: 12px 18px; display: flex; gap: 5px; }
.wpp-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); animation: wppTyping 1.4s infinite; }
.wpp-dot:nth-child(2) { animation-delay: 0.2s; }
.wpp-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes wppTyping { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

.wpp-quick-replies { padding: 8px 12px; display: flex; flex-wrap: wrap; gap: 6px; background: #111B21; border-top: 1px solid rgba(255,255,255,0.05); }
.wpp-quick-reply {
  padding: 6px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); white-space: nowrap;
}
.wpp-quick-reply:hover { background: #128C7E; border-color: #128C7E; color: white; }

.wpp-chat-input { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: #1F2C33; }
.wpp-input-field {
  flex: 1; padding: 10px 14px; background: #2A3942; border: none; border-radius: 24px;
  color: white; font-size: 13px; font-family: 'Inter', sans-serif; outline: none; min-width: 0;
}
.wpp-input-field::placeholder { color: rgba(255,255,255,0.35); }
.wpp-send-btn {
  width: 40px; height: 40px; border-radius: 50%; background: #00A884; color: white;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.wpp-send-btn:hover { background: #128C7E; transform: scale(1.05); }

/* =========================================================
   ADMIN PANEL
   ========================================================= */
#admin-panel {
  position: fixed; inset: 0; z-index: 500; background: var(--cream);
  display: none; flex-direction: column;
}
#admin-panel.open { display: flex; }
.admin-header {
  background: var(--green-deep); color: white; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2); flex-shrink: 0;
}
.admin-logo { display: flex; align-items: center; gap: 12px; }
.admin-logo span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.admin-user { display: flex; align-items: center; gap: 12px; }
.admin-avatar { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.admin-user-info { text-align: right; }
.admin-user-name { font-size: 13px; font-weight: 700; }
.admin-user-role { font-size: 10px; color: rgba(255,255,255,0.6); }
.admin-body { display: flex; flex: 1; overflow: hidden; }
.admin-sidebar { width: 240px; background: white; border-right: 1px solid rgba(11,74,63,0.08); padding: 24px 16px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; overflow-y: auto; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px;
  font-size: 13px; font-weight: 600; color: var(--warm-gray); transition: var(--transition);
}
.admin-nav-item:hover { background: rgba(11,74,63,0.06); color: var(--green-deep); }
.admin-nav-item.active { background: rgba(11,74,63,0.08); color: var(--green-deep); }
.admin-nav-icon { font-size: 16px; }
.admin-main { flex: 1; overflow-y: auto; padding: 28px; }
.admin-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.kpi-card { background: white; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,74,63,0.06); }
.kpi-label { font-size: 11px; color: var(--warm-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.kpi-value { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.kpi-trend { font-size: 11px; font-weight: 700; margin-top: 6px; }
.kpi-trend.up { color: #16A34A; }
.kpi-trend.down { color: #DC2626; }
.kanban-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kanban-col { background: var(--cream); border-radius: var(--radius-md); padding: 16px; }
.kanban-col-header { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.kanban-col-count { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: white; }
.kanban-card { background: white; border-radius: 12px; padding: 14px; margin-bottom: 10px; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,74,63,0.06); }
.kanban-card-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.kanban-card-breed { font-size: 11px; color: var(--warm-gray); margin-bottom: 8px; }
.kanban-card-service { font-size: 11px; color: var(--text-mid); padding: 4px 8px; background: var(--cream); border-radius: 6px; margin-bottom: 10px; }
.kanban-card-footer { display: flex; align-items: center; justify-content: space-between; }
.kanban-card-time { font-size: 11px; font-weight: 700; color: var(--green-deep); }
.kanban-advance-btn { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); background: var(--green-deep); color: white; transition: var(--transition); }
.kanban-advance-btn:hover { background: var(--green-mid); }

/* =========================================================
   TOAST
   ========================================================= */
#toast-container { position: fixed; bottom: 24px; left: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast {
  background: var(--text-dark); color: white; font-size: 13px; font-weight: 600;
  padding: 14px 20px; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: all; max-width: 320px;
}
.toast.success { background: var(--green-deep); }
.toast.gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.toast.error { background: #991B1B; }
@keyframes toastIn { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-120%); opacity: 0; } }
.toast.removing { animation: toastOut 0.3s ease forwards; }

/* =========================================================
   LEAD CAPTURE POPUP
   ========================================================= */
#lead-popup { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
#lead-popup.open { opacity: 1; pointer-events: all; }
.lead-box { background: white; border-radius: var(--radius-xl); max-width: 480px; width: 100%; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.35); animation: modalIn 0.4s ease; }
.lead-hero { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); padding: 40px 40px 24px; text-align: center; position: relative; }
.lead-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.15); color: white; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.lead-close:hover { background: rgba(255,255,255,0.25); }
.lead-emoji { font-size: 52px; margin-bottom: 12px; }
.lead-title { font-size: 26px; color: white; margin-bottom: 8px; }
.lead-sub { font-size: 14px; color: rgba(255,255,255,0.75); }
.lead-body { padding: 32px 40px; }
.lead-offer { background: rgba(11,74,63,0.08); border: 1.5px dashed rgba(11,74,63,0.25); border-radius: 12px; padding: 16px; text-align: center; margin-bottom: 24px; }
.lead-coupon { font-size: 28px; font-weight: 900; color: var(--green-deep); font-family: 'Playfair Display', serif; letter-spacing: 0.08em; }
.lead-coupon-label { font-size: 12px; color: var(--warm-gray); }
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-input { padding: 13px 16px; border: 1.5px solid rgba(11,74,63,0.12); border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: var(--transition); width: 100%; }
.lead-input:focus { border-color: var(--green-mid); }

/* =========================================================
   ANIMATIONS & UTILITIES
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.counter { transition: color 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .studio-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kanban-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-form-card { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
  .container { padding: 0 16px; }
  .kanban-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-kpi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}
