/*
Theme Name: Conri Sports
Theme URI: https://conrisports.com
Author: Conri Sports
Author URI: https://conrisports.com
Description: A modern, minimal sportswear & clothing manufacturer theme built for Elementor.
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conri-sports
Tags: elementor, sports, clothing, manufacturing, minimal, modern
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --primary:       #1A73E8;
  --primary-dark:  #0D5EC7;
  --primary-light: #E8F0FE;
  --black:         #111111;
  --dark:          #1a1a1a;
  --gray:          #555555;
  --light-gray:    #F5F5F5;
  --border:        #E0E0E0;
  --white:         #FFFFFF;
  --font-main:     'Inter', 'Segoe UI', sans-serif;
  --radius:        6px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(26,115,232,0.18);
  --transition:    all 0.3s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1rem; color: var(--gray); }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section--gray { background: var(--light-gray); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1558C0; /* darkened from #1A73E8 for AA contrast on #F5F5F5 */
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===========================
   HEADER / NAVIGATION
=========================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

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

.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}
.site-logo span { color: var(--primary); }
.site-logo:hover { color: var(--black); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2E45 50%, #1A73E8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A73E8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,115,232,0.2);
  border: 1px solid rgba(26,115,232,0.4);
  color: #7BAAFF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.87); /* was 0.75 */
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75); /* was 0.55 */
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   FEATURES / WHY CHOOSE US
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

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

.feature-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--black);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.65;
}

/* ===========================
   PRODUCTS GRID
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

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

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

.product-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-body { padding: 20px 22px 24px; }

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 18px;
}

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

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.product-price small {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  margin-left: 4px;
}

.product-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  padding: 7px 16px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.product-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, #0D1B2A, #1A73E8);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; }

/* ===========================
   ABOUT PAGE
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-block {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-gray), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-item {
  padding: 18px;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}

.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.value-item p  { font-size: 0.85rem; margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card p  { font-size: 0.85rem; color: var(--primary); margin: 0; font-weight: 600; }

/* ===========================
   PRODUCTS PAGE
=========================== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p  { font-size: 0.9rem; margin: 0; color: var(--gray); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.contact-form h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: #0D1B2A;
  color: rgba(255,255,255,0.87); /* was 0.65 — below AA threshold */
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { color: var(--white); }

.footer-brand p {
  color: rgba(255,255,255,0.75); /* bumped from 0.55 */
  font-size: 0.88rem;
  margin: 16px 0 24px;
}

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

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.87); /* was 0.7 */
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.75); /* was 0.55 — below AA on dark bg */
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a { color: #7BAAFF; text-decoration: underline; } /* underline ensures color alone not relied on */

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, #0D1B2A, #1A2E45);
  padding: 80px 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.87); font-size: 1.1rem; max-width: 540px; margin: 12px auto 0; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ===========================
   ELEMENTOR OVERRIDES
=========================== */
.elementor-section { width: 100% !important; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; box-shadow: var(--shadow); }
  .site-nav.open { display: block; }
  .site-nav ul   { flex-direction: column; gap: 16px; }
  .menu-toggle   { display: flex; }
  .hero-stats    { gap: 24px; flex-wrap: wrap; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .about-values  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats   { gap: 20px; }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   STICKY HEADER SCROLLED STATE
=========================== */
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ===========================
   MOBILE MENU TOGGLE ACTIVE
=========================== */
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   FORM FOCUSED STATE
=========================== */
.form-group.is-focused label {
  color: var(--primary);
}

/* ===========================
   ELEMENTOR FULL WIDTH MAIN
=========================== */
.elementor-fullwidth-main {
  width: 100%;
  max-width: 100%;
}

/* ===========================
   PRODUCT CARD HIDDEN (filter)
=========================== */
.product-card[style*="display: none"] { display: none !important; }

/* ===========================
   ACCESSIBILITY — FOCUS VISIBLE
=========================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ===========================
   SPORTS CATEGORIES BLOCK
=========================== */
.sports-categories { padding: 90px 0; background: var(--white); }
.sports-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.sports-cat-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 36px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.sports-cat-card:hover, .sports-cat-card:focus {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.sports-cat-icon { font-size: 2.6rem; margin-bottom: 14px; }
.sports-cat-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin: 0; }
.sports-cat-card span { font-size: 0.78rem; color: var(--gray); }

/* ===========================
   PROCESS / HOW IT WORKS BLOCK
=========================== */
.process-section { padding: 90px 0; background: var(--dark); color: var(--white); }
.process-section .section-label { color: #60a5fa; }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: #aaa; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), #60a5fa);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--dark);
  box-shadow: 0 0 0 3px var(--primary);
}
.process-step h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.process-step-title { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: #aaa; font-size: 0.88rem; margin: 0; }

/* ===========================
   TESTIMONIALS BLOCK
=========================== */
.testimonials-section { padding: 90px 0; background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-quote { font-size: 3rem; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.testimonial-text { font-size: 0.97rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.testimonial-name { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* ===========================
   STATS / COUNTER BLOCK
=========================== */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0D5EC7 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  text-align: center;
}
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.8); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; letter-spacing: 0.05em; }

/* ===========================
   BRAND LOGOS / PARTNERS BLOCK
=========================== */
.partners-section { padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray); margin-bottom: 36px; font-weight: 600; }
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.72; /* was 0.45 — too low contrast on white bg */
  filter: grayscale(1);
  transition: var(--transition);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.partner-logo:hover { opacity: 1; filter: none; color: var(--primary); }
.partner-logo-icon { font-size: 1.6rem; }

/* ===========================
   RESPONSIVE ADDITIONS
=========================== */
@media (max-width: 768px) {
  .process-steps::before { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }
  .sports-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .sports-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   SHOP NAV BUTTON (added v2)
=========================== */
.site-nav a.nav-whatsapp-btn {
    background: #25D366;
    color: #fff !important;
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: .04em;
    transition: background .22s, transform .18s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.site-nav a.nav-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    color: #fff !important;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: 2px solid #25D366;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .22s, transform .18s, box-shadow .22s;
    text-decoration: none;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    color: #fff !important;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1a1a1a;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float-tooltip { display: none; }
}

/* ============================================================
   WHATSAPP POPUP BUBBLE
============================================================ */
.whatsapp-popup {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 9998;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(37,211,102,0.12);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
    transform-origin: bottom right;
}
.whatsapp-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,0.25);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    z-index: 1;
}
.whatsapp-popup-close:hover {
    background: rgba(255,255,255,0.4);
}
.whatsapp-popup-header {
    background: #25D366;
    padding: 14px 40px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-popup-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.whatsapp-popup-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #25D366;
}
.whatsapp-popup-status::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #44d467;
    border-radius: 50%;
}
.whatsapp-popup-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.whatsapp-popup-info strong {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}
.whatsapp-popup-info span {
    color: rgba(255,255,255,0.82);
    font-size: .72rem;
}
.whatsapp-popup-body {
    padding: 14px 14px 8px;
    background: #f0f0f0;
}
.whatsapp-popup-message {
    background: #fff;
    border-radius: 12px 12px 12px 0;
    padding: 10px 14px;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    max-width: 100%;
}
.whatsapp-popup-message p {
    margin: 0 0 4px;
    font-size: .85rem;
    color: #1a1a1a;
    line-height: 1.5;
}
.whatsapp-popup-message p:last-child {
    margin-bottom: 0;
}
.whatsapp-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px;
    transition: background 0.2s;
}
.whatsapp-popup-cta:hover {
    background: #1ebe5c;
    color: #fff;
}
@media (max-width: 600px) {
    .whatsapp-popup {
        bottom: 90px;
        right: 16px;
        width: calc(100vw - 32px);
        max-width: 300px;
    }
}
