/* =============================================
   GlobalVets.us — Homepage V2 Design System
   Adjust CSS variables below to match exact
   logo hex colors.
   ============================================= */

:root {
  /* Brand Colors */
  --primary:         #1A5F8A;
  --primary-dark:    #0F3F5E;
  --primary-light:   #2A8CC4;
  --primary-xlight:  #E8F4FB;
  --secondary:       #2DA96D;
  --secondary-dark:  #1E7A4E;
  --accent:          #F4A623;
  --accent-dark:     #D4891A;
  --accent-light:    #FFF4E0;

  /* Membership tier colors */
  --tier-essential:  #2A8CC4;   /* blue  */
  --tier-pro:        #6A3FA5;   /* purple — featured */
  --tier-elite:      #C0852A;   /* gold  */

  /* Neutral */
  --dark:            #111827;
  --body-text:       #374151;
  --muted:           #6B7280;
  --border:          #E5E7EB;
  --light-bg:        #F8FAFC;
  --white:           #FFFFFF;

  /* Fonts */
  --font-sans:       'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading:    'Poppins', 'Segoe UI', sans-serif;

  /* Radius */
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       32px;

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(0,0,0,.07);
  --shadow-md:       0 8px 28px rgba(0,0,0,.11);
  --shadow-lg:       0 16px 48px rgba(0,0,0,.14);
  --shadow-pro:      0 20px 60px rgba(106,63,165,.30);
  --shadow-elite:    0 20px 60px rgba(192,133,42,.25);

  --section-py: 88px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--dark); line-height: 1.2; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
section { position: relative; }
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: 52px; padding-bottom: 52px; }

/* ─── Utility ─── */
.text-primary-brand { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-light-brand { background: var(--light-bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-title .accent-word { color: var(--accent); }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 600px; }

/* ─── Buttons ─── */
.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  transition: all .25s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn2-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn2-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,138,.35);
}
.btn2-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn2-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,166,35,.40);
}
.btn2-ghost-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn2-ghost-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn2-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn2-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn2-lg { padding: 16px 38px; font-size: 1rem; }
.btn2-sm { padding: 9px 20px; font-size: .82rem; }

/* ─── TOPBAR ─── */
#topbar2 {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 8px 0;
  z-index: 1040;
}
#topbar2 a { color: rgba(255,255,255,.75); transition: color .2s; }
#topbar2 a:hover { color: var(--accent); }
#topbar2 .tb-left { gap: 18px; flex-wrap: wrap; }
#topbar2 .tb-left span { display: flex; align-items: center; gap: 6px; }
#topbar2 .tb-left i { color: var(--accent); }
#topbar2 .tb-right { gap: 14px; }
.topbar-pill {
  background: linear-gradient(90deg, var(--accent), #e8960d);
  color: var(--dark);
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── NAVBAR ─── */
#nav2 {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 0;
  z-index: 1030;
  transition: all .3s;
}
#nav2.nav2-scrolled {
  box-shadow: var(--shadow-md);
}
.nav2-brand img { height: 52px; width: auto; }

.nav2 .nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 22px 13px !important;
  transition: color .2s;
}
.nav2 .nav-link:hover,
.nav2 .nav-link.active { color: var(--primary) !important; }

.nav2-dropdown {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 220px;
}
.nav2-dropdown .dropdown-item {
  font-size: .86rem;
  font-weight: 500;
  padding: 9px 20px;
}
.nav2-dropdown .dropdown-item:hover {
  background: var(--primary-xlight);
  color: var(--primary);
}
.nav2-actions { gap: 10px; }

.btn-nav2-login {
  font-size: .84rem;
  font-weight: 700;
  color: var(--dark) !important;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-nav2-login:hover { border-color: var(--primary); color: var(--primary) !important; }

.btn-nav2-join {
  font-size: .84rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #e8960d);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(244,166,35,.35);
}
.btn-nav2-join:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,166,35,.45); }

.nav2-cart {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s;
}
.nav2-cart:hover { border-color: var(--primary); color: var(--primary); }
.nav2-cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--accent);
  color: var(--dark);
  font-size: .6rem;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ─── HERO V2 — Split Layout ─── */
#hero2 {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  background: var(--dark);
}

/* Left panel: content */
.hero2-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 80px 0;
  width: 55%;
  flex-shrink: 0;
}

/* Right panel: image */
.hero2-right {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.hero2-right-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero2-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    var(--dark) 0%,
    rgba(17,24,39,.92) 28%,
    rgba(17,24,39,.55) 55%,
    transparent 100%
  );
  z-index: 2;
}

/* Background pattern on left */
.hero2-left::before {
  content: '';
  position: absolute;
  top: -60px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,95,138,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero2-left::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,166,35,.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero2-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244,166,35,.12);
  border: 1px solid rgba(244,166,35,.35);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero2-overline-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero2-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}
.hero2-title .line-highlight {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.hero2-title .line-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .35;
}

.hero2-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero2-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Floating stats row */
.hero2-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hero2-stat {
  padding: 18px 28px;
  text-align: center;
  flex: 1;
  min-width: 110px;
}
.hero2-stat + .hero2-stat { border-left: 1px solid rgba(255,255,255,.12); }
.hero2-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 3px;
}
.hero2-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating product/savings cards */
.hero2-float-cards {
  position: absolute;
  right: 48px;
  bottom: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.hero2-float-card {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  animation: float-card 3s ease-in-out infinite;
}
.hero2-float-card:nth-child(2) { animation-delay: 1.5s; }
.hero2-float-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.icon-green { background: #DCFCE7; color: #16A34A; }
.icon-amber { background: #FEF3C7; color: #D97706; }
.icon-blue  { background: var(--primary-xlight); color: var(--primary); }
.hero2-float-card-text strong { font-size: .85rem; display: block; color: var(--dark); font-weight: 700; }
.hero2-float-card-text span { font-size: .75rem; color: var(--muted); }

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

/* Hero Owl slider controls */
#heroSlider2 { width: 100%; }
.hero2-slide { width: 100%; }

#heroSlider2 .owl-dots {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  gap: 8px;
}
#heroSlider2 .owl-dot span {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  display: block;
  transition: all .3s;
}
#heroSlider2 .owl-dot.active span {
  width: 32px;
  border-radius: 4px;
  background: var(--accent);
}
#heroSlider2 .owl-nav { display: none; }

/* ─── TRUST STRIP V2 ─── */
#trust2 {
  background: var(--primary);
  padding: 0;
}
.trust2-inner {
  display: flex;
  divide-x: 1px solid rgba(255,255,255,.12);
}
.trust2-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: var(--white);
}
.trust2-item:last-child { border-right: none; }
.trust2-item i { font-size: 1.6rem; color: var(--accent); flex-shrink: 0; }
.trust2-item strong { font-size: .88rem; display: block; font-weight: 700; }
.trust2-item span { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ─── MEMBERSHIP TIERS ─── */
#membership2 {
  background: var(--light-bg);
}
.tier-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.tier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Essential */
.tier-essential { border-color: var(--tier-essential); }
.tier-essential-accent { color: var(--tier-essential); }
.tier-essential .tier-icon-bg { background: #E8F4FB; color: var(--tier-essential); }
.tier-essential .tier-cta { background: var(--tier-essential); color: var(--white); }
.tier-essential .tier-cta:hover { background: #1A6FA0; }
.tier-essential .tier-check { color: var(--tier-essential); }

/* Professional — Featured */
.tier-pro {
  border-color: var(--tier-pro);
  background: linear-gradient(160deg, #2D1B4E 0%, #4A2880 100%);
  color: var(--white);
  box-shadow: var(--shadow-pro);
  transform: scale(1.03);
  z-index: 2;
}
.tier-pro:hover { transform: scale(1.05) translateY(-4px); }
.tier-pro .tier-name { color: rgba(255,255,255,.85); }
.tier-pro .tier-price-main { color: var(--white); }
.tier-pro .tier-price-period { color: rgba(255,255,255,.55); }
.tier-pro .tier-feature { color: rgba(255,255,255,.82); }
.tier-pro .tier-feature-head { color: var(--white); }
.tier-pro .tier-check { color: var(--accent); }
.tier-pro .tier-cta { background: var(--accent); color: var(--dark); }
.tier-pro .tier-cta:hover { background: var(--accent-dark); color: var(--dark); }
.tier-pro .tier-guarantee { color: rgba(255,255,255,.5); }

/* Elite */
.tier-elite { border-color: var(--tier-elite); }
.tier-elite-accent { color: var(--tier-elite); }
.tier-elite .tier-icon-bg { background: #FEF3E2; color: var(--tier-elite); }
.tier-elite .tier-cta { background: var(--tier-elite); color: var(--white); }
.tier-elite .tier-cta:hover { background: #A06820; }
.tier-elite .tier-check { color: var(--tier-elite); }

/* Most Popular badge */
.tier-popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), #e8960d);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
}

.tier-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.tier-icon-bg { background: var(--light-bg); }
.tier-icon-pro { background: rgba(255,255,255,.12); color: var(--accent); }

.tier-name {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--muted);
}
.tier-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.tier-pro .tier-tagline { color: var(--white); }

.tier-pricing { margin-bottom: 24px; }
.tier-price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  font-family: var(--font-heading);
}
.tier-price-period {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px;
}
.tier-price-strike {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 4px;
}
.tier-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
}
.tier-save-essential { background: #E8F4FB; color: var(--tier-essential); }
.tier-save-pro { background: rgba(244,166,35,.18); color: var(--accent); }
.tier-save-elite { background: #FEF3E2; color: var(--tier-elite); }

.tier-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.tier-pro .tier-divider { background: rgba(255,255,255,.15); }

.tier-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--body-text);
}
.tier-feature i { font-size: .85rem; margin-top: 2px; flex-shrink: 0; }
.tier-feature .feature-off { color: var(--muted); }
.tier-feature.dimmed { opacity: .45; }

.tier-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s;
  text-decoration: none;
  letter-spacing: .3px;
}
.tier-cta:hover { transform: translateY(-2px); }
.tier-guarantee {
  text-align: center;
  font-size: .74rem;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
}
.compare-table th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--body-text);
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--light-bg); }
.compare-table .pro-col { background: rgba(106,63,165,.04); }
.compare-table .check-yes { color: var(--secondary); font-size: 1rem; }
.compare-table .check-no { color: var(--border); font-size: 1rem; }
.compare-table .col-header-pro {
  color: var(--tier-pro);
  font-weight: 800;
}

/* ─── CATEGORIES V2 ─── */
.cat2-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}
.cat2-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.cat2-icon {
  width: 52px; height: 52px;
  background: var(--primary-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all .3s;
}
.cat2-card:hover .cat2-icon { background: var(--primary); color: var(--white); }
.cat2-info h6 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.cat2-info span { font-size: .76rem; color: var(--muted); }
.cat2-arrow {
  margin-left: auto;
  color: var(--border);
  font-size: .85rem;
  transition: all .3s;
}
.cat2-card:hover .cat2-arrow { color: var(--primary); transform: translateX(4px); }

/* ─── PRODUCTS V2 ─── */
.product2-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product2-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.product2-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
}
.product2-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product2-card:hover .product2-img img { transform: scale(1.07); }

.p2-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.p2-badge {
  font-size: .68rem; font-weight: 800;
  padding: 3px 9px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.p2-badge-sale { background: #FEE2E2; color: #DC2626; }
.p2-badge-new  { background: #DCFCE7; color: #16A34A; }
.p2-badge-top  { background: var(--accent-light); color: var(--accent-dark); }

.p2-wish {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all .2s;
}
.p2-wish:hover { color: #DC2626; transform: scale(1.1); }

.product2-body {
  padding: 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p2-cat { font-size: .7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--primary-light); }
.p2-name { font-size: .92rem; font-weight: 700; color: var(--dark); line-height: 1.4; flex: 1; }
.p2-stars { color: var(--accent); font-size: .75rem; }
.p2-count { font-size: .73rem; color: var(--muted); margin-left: 4px; }
.p2-price { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.p2-strike { font-size: .83rem; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.p2-member-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F3EEF9;
  border-radius: 20px;
  padding: 3px 10px 3px 4px;
  margin-top: 4px;
  width: fit-content;
}
.p2-member-label {
  background: var(--tier-pro);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.p2-member-price { font-size: .85rem; font-weight: 800; color: var(--tier-pro); }
.p2-member-save { font-size: .7rem; color: var(--muted); }

.product2-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.p2-add-btn {
  flex: 1;
  padding: 10px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s;
}
.p2-add-btn:hover { background: var(--primary-dark); }
.p2-view-btn {
  width: 40px; height: 40px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.p2-view-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Products Carousel */
#prod2Slider .owl-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
#prod2Slider .owl-nav button {
  width: 42px; height: 42px;
  background: var(--white) !important;
  border: 2px solid var(--border) !important;
  border-radius: 50% !important;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: 1rem !important;
}
#prod2Slider .owl-nav button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}
#prod2Slider .owl-dots { display: none; }

/* ─── FEATURE SPLIT ─── */
.feature2-img-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.feature2-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature2-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(17,24,39,.88);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.f2-badge-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.f2-badge-text strong { font-size: .88rem; color: var(--white); display: block; font-weight: 700; }
.f2-badge-text span { font-size: .76rem; color: rgba(255,255,255,.6); }

.feature2-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature2-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.f2-item-icon {
  width: 44px; height: 44px;
  background: var(--primary-xlight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all .3s;
}
.feature2-item:hover .f2-item-icon { background: var(--primary); color: var(--white); }
.f2-item-text h6 { font-weight: 700; font-size: .92rem; color: var(--dark); margin-bottom: 3px; }
.f2-item-text p { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── BRANDS V2 ─── */
#brands2 { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand2-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 24px;
  filter: grayscale(100%);
  opacity: .45;
  transition: all .3s;
  cursor: pointer;
}
.brand2-item:hover { filter: grayscale(0); opacity: 1; }
.brand2-item span { font-size: 1.05rem; font-weight: 800; color: var(--muted); letter-spacing: 1px; }

/* ─── TESTIMONIALS V2 ─── */
.test2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  transition: box-shadow .3s;
  position: relative;
}
.test2-card:hover { box-shadow: var(--shadow-md); }
.test2-stars { color: var(--accent); font-size: .82rem; margin-bottom: 14px; }
.test2-text { font-size: .9rem; color: var(--body-text); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.test2-author { display: flex; align-items: center; gap: 12px; }
.test2-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  color: var(--white);
  flex-shrink: 0;
}
.av-blue   { background: var(--primary); }
.av-purple { background: var(--tier-pro); }
.av-gold   { background: var(--tier-elite); }
.av-green  { background: var(--secondary); }
.test2-name { font-weight: 700; font-size: .87rem; color: var(--dark); }
.test2-role { font-size: .74rem; color: var(--muted); }
.test2-badge {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.badge-essential { background: var(--primary-xlight); color: var(--primary); }
.badge-pro       { background: #F3EEF9; color: var(--tier-pro); }
.badge-elite     { background: #FEF3E2; color: var(--tier-elite); }

#test2Slider .owl-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
#test2Slider .owl-nav button {
  width: 42px; height: 42px;
  background: var(--white) !important;
  border: 2px solid var(--border) !important;
  border-radius: 50% !important;
  color: var(--primary) !important;
  font-size: 1rem !important;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
#test2Slider .owl-nav button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}
#test2Slider .owl-dots { display: none; }

/* ─── NEWSLETTER V2 ─── */
#nl2 {
  background: var(--dark);
  padding: 72px 0;
}
.nl2-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.nl2-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 22px;
}
#nl2 h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 10px; }
#nl2 p  { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 28px; }
.nl2-form { display: flex; gap: 10px; }
.nl2-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s;
}
.nl2-form input::placeholder { color: rgba(255,255,255,.35); }
.nl2-form input:focus { border-color: var(--accent); }
.nl2-note { font-size: .76rem; color: rgba(255,255,255,.35); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ─── FOOTER V2 ─── */
#footer2 { background: #0B1120; color: rgba(255,255,255,.7); }
.footer2-top { padding: 60px 0; }
.footer2-logo { height: 48px; width: auto; margin-bottom: 14px; }
.footer2-about { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.72; margin-bottom: 20px; }
.footer2-social { display: flex; gap: 8px; }
.footer2-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: all .2s;
}
.footer2-social a:hover { background: var(--primary); color: var(--white); }
.footer2-h { font-size: .74rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer2-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer2-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; display: flex; align-items: center; gap: 7px; }
.footer2-links a:hover { color: var(--white); }
.footer2-links a i { font-size: .6rem; color: var(--accent); }
.footer2-contact-item { display: flex; gap: 12px; margin-bottom: 12px; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer2-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer2-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer2-bottom-links { display: flex; gap: 18px; }
.footer2-bottom-links a { font-size: .76rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer2-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer2-payment { display: flex; gap: 8px; }
.footer2-payment span {
  background: rgba(255,255,255,.07);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── SCROLL TO TOP V2 ─── */
#scrollTop2 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(26,95,138,.40);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  font-size: .95rem;
}
#scrollTop2.visible { opacity: 1; pointer-events: all; }
#scrollTop2:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ─── MEMBERSHIP CTA STRIP ─── */
.cta-strip2 {
  background: linear-gradient(90deg, #1A4060 0%, var(--primary) 50%, #2A8CC4 100%);
  padding: 40px 0;
}
.cta-strip2 h3 { color: var(--white); font-weight: 800; margin-bottom: 4px; }
.cta-strip2 p  { color: rgba(255,255,255,.75); font-size: .92rem; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1199.98px) {
  .hero2-left { width: 60%; padding-right: 32px; }
  .hero2-right { width: 50%; }
  .hero2-float-cards { right: 24px; bottom: 40px; }
}

@media (max-width: 991.98px) {
  :root { --section-py: 60px; }

  #hero2 { min-height: auto; }
  .hero2-left { width: 100%; padding: 100px 0 60px; }
  .hero2-right { display: none; }
  .hero2-float-cards { display: none; }
  #heroSlider2 .owl-dots { display: flex; }

  .tier-pro { transform: none; }
  .tier-pro:hover { transform: translateY(-4px); }

  .trust2-inner { flex-wrap: wrap; }
  .trust2-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust2-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .trust2-item:nth-last-child(-n+2) { border-bottom: none; }

  .nav2-actions .btn-nav2-login,
  .nav2-actions .btn-nav2-join { display: none; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 48px; }

  .hero2-title { font-size: 2.1rem; }
  .hero2-stats { flex-wrap: wrap; width: 100%; }
  .hero2-stat { min-width: 80px; }

  .trust2-item { width: 100%; }
  .trust2-item { border-right: none; }
  .trust2-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust2-item:last-child { border-bottom: none; }

  .nl2-form { flex-direction: column; }
}

@media (max-width: 575.98px) {
  .hero2-stats { border-radius: var(--radius-sm); }
  .hero2-actions { flex-direction: column; }
  .hero2-actions .btn2 { width: 100%; justify-content: center; }
}

/* ─── Animations ─── */
@keyframes fadeInUp2 {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-up { animation: fadeInUp2 .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
