/* =====================================================
   Sandeep Power — Website CSS
   Colors: Red #d43f21 | Black #111 | White #fff
   Font: Poppins
   ===================================================== */

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

/* ── Variables ── */
:root {
  --red:          #d43f21;
  --red2:         #ff2f2f;
  --red3:         #ff1600;
  --black:        #000000;
  --dark:         #111111;
  --dark2:        #222222;
  --dark3:        #333333;
  --gray:         #666666;
  --gray2:        #999999;
  --border:       #dddddd;
  --border2:      #eeeeee;
  --light:        #f5f5f5;
  --light2:       #f9f9f9;
  --white:        #ffffff;
  --transition:   all 0.3s ease;
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.08);
  --shadow:       0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --radius:       4px;
  --radius-lg:    12px;
  --radius-pill:  50px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark3);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; line-height: 1.3; color: var(--dark); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ── Section Titles ── */
.section-title-wrap { text-align: center; margin-bottom: 40px; }
.section-title-wrap h2 {
  font-size: 32px; font-weight: 700; color: var(--dark);
  position: relative; display: inline-block; padding-bottom: 14px;
}
.section-title-wrap h2::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--red);
}
.section-title-wrap p { color: var(--gray); font-size: 15px; margin-top: 12px; }

/* ── Buttons ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 12px 35px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; border: 2px solid var(--red);
  transition: var(--transition); cursor: pointer;
}
.btn-red:hover { background: var(--dark); border-color: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-black {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 12px 35px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; border: 2px solid var(--black);
  transition: var(--transition); cursor: pointer;
}
.btn-black:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  padding: 11px 35px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; border: 2px solid var(--dark);
  transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.shop-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 18px 50px 17px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; border: none;
  transition: var(--transition); cursor: pointer;
  letter-spacing: 0.5px;
}
.shop-btn:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,63,33,0.4); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header { position: relative; z-index: 100; background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.mobile-nav { display: none; }

/* Top Bar */
.header-top {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 8px 0; font-size: 13px;
}
.header-top .social-icons { display: flex; gap: 10px; align-items: center; }
.header-top .social-icons a {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); color: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: var(--transition);
}
.header-top .social-icons a:hover { background: var(--red); color: var(--white); }
.header-top .contact-info { color: var(--gray); font-size: 12.5px; }
.header-top .contact-info strong, .header-top .contact-info a { color: var(--red2); font-weight: 600; }
.header-top .contact-info a:hover { color: var(--dark); }
.header-top .user-links a {
  color: var(--dark3); font-size: 12.5px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border); margin-left: 5px;
  transition: var(--transition);
}
.header-top .user-links a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Middle Header */
.header-middle { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border2); }
.header-logo img { max-height: 55px; width: auto; }
.header-logo .logo-text { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.header-logo .logo-sub { font-size: 10px; color: var(--red); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* Search */
.header-search-wrap { display: flex; align-items: center; background: var(--white); border: 2px solid var(--dark); border-radius: var(--radius-pill); overflow: hidden; height: 46px; }
.header-search-wrap .category-select {
  border: none; border-right: 1px solid var(--border); outline: none;
  padding: 0 15px; font-size: 13px; font-weight: 500; color: var(--dark3);
  background: var(--light); height: 100%; min-width: 160px; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.header-search-wrap input {
  flex: 1; border: none; outline: none; padding: 0 15px;
  font-size: 13px; font-family: 'Poppins', sans-serif;
  color: var(--dark3); background: var(--white);
}
.header-search-wrap input::placeholder { color: var(--gray2); }
.header-search-wrap button {
  background: var(--red); color: var(--white); border: none;
  padding: 0 20px; height: 100%; cursor: pointer; font-size: 16px;
  transition: var(--transition);
}
.header-search-wrap button:hover { background: var(--dark); }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
  position: relative; display: flex; align-items: center; gap: 8px;
  color: var(--dark); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); transition: var(--transition);
  cursor: pointer;
}
.header-icon-btn:hover { border-color: var(--red); color: var(--red); background: #fff5f5; }
.header-icon-btn i { font-size: 17px; }
.header-icon-btn .badge-count {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

/* Bottom Navigation */
.header-bottom { background: var(--dark); }
.main-nav { display: flex; align-items: center; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; color: rgba(255,255,255,0.88); font-size: 13.5px;
  font-weight: 500; padding: 14px 18px; letter-spacing: 0.3px;
  transition: var(--transition); white-space: nowrap;
}
.main-nav > li:hover > a,
.main-nav > li.active > a { color: var(--white); background: rgba(255,255,255,0.1); }
.main-nav > li > a.has-dropdown::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  margin-left: 6px; font-size: 11px;
}

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  box-shadow: var(--shadow-lg); border-top: 3px solid var(--red);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 999; border-radius: 0 0 8px 8px;
}
.main-nav > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--dark3);
  border-bottom: 1px solid var(--border2); transition: var(--transition);
}
.nav-dropdown a::before {
  content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 11px; color: var(--red); flex-shrink: 0;
}
.nav-dropdown a:hover { background: #fff5f5; color: var(--red); padding-left: 24px; }
.nav-dropdown li:last-child a { border-bottom: none; }

/* Mobile navbar */
.mobile-toggle { display: none; background: none; border: none; color: var(--dark); font-size: 22px; cursor: pointer; padding: 8px 12px; border-radius: 6px; transition: var(--transition); }
.mobile-toggle:hover { background: var(--light); color: var(--red); }

/* ══════════════════════════════════════
   TICKER / ANNOUNCEMENT BAR
══════════════════════════════════════ */
.ticker-section { background: rgba(255,152,0,0.1); overflow: hidden; border-bottom: 1px solid rgba(212,63,33,0.15); }
.ticker-label {
  background: var(--red); color: var(--white); padding: 12px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: 8px;
}
.ticker-track-wrap { flex: 1; overflow: hidden; }
.ticker-track {
  display: flex; gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 13px; font-weight: 600; color: var(--dark);
  white-space: nowrap; cursor: pointer; transition: var(--transition);
  border-right: 1px solid rgba(0,0,0,0.06);
}
.ticker-item i { font-size: 14px; color: var(--red3); }
.ticker-item:hover { color: var(--red); background: var(--white); transform: scale(1.05); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   HERO / BANNER
══════════════════════════════════════ */
.hero-section { position: relative; overflow: hidden; min-height: 520px; background: var(--dark); }
.hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0; }
.hero-content h1 {
  font-size: 48px; font-weight: 700; color: var(--white);
  line-height: 1.15; letter-spacing: -1px;
  font-family: 'Playfair Display', 'Poppins', serif;
}
.hero-content h1 span { color: var(--red2); }
.hero-content .hero-tagline { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--red2); margin-bottom: 15px; }
.hero-content p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 20px 0 35px; max-width: 580px; line-height: 1.8; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-btns .shop-btn { font-size: 14px; padding: 16px 40px; }
.hero-btns .btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 38px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition); cursor: pointer;
}
.hero-btns .btn-outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.hero-badges { display: flex; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-badge-item .num { font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-badge-item .num sup { font-size: 16px; font-weight: 700; color: var(--red2); }
.hero-badge-item .lbl { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
/* Carousel indicators */
.hero-section .carousel-indicators { bottom: 25px; }
.hero-section .carousel-indicators button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; transition: all 0.3s; }
.hero-section .carousel-indicators button.active { width: 28px; border-radius: 4px; background: var(--red2); }

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.feature-strip { background: var(--white); border-bottom: 1px solid var(--border2); padding: 30px 0; }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item .icon-wrap {
  width: 50px; height: 50px; border-radius: 50%;
  background: #fff5f5; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: var(--transition);
}
.feature-item:hover .icon-wrap { background: var(--red); color: var(--white); }
.feature-item h6 { font-size: 14px; font-weight: 700; margin: 0 0 3px; color: var(--dark); }
.feature-item p { font-size: 12px; color: var(--gray); margin: 0; }

/* ══════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════ */
.stats-section { background: var(--dark); padding: 60px 0; }
.stat-item { text-align: center; padding: 20px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-item .num { font-size: 44px; font-weight: 800; color: var(--white); font-family: 'Poppins', sans-serif; line-height: 1; }
.stat-item .num .plus { color: var(--red2); font-size: 28px; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.stat-item .icon { font-size: 28px; color: var(--red2); margin-bottom: 15px; }

/* ══════════════════════════════════════
   CATEGORY BOXES
══════════════════════════════════════ */
.categories-section { padding: 70px 0; background: var(--white); }
.category-box {
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.category-box:hover { transform: translateY(-6px); box-shadow: 0 0 2px 0 rgba(212,63,33,0.3), var(--shadow); border-color: var(--red); }
.category-box-header {
  background: var(--red); color: var(--white);
  padding: 12px 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  text-transform: uppercase; text-align: center;
}
.category-box-body { padding: 20px; text-align: center; background: var(--white); }
.category-box-body img { height: 110px; width: 100%; object-fit: contain; margin: 0 auto; transition: var(--transition); }
.category-box:hover .category-box-body img { transform: scale(1.08); }
.category-box-body .cat-name { font-size: 13px; font-weight: 600; color: var(--dark3); margin-top: 12px; }

/* Alt category cards (icon style) */
.cat-card-alt {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 25px 15px; text-align: center;
  transition: var(--transition); cursor: pointer; box-shadow: var(--shadow-sm);
}
.cat-card-alt:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card-alt:hover .cat-icon { background: var(--red); color: var(--white); }
.cat-icon-wrap { width: 64px; height: 64px; border-radius: 12px; background: #fff5f5; color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 12px; transition: var(--transition); }
.cat-card-alt .name { font-size: 13px; font-weight: 700; color: var(--dark); }
.cat-card-alt .count { font-size: 11px; color: var(--gray2); margin-top: 3px; }

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.product-section { padding: 70px 0; }
.product-section.bg-gray { background: var(--light2); }

.product-card-wrap { padding: 5px; }
.single-product-wrap {
  background: var(--white); border: 1px solid var(--border);
  padding: 15px; text-align: center; position: relative;
  overflow: hidden; transition: var(--transition);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
}
.single-product-wrap:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.15); transform: translateY(-4px); border-color: var(--red); }
.product-img-wrap {
  position: relative; height: 175px; display: flex;
  align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px;
}
.product-img-wrap img { height: 100%; width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.single-product-wrap:hover .product-img-wrap img { transform: scale(1.08); }

/* Badges */
.product-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new  { background: var(--red); color: var(--white); }
.badge-sale { background: var(--dark); color: var(--white); }
.badge-hot  { background: #ff5300; color: var(--white); }

/* Quick actions overlay */
.product-actions {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(15px); transition: var(--transition);
}
.single-product-wrap:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--dark3); cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.action-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Product info */
.product-title-text { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.5; min-height: 38px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-rating { display: flex; justify-content: center; gap: 2px; margin-bottom: 8px; }
.product-rating i { font-size: 11px; color: #ffc107; }
.product-price-wrap { margin-bottom: 12px; }
.product-price-wrap .price { font-size: 18px; font-weight: 700; color: var(--dark); }
.product-price-wrap .mrp { text-decoration: line-through; color: var(--gray2); font-size: 12px; margin-left: 6px; }
.product-price-wrap .discount { color: var(--red); font-size: 12px; font-weight: 600; }

/* Product buttons */
.product-btn-wrap { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.btn-add-cart, .btn-enquiry {
  font-size: 12px; font-weight: 600; padding: 8px 18px;
  border-radius: var(--radius-pill); border: 1.5px solid; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 5px;
}
.btn-add-cart { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-add-cart:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-enquiry { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-enquiry:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ══════════════════════════════════════
   SECTION DIVIDER / CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(212,63,33,0.12);
}
.cta-banner::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner .content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 15px; font-family: 'Playfair Display', sans-serif; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 30px; max-width: 580px; }
.cta-banner .shop-btn { font-size: 15px; }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-section { padding: 70px 0; background: var(--light2); }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 30px 25px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
  height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red); }
.why-card:hover .why-icon { background: var(--red); color: var(--white); }
.why-icon {
  width: 58px; height: 58px; border-radius: 12px;
  background: #fff5f5; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; transition: var(--transition);
}
.why-card h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding: 70px 0; background: var(--white); }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 30px 25px; position: relative;
  box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red); }
.testimonial-card .quote-icon {
  font-size: 48px; line-height: 1; color: var(--red);
  opacity: 0.15; position: absolute; top: 20px; right: 20px;
  font-family: Georgia, serif;
}
.testimonial-card .stars { color: #ffc107; font-size: 13px; margin-bottom: 12px; }
.testimonial-card .text { font-size: 14px; color: var(--gray); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid #fff5f5;
}
.testimonial-card .author-initials {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-card .name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-card .role { font-size: 12px; color: var(--gray2); }

/* ══════════════════════════════════════
   BLOG / NEWS
══════════════════════════════════════ */
.blog-section { padding: 70px 0; background: var(--light2); }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm); height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red); }
.blog-card .blog-img-wrap { overflow: hidden; height: 200px; }
.blog-card .blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-card .blog-body { padding: 20px; }
.blog-cat { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-card .blog-title { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 10px; }
.blog-card .blog-title:hover { color: var(--red); }
.blog-meta { font-size: 12px; color: var(--gray2); display: flex; align-items: center; gap: 12px; }

/* ══════════════════════════════════════
   NEWSLETTER / SUBSCRIBE
══════════════════════════════════════ */
.subscribe-section {
  background: var(--white); padding: 100px 0;
  text-align: center;
}
.subscribe-section .subtitle { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.subscribe-section h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 15px; font-family: 'Playfair Display', sans-serif; }
.subscribe-section p { color: var(--gray); font-size: 15px; max-width: 450px; margin: 0 auto 35px; }
.subscribe-form {
  display: flex; max-width: 500px; margin: 0 auto;
  border: 2px solid var(--dark); border-radius: var(--radius-pill); overflow: hidden;
}
.subscribe-form input {
  flex: 1; border: none; outline: none; padding: 15px 22px;
  font-size: 14px; font-family: 'Poppins', sans-serif;
}
.subscribe-form button {
  background: var(--red); color: var(--white); border: none;
  padding: 0 28px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.subscribe-form button:hover { background: var(--dark); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 0; }
.footer-logo img { max-height: 55px; margin-bottom: 18px; }
.footer-logo .logo-text { font-size: 22px; font-weight: 800; color: var(--white); }
.footer-logo .logo-sub { font-size: 10px; color: var(--red2); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-about p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 35px; height: 35px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.footer-heading { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--red); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.footer-links a::before { content: '\f101'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--red); font-size: 11px; flex-shrink: 0; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-list li .icon { color: var(--red2); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li .info { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-list li .info a { color: rgba(255,255,255,0.55); }
.footer-contact-list li .info a:hover { color: var(--white); }

.footer-newsletter-form {
  display: flex; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill); overflow: hidden; margin-top: 15px;
}
.footer-newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: none; outline: none;
  color: var(--white); padding: 12px 18px; font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form button {
  background: var(--red); color: var(--white); border: none;
  padding: 0 20px; cursor: pointer; font-size: 15px; transition: var(--transition);
}
.footer-newsletter-form button:hover { background: var(--dark2); }

.footer-bottom {
  background: rgba(0,0,0,0.3); margin-top: 50px;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ══════════════════════════════════════
   FLOATING CART BAR
══════════════════════════════════════ */
.float-cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  background: var(--dark); color: var(--white);
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  animation: slideUpCart 0.3s ease;
}
@keyframes slideUpCart { from { transform: translateY(100%); } to { transform: translateY(0); } }
.float-cart-icon { position: relative; font-size: 22px; color: var(--white); }
.float-cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--red); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.float-cart-checkout {
  background: var(--red); color: var(--white);
  padding: 10px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: var(--transition);
}
.float-cart-checkout:hover { background: var(--red3); color: var(--white); }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 85px; right: 22px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 5px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #128c7e; color: var(--white); transform: scale(1.1); }
.whatsapp-float::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform:scale(.85); opacity:.7; } 100% { transform:scale(1.5); opacity:0; } }

#backToTop {
  position: fixed; bottom: 25px; right: 22px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white); border: none;
  display: none; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  box-shadow: 0 4px 15px rgba(212,63,33,0.4);
  transition: var(--transition);
}
#backToTop:hover { background: var(--dark); transform: translateY(-3px); }
#backToTop.visible { display: flex; }

/* ══════════════════════════════════════
   SEARCH SUGGESTIONS
══════════════════════════════════════ */
#searchSuggestions {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 1000;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); max-height: 380px; overflow-y: auto; display: none;
}
.suggestion-item { display: flex; align-items: center; gap: 12px; padding: 10px 15px; cursor: pointer; border-bottom: 1px solid var(--border2); transition: var(--transition); }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: #fff5f5; }
.suggestion-item img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; border: 1px solid var(--border2); }
.suggestion-item .s-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.suggestion-item .s-price { font-size: 12px; color: var(--red); font-weight: 600; }

/* ══════════════════════════════════════
   FLASH / TOAST
══════════════════════════════════════ */
.flash-container { position: fixed; top: 100px; right: 20px; z-index: 9999; max-width: 340px; }
.flash-toast {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: 6px;
  padding: 14px 16px; margin-bottom: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-left: 4px solid var(--red);
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
.flash-toast.success { border-left-color: #22c55e; }
.flash-toast.error   { border-left-color: var(--red2); }
.flash-toast .close-toast { background:none; border:none; font-size:14px; color:var(--gray2); cursor:pointer; margin-left:auto; padding:0; }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.breadcrumb-section { background: var(--dark); padding: 30px 0; }
.breadcrumb-section h1 { color: var(--white); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.breadcrumb-nav { list-style:none; display:flex; gap:8px; align-items:center; font-size:13px; margin:0; padding:0; }
.breadcrumb-nav li { color:rgba(255,255,255,0.5); }
.breadcrumb-nav li + li::before { content:'/'; margin-right:8px; }
.breadcrumb-nav li a { color:var(--red2); }
.breadcrumb-nav li a:hover { color:var(--white); }

/* ══════════════════════════════════════
   CART PAGE
══════════════════════════════════════ */
.cart-item { border-bottom: 1px solid var(--border2); padding: 20px 0; }
.cart-item img { width: 80px; height: 80px; object-fit: contain; border: 1px solid var(--border2); padding: 5px; }
.qty-box { display:inline-flex; align-items:center; border: 1.5px solid var(--border); border-radius: 6px; overflow:hidden; }
.qty-box button { width:34px; height:34px; background: var(--light); border:0; cursor:pointer; font-weight:700; font-size:15px; transition:var(--transition); }
.qty-box button:hover { background:var(--red); color:var(--white); }
.qty-box input { width:42px; height:34px; border:0; text-align:center; font-weight:600; font-size:14px; font-family:'Poppins',sans-serif; }
.order-summary-box { background: var(--light2); border: 1px solid var(--border); border-radius:6px; padding:25px; }

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */
.product-gallery .main-img { border: 1px solid var(--border); border-radius:4px; overflow:hidden; margin-bottom:10px; display:flex; align-items:center; justify-content:center; height:420px; }
.product-gallery .main-img img { max-height:100%; object-fit:contain; }
.product-gallery .thumb-wrap { display:flex; gap:8px; flex-wrap:wrap; }
.product-gallery .thumb { width:70px; height:70px; border: 2px solid var(--border); border-radius:4px; overflow:hidden; cursor:pointer; transition:var(--transition); }
.product-gallery .thumb:hover, .product-gallery .thumb.active { border-color:var(--red); }
.product-gallery .thumb img { width:100%; height:100%; object-fit:contain; }
.product-detail-title { font-size: 26px; font-weight:800; color:var(--dark); margin-bottom:12px; }
.product-detail-price .price { font-size:28px; font-weight:800; color:var(--red); }
.product-detail-price .mrp { font-size:16px; text-decoration:line-through; color:var(--gray2); margin-left:10px; }
.product-detail-price .save { font-size:14px; color:#22c55e; font-weight:600; }

/* ══════════════════════════════════════
   FORMS (Global)
══════════════════════════════════════ */
.form-control-custom {
  width:100%; padding:12px 16px; border:1.5px solid var(--border);
  border-radius:6px; font-size:14px; font-family:'Poppins',sans-serif;
  color:var(--dark3); background:var(--white); outline:none;
  transition:var(--transition);
}
.form-control-custom:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(212,63,33,0.1); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .header-bottom { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav { display: block; background: var(--dark); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .mobile-nav.open { max-height: 600px; }
  .mobile-nav a { display: block; color: rgba(255,255,255,0.85); padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; font-weight: 500; }
  .mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
  .hero-content h1 { font-size: 34px; }
  .hero-badges { gap: 15px; }
}
@media (max-width: 767px) {
  .header-top .contact-info { display: none; }
  .header-search-wrap .category-select { display: none; }
  .hero-content { padding: 60px 0; }
  .hero-content h1 { font-size: 26px; }
  .hero-badges { flex-wrap: wrap; }
  .stat-item + .stat-item::before { display: none; }
  .subscribe-form { flex-direction: column; border-radius: 8px; }
  .subscribe-form input { padding: 13px 18px; }
  .subscribe-form button { padding: 13px; }
}
@media (max-width: 575px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .shop-btn, .hero-btns .btn-outline-white { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════
   CATALOG BROWSER
══════════════════════════════════════ */
.catalog-section { padding: 50px 0; background: var(--light2); }
.cat-tab-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 2px solid var(--border); padding-bottom: 14px; }
.cat-tab { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); background: var(--white); font-size: 13px; font-weight: 600; color: var(--dark3); cursor: pointer; transition: var(--transition); text-decoration: none; }
.cat-tab:hover, .cat-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }
.cat-tab .count { font-size: 10px; background: rgba(0,0,0,0.12); padding: 1px 6px; border-radius: 20px; }
.cat-tab.active .count { background: rgba(255,255,255,0.25); }

.subcat-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.subcat-chip { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--white); font-size: 12px; font-weight: 500; color: var(--gray); cursor: pointer; transition: var(--transition); text-decoration: none; }
.subcat-chip:hover, .subcat-chip.active { border-color: var(--dark); color: var(--dark); background: var(--dark); color: var(--white); }

.catalog-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 767px) { .catalog-products { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .catalog-products { grid-template-columns: 1fr; } }
.catalog-empty { text-align: center; padding: 60px 20px; color: var(--gray2); }
.catalog-empty i { font-size: 3rem; margin-bottom: 12px; display: block; }

/* Become Dealer Page */
.dealer-apply-section { padding: 70px 0; background: var(--light2); }
.dealer-apply-card { background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; max-width: 900px; margin: 0 auto; }
.dealer-apply-sidebar { background: var(--dark); color: rgba(255,255,255,0.8); padding: 50px 35px; }
.dealer-apply-sidebar h3 { color: var(--white); font-size: 24px; font-weight: 800; margin-bottom: 15px; }
.dealer-apply-sidebar p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.dealer-benefit { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.dealer-benefit .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(212,63,33,0.2); color: var(--red2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.dealer-benefit h6 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.dealer-benefit p { font-size: 12px; color: rgba(255,255,255,0.55); margin: 0; }
.dealer-apply-form { padding: 50px 40px; }
.dealer-apply-form .form-label { font-weight: 600; font-size: 13px; color: var(--dark); }
.dealer-apply-form .form-control, .dealer-apply-form .form-select { border: 1.5px solid var(--border); border-radius: 6px; font-size: 13px; padding: 10px 14px; font-family: 'Poppins', sans-serif; }
.dealer-apply-form .form-control:focus, .dealer-apply-form .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(212,63,33,0.1); }

/* Cart sidebar / counter */
.cart-qty-wrap { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; margin: 8px auto 0; width: fit-content; }
.cart-qty-wrap button { width: 30px; height: 30px; border: none; background: var(--light); color: var(--dark); font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.cart-qty-wrap button:hover { background: var(--red); color: var(--white); }
.cart-qty-wrap input { width: 36px; height: 30px; border: none; text-align: center; font-weight: 700; font-size: 13px; }
.mini-cart-bar { background: var(--dark); color: var(--white); padding: 12px 0; position: sticky; bottom: 0; z-index: 900; display: none; }
.mini-cart-bar.has-items { display: block; }
.mini-cart-bar .inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.mini-cart-bar .cart-info { font-size: 14px; font-weight: 600; }
.mini-cart-bar .cart-info span { color: var(--red2); }

/* ══════════════════════════════════════
   STICKY HEADER WITH SCROLL EFFECT
══════════════════════════════════════ */
.site-header { position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-middle { padding: 10px 0; }

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-left  { transform: translateX(-35px); }
.reveal.reveal-right { transform: translateX(35px); }
.reveal.reveal-zoom  { transform: scale(0.9); }
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   MODERN IMAGE SLIDER (Homepage)
══════════════════════════════════════ */
.sp-slider {
  position: relative; overflow: hidden;
  background: var(--dark); min-height: 520px;
}
.sp-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.04);
  display: flex; align-items: center;
}
.sp-slide.active {
  opacity: 1; transform: scale(1); position: relative;
}
.sp-slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.sp-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(212,63,33,0.15) 100%);
}
.sp-slide-content {
  position: relative; z-index: 2; padding: 100px 0 80px;
}
.sp-slide-content .chip {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 30px;
  margin-bottom: 20px; animation: fadeInLeft 0.8s ease both;
}
.sp-slide-content h1 {
  font-size: clamp(30px,5vw,56px); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.sp-slide-content h1 em {
  font-style: normal; color: var(--red2);
  background: linear-gradient(135deg, var(--red2), #ff8800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-slide-content p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  max-width: 520px; line-height: 1.8; margin-bottom: 35px;
  animation: fadeInUp 0.8s 0.25s ease both;
}
.sp-slide-content .btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.sp-slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.sp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: all 0.35s ease; padding: 0;
}
.sp-dot.active { width: 30px; border-radius: 4px; background: var(--red); }
.sp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; font-size: 16px;
  backdrop-filter: blur(4px);
}
.sp-arrow:hover { background: var(--red); border-color: var(--red); }
.sp-prev { left: 20px; }
.sp-next { right: 20px; }
@media (max-width: 767px) {
  .sp-slide-content { padding: 70px 0 60px; }
  .sp-arrow { display: none; }
}

/* ══════════════════════════════════════
   ANIMATED COUNTER
══════════════════════════════════════ */
.counter-num { transition: all 0.1s; }

/* ══════════════════════════════════════
   SECTION COLOR VARIANTS
══════════════════════════════════════ */
.section-white   { background: var(--white); padding: 70px 0; }
.section-light   { background: var(--light2); padding: 70px 0; }
.section-dark    { background: var(--dark); padding: 70px 0; }
.section-red     { background: var(--red); padding: 70px 0; }
.section-grad-dark { background: linear-gradient(135deg, #0d1117 0%, #1e2a3a 100%); padding: 70px 0; }
.section-grad-red  { background: linear-gradient(135deg, var(--red) 0%, #a83215 100%); padding: 60px 0; }

/* Pattern overlay */
.pattern-dots::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* ══════════════════════════════════════
   IMPROVED FEATURE STRIP
══════════════════════════════════════ */
.feature-strip-v2 {
  background: var(--white);
  border-bottom: 1px solid var(--border2);
  border-top: 1px solid var(--border2);
  padding: 0;
}
.feature-strip-v2 .feature-item-v2 {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 20px; border-right: 1px solid var(--border2);
  transition: var(--transition);
}
.feature-strip-v2 .feature-item-v2:last-child { border-right: none; }
.feature-strip-v2 .feature-item-v2:hover { background: #fff5f5; }
.feature-strip-v2 .fi-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: var(--transition);
}
.feature-strip-v2 .feature-item-v2:hover .fi-icon { transform: scale(1.1) rotate(-5deg); }
.feature-strip-v2 .fi-title { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 3px; }
.feature-strip-v2 .fi-sub { font-size: 12px; color: var(--gray); margin: 0; }

/* ══════════════════════════════════════
   BRANDS / PARTNERS STRIP
══════════════════════════════════════ */
.brands-strip { background: var(--white); border-top: 1px solid var(--border2); padding: 40px 0; }
.brands-track-wrap { overflow: hidden; position: relative; }
.brands-track {
  display: flex; gap: 0; align-items: center;
  animation: brands-scroll 25s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
.brand-logo-item {
  padding: 10px 35px; border-right: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.55; transition: var(--transition);
}
.brand-logo-item:hover { opacity: 1; }
.brand-logo-item img { max-height: 40px; width: auto; filter: grayscale(100%); transition: var(--transition); }
.brand-logo-item:hover img { filter: none; }
.brand-logo-item span { font-size: 15px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; white-space: nowrap; }
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   PRODUCT CATEGORY TILES (Homepage)
══════════════════════════════════════ */
.cat-tile {
  position: relative; border-radius: 10px; overflow: hidden;
  background: var(--dark); cursor: pointer;
  transition: var(--transition); display: block;
  text-decoration: none; aspect-ratio: 1/1;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.25); }
.cat-tile-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; opacity: 0.65;
}
.cat-tile:hover .cat-tile-img { transform: scale(1.08); }
.cat-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}
.cat-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
}
.cat-tile-body h6 {
  font-size: 15px; font-weight: 700; color: #fff;
  margin: 0 0 4px; line-height: 1.3;
}
.cat-tile-body span {
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.cat-tile-body .arrow {
  position: absolute; right: 16px; bottom: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: 0; transition: var(--transition);
  transform: translateX(10px);
}
.cat-tile:hover .cat-tile-body .arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   ABOUT / PROCESS SECTION
══════════════════════════════════════ */
.process-step {
  text-align: center; padding: 30px 20px; position: relative;
}
.process-step + .process-step::before {
  content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: var(--red); opacity: 0.5;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 24px; font-weight: 800; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; box-shadow: 0 6px 20px rgba(212,63,33,0.35);
}
.step-num::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px dashed rgba(212,63,33,0.3);
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { 100% { transform: rotate(360deg); } }
.process-step h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.7; }

/* ══════════════════════════════════════
   HOVER GLOW EFFECT
══════════════════════════════════════ */
.hover-glow { transition: var(--transition); }
.hover-glow:hover { box-shadow: 0 0 0 3px rgba(212,63,33,0.2), var(--shadow-lg); }

/* ══════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--border2) 25%, var(--light) 50%, var(--border2) 75%);
  background-size: 200% 100%; animation: skeleton-pulse 1.5s infinite; border-radius: 4px;
}
@keyframes skeleton-pulse { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
