/* assets/css/style.css
 * Custom CSS for Hindustan Distributor Krishnanagar
 * Theme Colors:
 * - HD Primary Red: #E51937
 * - HD Primary Green: #008751
 * - Dark Accent: #1E293B
 * - Bengali Tagline: "জীবন হোক আরও সুন্দর"
 */

:root {
  --hd-red: #E51937;
  --hd-red-hover: #C4102C;
  --hd-green: #008751;
  --hd-green-hover: #006D41;
  --hd-dark: #1E293B;
  --hd-dark-soft: #0F172A;
  --hd-gray-light: #F8FAFC;
  --hd-gray-border: #E2E8F0;
  --hd-text-muted: #64748B;
  --hd-yellow: #FFB800;
  --hd-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --hd-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --hd-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --hd-radius: 12px;
  --hd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #334155;
  background-color: #F8FAFC;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--hd-dark);
}

.bengali-tagline {
  font-family: 'Hind Siliguri', 'Outfit', sans-serif;
  color: var(--hd-green);
  font-weight: 600;
}

/* 1. TOP OFFER BAR */
.top-info-bar {
  background-color: var(--hd-dark-soft);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--hd-red);
}

.top-info-bar a {
  color: #E2E8F0;
  text-decoration: none;
  transition: var(--hd-transition);
}

.top-info-bar a:hover {
  color: var(--hd-green);
}

/* TOP BAR SOCIAL ICONS */
.top-social-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-social-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.top-social-btn:hover {
  transform: translateY(-2px) scale(1.15);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.offer-ticker {
  background: linear-gradient(135deg, rgba(229, 25, 55, 0.9) 0%, rgba(196, 16, 44, 0.95) 100%);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0 0 0 0 rgba(229, 25, 55, 0.7);
  animation: ticker-pulse 2s infinite;
}

@keyframes ticker-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 25, 55, 0.7); }
  50%  { box-shadow: 0 0 0 8px rgba(229, 25, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 25, 55, 0); }
}

.offer-ticker .blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFE066;
  display: inline-block;
  animation: blink-dot 1s step-start infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.offer-ticker .blink-text {
  animation: text-blink 1.6s step-start infinite;
  display: inline;
}

@keyframes text-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* MAIN NAVBAR */
.main-navbar {
  background: #FFFFFF;
  box-shadow: var(--hd-shadow-sm);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1040;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--hd-transition);
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-link {
  color: var(--hd-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--hd-transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--hd-red) !important;
}

.nav-action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--hd-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--hd-transition);
  border: 1px solid var(--hd-gray-border);
}

.nav-action-btn:hover {
  background: var(--hd-red);
  color: #FFFFFF;
  border-color: var(--hd-red);
  transform: translateY(-2px);
}

.nav-action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--hd-green);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #FFFFFF;
}

/* HERO CAROUSEL SLIDER */
.hero-slider-container {
  position: relative;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.hero-slide-item {
  position: relative;
  padding: 90px 0;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-1 {
  background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.92) 100%), url('../images/banner/bg1.png');
}

.hero-slide-2 {
  background-image: linear-gradient(135deg, rgba(0, 135, 81, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%), url('../images/banner/bg2.png');
}

.hero-slide-3 {
  background-image: linear-gradient(135deg, rgba(229, 25, 55, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%), url('../images/banner/bg3.png');
}

.hero-slide-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 135, 81, 0.3) 0%, rgba(229, 25, 55, 0) 70%);
  pointer-events: none;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
}

.hero-carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  margin: 0 5px;
  transition: var(--hd-transition);
}

.hero-carousel-indicators .active {
  background-color: var(--hd-red);
  width: 32px;
  border-radius: 10px;
}

.hero-control-btn {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 15px;
  opacity: 0.8;
  transition: var(--hd-transition);
}

.hero-control-btn:hover {
  background: var(--hd-red);
  opacity: 1;
}

/* BUTTON SYSTEM */
.btn-hd-red {
  background-color: var(--hd-red);
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  transition: var(--hd-transition);
}

.btn-hd-red:hover {
  background-color: var(--hd-red-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 25, 55, 0.3);
}

.btn-hd-green {
  background-color: var(--hd-green);
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  transition: var(--hd-transition);
}

.btn-hd-green:hover {
  background-color: var(--hd-green-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 135, 81, 0.3);
}

.btn-hd-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 25px;
  transition: var(--hd-transition);
}

.btn-hd-outline:hover {
  background: #FFFFFF;
  color: var(--hd-dark);
  transform: translateY(-2px);
}

/* SECTION TITLES */
.section-header {
  position: relative;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--hd-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--hd-red);
}

.section-subtitle {
  color: var(--hd-text-muted);
  font-size: 0.95rem;
}

/* CATEGORY CARDS */
.category-card {
  background: #FFFFFF;
  border-radius: var(--hd-radius);
  padding: 18px 12px;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid var(--hd-gray-border);
  box-shadow: var(--hd-shadow-sm);
  transition: var(--hd-transition);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--hd-red);
  box-shadow: var(--hd-shadow-md);
}

.category-img-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.category-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hd-dark);
  margin-bottom: 4px;
}

.category-count {
  font-size: 0.8rem;
  color: var(--hd-text-muted);
}

/* FEATURED PRODUCTS SECTION */
.featured-section-wrap {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.12), 0 4px 12px -4px rgba(15, 23, 42, 0.06);
}

.featured-section-header {
  background: linear-gradient(140deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
}

/* Decorative animated orbs */
.featured-section-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(229, 25, 55, 0.3) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-float 6s ease-in-out infinite;
}

.featured-section-header::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 135, 81, 0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

.featured-body {
  padding: 28px 32px 32px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 60%);
}

.badge-top-pick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 25, 55, 0.12);
  color: #FF8A9B;
  border: 1px solid rgba(229, 25, 55, 0.25);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Tab bar */
.featured-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.btn-featured-tab {
  background: rgba(255, 255, 255, 0.07);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 25px;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-featured-tab:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-featured-tab.active {
  background: var(--hd-red);
  color: #FFFFFF;
  border-color: var(--hd-red);
  box-shadow: 0 4px 16px rgba(229, 25, 55, 0.45);
}

.btn-featured-tab .tab-icon {
  font-size: 0.76rem;
  opacity: 0.85;
}

.btn-featured-tab.active .tab-icon {
  opacity: 1;
}


/* ============================
   PRODUCT CARD â€” Premium v3
   ============================ */
.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EBF0F7;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 25, 55, 0.2);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(229, 25, 55, 0.1);
}

/* â”€â”€ Image Zone â”€â”€ */
.product-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(160deg, #F1F5F9 0%, #E9EEF5 100%);
  text-decoration: none;
  display: block;
  flex-shrink: 0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hover overlay */
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  gap: 10px;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: rgba(255, 255, 255, 0.95);
  color: var(--hd-dark);
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: translateY(8px);
  opacity: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-card:hover .btn-quick-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.btn-quick-view:hover {
  background: var(--hd-red);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(229, 25, 55, 0.4);
}

/* Badges */
.product-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-hd-discount {
  background: linear-gradient(135deg, #E51937 0%, #B0001D 100%);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(229, 25, 55, 0.45);
  letter-spacing: 0.04em;
  display: inline-block;
}

.badge-hd-new {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFE066;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  display: inline-block;
}

/* Wishlist top-right */
.wishlist-btn-pos {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

.btn-wishlist {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 0.85rem;
}

.btn-wishlist:hover {
  color: var(--hd-red);
  border-color: rgba(229, 25, 55, 0.3);
  transform: scale(1.1);
}

.btn-wishlist.active {
  background: var(--hd-red);
  color: #FFFFFF;
  border-color: var(--hd-red);
  box-shadow: 0 4px 14px rgba(229, 25, 55, 0.4);
}

/* â”€â”€ Card Body â”€â”€ */
.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FFFFFF;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.product-category {
  font-size: 0.7rem;
  color: var(--hd-green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-brand-tag {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
  background: #F1F5F9;
  padding: 2px 8px;
  border-radius: 10px;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hd-dark);
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.9em;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: var(--hd-red);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars {
  color: #F59E0B;
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-count {
  color: #94A3B8;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Price */
.price-wrap {
  margin-top: auto;
  margin-bottom: 14px;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.sale-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--hd-red);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.old-price {
  font-size: 0.83rem;
  color: #B0BEC5;
  text-decoration: line-through;
  font-weight: 500;
}

.price-save-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  color: var(--hd-green);
  font-weight: 700;
  background: rgba(0, 135, 81, 0.08);
  border: 1px solid rgba(0, 135, 81, 0.18);
  border-radius: 6px;
  padding: 2px 7px;
}

/* Cart Button */
.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, #008751 0%, #006D41 100%);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 135, 81, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #006D41 0%, #004D30 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 135, 81, 0.45);
}

.btn-add-cart:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 135, 81, 0.3);
}



/* ============================
   WHY CHOOSE US â€” Premium
   ============================ */
.why-choose-section {
  background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative orbs */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(229, 25, 55, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 135, 81, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 25, 55, 0.08);
  color: var(--hd-red);
  border: 1px solid rgba(229, 25, 55, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wcu-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hd-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.wcu-subtitle {
  color: #64748B;
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* Cards */
.wcu-card {
  background: #FFFFFF;
  border: 1px solid #E9EEF5;
  border-radius: 20px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.wcu-card:hover {
  background: #FFFFFF;
  border-color: rgba(229, 25, 55, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* Step number */
.wcu-card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Icon circle */
.wcu-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(var(--icon-color, 229 25 55) / 0.12);
  background-color: color-mix(in srgb, var(--icon-color, #E51937) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--icon-color, #E51937);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 var(--icon-color, #E51937);
}

.wcu-card:hover .wcu-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.wcu-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hd-dark);
  margin-bottom: 10px;
}

.wcu-card-desc {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Colored bottom line */
.wcu-card-line {
  height: 3px;
  width: 40px;
  border-radius: 3px;
  background: var(--line-color, #E51937);
  transition: width 0.4s ease;
}

.wcu-card:hover .wcu-card-line {
  width: 80px;
}

/* Stats strip */
.wcu-stats-strip {
  background: linear-gradient(135deg, var(--hd-dark) 0%, #1E293B 100%);
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}

.wcu-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wcu-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.wcu-stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 500;
  text-align: center;
}

.wcu-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 576px) {
  .wcu-stat-divider { display: none; }
  .wcu-stats-strip { justify-content: center; }
}

/* SPECIAL OFFER BANNER */
.special-offer-banner {
  background: linear-gradient(135deg, var(--hd-dark-soft) 0%, var(--hd-dark) 100%);
  border-radius: var(--hd-radius);
  padding: 50px 30px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.offer-badge {
  background: rgba(229, 25, 55, 0.2);
  color: #FF8A9B;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 12px;
}

/* FEATURE BOX */
.feature-box {
  background: #FFFFFF;
  border-radius: var(--hd-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--hd-gray-border);
  box-shadow: var(--hd-shadow-sm);
  transition: var(--hd-transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--hd-green);
  box-shadow: var(--hd-shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 135, 81, 0.1);
  color: var(--hd-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* REVIEW CARD */
.review-card {
  background: #FFFFFF;
  border-radius: var(--hd-radius);
  padding: 24px;
  border: 1px solid var(--hd-gray-border);
  box-shadow: var(--hd-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-quote {
  font-style: italic;
  color: #475569;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 700;
  color: var(--hd-dark);
}

/* NEWSLETTER */
.newsletter-section {
  background: linear-gradient(135deg, #008751, #005c37) !important;
  border-radius: var(--hd-radius);
  padding: 50px 20px;
}

/* FOOTER */
.footer-main {
  background: linear-gradient(135deg, #1e293b, #1e293b) !important;
  color: #94A3B8;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 4px solid var(--hd-red);
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--hd-green);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--hd-transition);
}

.footer-links a:hover {
  color: var(--hd-red);
  padding-left: 6px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  transition: var(--hd-transition);
}

.social-btn:hover {
  background: var(--hd-red);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
}

/* RESPONSIVE UTILITIES */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .special-offer-banner {
    padding: 40px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .brand-logo-img {
    height: 40px;
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--hd-red);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(229, 25, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--hd-green);
  box-shadow: 0 6px 20px rgba(0, 135, 81, 0.5);
  transform: translateY(-4px);
}

/* ============================================================
   NEW ARRIVALS CAROUSEL
   ============================================================ */

.na-carousel-outer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.na-carousel-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.na-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.na-card-slot {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .na-card-slot {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* Slide-in animations */
@keyframes naSlideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes naSlideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.na-slide-in-right {
    animation: naSlideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.na-slide-in-left {
    animation: naSlideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Side arrow buttons */
.na-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 2px solid var(--hd-green, #008751);
    background: #fff;
    color: var(--hd-green, #008751);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.na-side-btn:hover {
    background: var(--hd-green, #008751);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 135, 81, 0.4);
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .na-side-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 13px;
    }
}

/* ============================================================
   NEW ARRIVALS — OWL CENTER-SCALE CAROUSEL (athlosports.in style)
   ============================================================ */

.na-section {
    overflow: hidden;
}

.na-owl-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 4px;
    position: relative;
}

.na-owl-track-wrap {
    overflow: hidden;
    flex: 1;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.na-owl-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
    width: 100%;
}

/* Each card slot */
.na-owl-card {
    flex: 0 0 300px;
    max-width: 300px;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
    position: relative;
}

/* Center (active) card glows slightly */
.na-owl-card.na-owl-center {
    box-shadow: 0 12px 40px rgba(0, 135, 81, 0.18);
}

/* Owl-style side arrow buttons */
.na-owl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    border: 2px solid var(--hd-green, #008751);
    background: #fff;
    color: var(--hd-green, #008751);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
    z-index: 20;
}

.na-owl-btn:hover {
    background: var(--hd-green, #008751);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 135, 81, 0.45);
    transform: scale(1.1);
}

/* Dot indicators */
.na-owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding-bottom: 4px;
}

.na-owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.na-owl-dot.active {
    background: var(--hd-green, #008751);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .na-owl-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 13px;
    }
    .na-owl-card {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

/* ============================================================
   NEW ARRIVALS — FLIPKART / RELIANCE DIGITAL STYLE v4
   ============================================================ */

/* Section wrapper */
.na-section {
    background: #f8f9fa;
    padding: 0px 0 12px;
    margin-bottom: 60px;
}

/* Header row */
.na-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.na-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hd-green, #008751);
    text-decoration: none;
    border: 2px solid var(--hd-green, #008751);
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
}
.na-see-all:hover {
    background: var(--hd-green, #008751);
    color: #fff;
}

/* Slider root — contains arrows + viewport */
.na-slider-root {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

/* The overflow-hidden viewport — full width */
.na-viewport {
    overflow: hidden;
    flex: 1;
    padding: 8px 0 12px;
    min-width: 0;
}

/* The scrolling track */
.na-track {
    display: flex;
    gap: 16px;
    padding: 4px 16px 8px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* -- Individual Card --------------------------- */
.na-card {
    flex: 0 0 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

@media (max-width: 991px) {
    .na-card {
        flex: 0 0 calc((100% - 32px) / 3);
        max-width: calc((100% - 32px) / 3);
    }
}

@media (max-width: 767px) {
    .na-card {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}
.na-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* Image area */
.na-card__img-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}
.na-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.na-card:hover .na-card__img-wrap img {
    transform: scale(1.06);
}

/* Badges */
.na-card__badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--hd-green, #008751);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.na-card__badge-off {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e51937;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Card body */
.na-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.na-card__brand {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.na-card__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.2em;
}
.na-card__name:hover { color: var(--hd-green, #008751); }

.na-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #f5a623;
    margin-top: 2px;
}
.na-card__rating span { color: #888; font-size: 0.7rem; }

.na-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}
.na-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}
.na-card__old {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
}

.na-card__cart {
    margin-top: 10px;
    width: 100%;
    padding: 8px 0;
    font-size: 0.78rem;
    font-weight: 700;
    border: 2px solid var(--hd-green, #008751);
    background: transparent;
    color: var(--hd-green, #008751);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.na-card__cart:hover {
    background: var(--hd-green, #008751);
    color: #fff;
}

/* -- Arrow Buttons ----------------------------- */
.na-arr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.22s ease;
    z-index: 10;
    flex-shrink: 0;
    margin: 0 8px;
}
.na-arr:hover {
    background: var(--hd-green, #008751);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 135, 81, 0.45);
    transform: scale(1.1);
}

/* -- Dots -------------------------------------- */
.na-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}
.na-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}
.na-dot.active {
    width: 24px !important;
    border-radius: 4px !important;
    background: var(--hd-green, #008751) !important;
}

@media (max-width: 576px) {
    
    .na-card__img-wrap { height: 140px; }
    .na-arr { width: 32px; height: 32px; min-width: 32px; font-size: 12px; margin: 0 4px; }
}

/* ============================================================
   STATS STRIP — TOP-TO-BOTTOM SLIDE + COUNTER ANIMATION
   ============================================================ */

/* Initial hidden state — above its natural position */
.stat-anim {
    opacity: 0;
    transform: translateY(-32px);
    transition:
        opacity 0.55s ease var(--d, 0s),
        transform 0.55s cubic-bezier(0.34, 1.3, 0.64, 1) var(--d, 0s);
}

/* When strip is in view — slide down into place */
.wcu-stats-strip.in-view .stat-anim {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   CUSTOMER REVIEWS — AUTO ROTATE SLIDER (No arrows)
   ============================================================ */

.reviews-section {
    background: #f8f9fa;
    padding: 50px 0 35px;
    margin-bottom: 50px;
    overflow: hidden;
}

.rev-badge {
    display: inline-block;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hd-red, #e51937);
    background: rgba(229, 25, 55, 0.08);
    border-radius: 50px;
}

.rev-viewport {
    overflow: hidden;
    padding: 12px 4px 16px;
}

.rev-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.rev-card {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    min-height: 230px;
}

.rev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
    border-color: var(--hd-green, #008751);
}

.rev-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.rev-card__stars {
    color: #f5a623;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.rev-card__quote-icon {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.rev-card__quote {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rev-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.rev-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hd-green, #008751), #00b86e);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rev-card__author {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.rev-card__location {
    font-size: 0.72rem;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.rev-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.rev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.rev-dot.active {
    width: 26px !important;
    border-radius: 4px !important;
    background: var(--hd-green, #008751) !important;
}

@media (max-width: 991px) {
    .rev-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 575px) {
    .rev-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Facebook Page Footer Embed */
.fb-page-embed-wrap {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Native Facebook Card */
.fb-card-native {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fb-card-native:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.fb-page-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* Official Facebook Page Plugin Container (Matches athlosports.in) */
.fb-page-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    width: 100%;
}
.fb-page-wrapper iframe {
    border-radius: 6px;
}

/* Facebook SDK Responsive Container */
.fb-page-box .fb-page,
.fb-page-box .fb-page span,
.fb-page-box .fb-page iframe {
    width: 100% !important;
    border-radius: 6px;
}


/* FLOATING WHATSAPP BUTTON (Positioned Above Scroll To Top Button) */
.whatsapp-float-btn {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.whatsapp-float-btn:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-4px) scale(1.05);
}

/* Google Review Badge in Footer */
.google-review-badge {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 260px;
}
.google-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
}

/* FLOATING CALL US BUTTON (Bottom Left - Matches athlosports.in) */
.call-us-float-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #8B5CF6; /* Purple Violet */
  color: #FFFFFF !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1050;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-us-float-btn i {
  font-size: 1rem;
}

.call-us-float-btn:hover {
  background-color: #7C3AED;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  transform: translateY(-4px);
}

/* FLOATING CHATBOT WIDGET */
.hd-chatbot-widget {
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Floating chat trigger button */
.hd-chat-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #008751, #005c37);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 135, 81, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-chat-float-btn:hover {
  background: linear-gradient(135deg, #00a362, #006b42);
  box-shadow: 0 6px 20px rgba(0, 135, 81, 0.6);
  transform: translateY(-3px) scale(1.05);
}

/* Chat popup window */
.hd-chat-window {
  width: 300px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #e2e8f0 !important;
  animation: slideUpChat 0.25s ease;
}

.hd-chat-window.d-none {
  display: none !important;
}

@keyframes slideUpChat {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hd-chat-body {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.hd-chat-body::-webkit-scrollbar {
  width: 4px;
}
.hd-chat-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* SITE BREADCRUMB BACKGROUND */
.hd-breadcrumb-wrap {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(229, 25, 55, 0.70) 100%),
    url('../images/about_bg.png') center center / cover no-repeat;
  padding: 60px 0 50px;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hd-breadcrumb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 25, 55, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hd-breadcrumb-wrap h1,
.hd-breadcrumb-wrap .h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: -0.5px;
}

.hd-breadcrumb-wrap .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
}

.hd-breadcrumb-wrap .breadcrumb-item a {
  color: #f8c8d0 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.hd-breadcrumb-wrap .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.hd-breadcrumb-wrap .breadcrumb-item.active {
  color: rgba(255,255,255,0.75);
}

.hd-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.45);
}

.hd-breadcrumb-wrap .fa-house {
  color: #f87171 !important;
}
