/* ============================================================
   Shree Priya Wire Products — style.css
   Self-contained. No external token file needed.
   Fonts: Playfair Display + Poppins (Google Fonts CDN)
   ============================================================ */

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

/* ── CSS TOKENS ── */
:root {
  --red:      #8B1A1A;
  --red-md:   #6f1414;
  --red3:     #a52020;
  --red-l:    #fdf2f2;
  --red-m:    rgba(139,26,26,.18);
  --dark:     #0f0606;
  --ink:      #1C1C1C;
  --gray:     #6b7280;
  --light:    #F7F4F1;
  --border:   #e5ddd7;
  --white:    #ffffff;
  --ff-head:  'Poppins', -apple-system, sans-serif;
  --ff-body:  'Poppins', -apple-system, sans-serif;
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     20px;
  --r-pill:   999px;
  --sh-red:   0 8px 28px rgba(139,26,26,.28);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--dark); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark); padding: 9px 48px; display: flex;
  align-items: center; justify-content: center; gap: 24px;
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.topbar strong { color: rgba(255,255,255,.8); }
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: #fff; }

/* ── NAVIGATION ── */
nav {
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; height: 78px;
}
.nav-logo img { height: 90px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: #444; padding: 8px 16px;
  border-radius: var(--r-sm); transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: var(--red-l); }
.nav-cta {
  background: var(--red); color: #fff !important; padding: 10px 22px;
  border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  box-shadow: var(--sh-red); transition: all .22s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-md) !important; transform: translateY(-1px); }

/* ── MOBILE HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; border: none; background: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; display: block; }

/* ── MOBILE MENU ── */
.mob-overlay {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 999;
  flex-direction: column; padding: 32px 28px;
}
.mob-overlay.open { display: flex; }
.mob-close {
  align-self: flex-end; font-size: 22px; background: none; border: none;
  cursor: pointer; color: var(--dark); margin-bottom: 24px;
}
.mob-overlay a {
  font-size: 22px; font-weight: 700; color: var(--dark); padding: 16px 0;
  border-bottom: 1px solid var(--border); font-family: var(--ff-head);
}
.mob-overlay a:hover { color: var(--red); }

/* ── SECTION BASE ── */
.section { padding: 88px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: currentColor; display: block; }
.section-tag.center { display: flex; justify-content: center; }
.section-tag.center::before { display: none; }
.section-tag.light { color: rgba(255,180,180,.8); }
.section-tag.light::before { background: rgba(255,180,180,.5); }

.sec-h2 {
  font-family: var(--ff-head); font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; color: var(--dark); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.sec-sub {
  font-size: 16px; line-height: 1.8; color: var(--gray); max-width: 520px;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; padding: 13px 26px;
  border-radius: var(--r-pill); font-family: var(--ff-body); font-size: 14px;
  font-weight: 600; border: none; cursor: pointer; transition: all .22s;
  box-shadow: var(--sh-red); white-space: nowrap;
}
.btn-red:hover { background: var(--red-md); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(139,26,26,.38); }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--red); padding: 12px 24px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  border: 2px solid var(--red); cursor: pointer; transition: all .22s; white-space: nowrap;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.8); padding: 12px 24px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.3); cursor: pointer; transition: all .22s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark); padding: 13px 26px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .22s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }

/* ── STATS RIBBON ── */
.stats-ribbon { background: var(--dark); padding: 0; }
.stats-ribbon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.sr-item {
  padding: 36px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.sr-item:last-child { border-right: none; }
.sr-item:hover { background: rgba(255,255,255,.04); }
.sr-num {
  display: block; font-family: var(--ff-head); font-size: 42px;
  font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px;
}
.sr-lbl {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.38);
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--red); padding: 13px 0; overflow: hidden;
  border-top: 2px solid rgba(255,255,255,.1); border-bottom: 2px solid rgba(255,255,255,.1);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.mi {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.82); padding: 0 24px; white-space: nowrap;
}
.ms { color: rgba(255,255,255,.4); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── CHECK LIST ── */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #374151; line-height: 1.6; }
.ci {
  width: 22px; height: 22px; border-radius: 50%; background: var(--red-l);
  border: 1.5px solid var(--red-m); color: var(--red); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ── PRODUCT CARDS (homepage featured strip) ── */
.pc {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all .3s; cursor: pointer;
}
.pc:hover { transform: translateY(-7px); box-shadow: 0 20px 52px rgba(139,26,26,.12); border-color: rgba(139,26,26,.28); }
.pc-img {
  height: 196px; background: var(--light);
  position: relative; overflow: hidden;
}
.pc-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .35s ease; }
.pc:hover .pc-img img { transform: scale(1.05); }
.pc-tag {
  position: absolute; top: 13px; left: 13px; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.pc-body { padding: 20px 22px 24px; }
.pc-name { font-family: var(--ff-head); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pc-desc { font-size: 13.5px; line-height: 1.7; color: var(--gray); margin-bottom: 14px; }
.pc-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-pill {
  font-size: 11px; font-weight: 600; padding: 4px 11px;
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-pill); color: #555;
}

/* ── INFO CARDS (why section) ── */
.info-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; transition: all .28s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(139,26,26,.08); border-color: rgba(139,26,26,.22); }
.ic-icon {
  width: 52px; height: 52px; border-radius: var(--r-md); background: var(--red-l);
  border: 1.5px solid var(--red-m); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.ic-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ic-desc { font-size: 13.5px; line-height: 1.7; color: var(--gray); }

/* ── PARALLAX STRIPE ── */
.px-stripe {
  padding: 96px 0; position: relative; overflow: hidden;
  background-attachment: fixed; background-size: cover; background-position: center;
}
.px-bg-1 { background-color: #0a0101; background-image: radial-gradient(ellipse at 60% 50%, rgba(139,26,26,.35) 0%, transparent 70%); }
.px-bg-2 { background-color: #0a0101; background-image: radial-gradient(ellipse at 40% 50%, rgba(139,26,26,.35) 0%, transparent 70%); }
.px-quote {
  font-family: var(--ff-head); font-size: clamp(24px, 4vw, 48px); font-style: italic;
  color: #fff; line-height: 1.3; max-width: 760px; margin: 0 auto 20px;
}
.px-sub { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 560px; margin: 0 auto 36px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding: 72px 0 52px;
}
.footer-logo img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.flinks a:hover { color: #fff; }
.fcontact { display: flex; flex-direction: column; gap: 10px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.fci-icon { opacity: .5; flex-shrink: 0; margin-top: 2px; }
.fci-text a { color: rgba(255,255,255,.5); }
.fci-text a:hover { color: #fff; }
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.fsoc {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  transition: all .2s;
}
.fsoc:hover { border-color: var(--red); color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; flex-wrap: wrap; gap: 10px;
}

/* ── FADE UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .topbar { padding: 9px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar { display: none; }
}

/* ── TATA WIRON DEALER SECTION ────────────────────────────── */
.dealer-section {
    padding: 88px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
}

/* Main card */
.dealer-card {
    display: grid;
    grid-template-columns: 1fr 1px 1.6fr;
    gap: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.07);
    margin-bottom: 24px;
}

/* Left brand panel */
.dealer-brand {
    padding: 48px 40px;
    background: #f8faff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.dealer-logo-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 28px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.dealer-logo { height: 52px; width: auto; display: block; }
.dealer-tagline {
    font-size: 13px;
    font-weight: 700;
    color: #2d6a2d;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.dealer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 22px;
}
.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}
.db-icon {
    width: 18px; height: 18px; background: #22c55e; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; flex-shrink: 0;
}

/* Vertical divider */
.dealer-divider { background: var(--border); width: 1px; }

/* Right info panel */
.dealer-info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dealer-auth-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.dal-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.7); flex-shrink: 0;
}
.dealer-name {
    font-family: var(--ff-head);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
}
.dealer-location,
.dealer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 500;
}
.dealer-phone a {
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
    transition: color .2s;
}
.dealer-phone a:hover { color: var(--red); }
.dl-icon { font-size: 18px; flex-shrink: 0; }

/* Products carried grid */
.dealer-products { margin-top: 24px; width: 100%; }
.dp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.dp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: border-color .2s;
}
.dp-item:hover { border-color: rgba(139,26,26,.25); }
.dp-icon {
    font-size: 8px;
    color: var(--red);
    margin-top: 5px;
    flex-shrink: 0;
}
.dp-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.dp-sub {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
}

/* Trust strip */
.dealer-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
}
.dts-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .2s;
}
.dts-item:last-child { border-right: none; }
.dts-item:hover { background: rgba(255,255,255,.04); }
.dts-icon { font-size: 28px; flex-shrink: 0; }
.dts-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.dts-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,.4);
}

/* Responsive */
@media (max-width: 1000px) {
    .dealer-card { grid-template-columns: 1fr; }
    .dealer-divider { width: 100%; height: 1px; }
    .dealer-trust-strip { grid-template-columns: 1fr 1fr; }
    .dts-item:nth-child(2) { border-right: none; }
    .dts-item { border-bottom: 1px solid rgba(255,255,255,.07); }
    .dts-item:nth-child(3),
    .dts-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
    .dealer-brand { padding: 32px 24px; }
    .dealer-info { padding: 32px 24px; }
    .dp-grid { grid-template-columns: 1fr; }
    .dealer-trust-strip { grid-template-columns: 1fr; border-radius: 12px; }
    .dts-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .dts-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   ══════════════════════════════════════════════ */

/* ── LEFT STACK (WhatsApp + Call) ── */
.fab-left {
    position: fixed;
    left: 20px;
    bottom: 32px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* Base FAB */
.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 0 18px 0 6px;
    height: 52px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
    transition: transform .22s ease, box-shadow .22s ease, padding .22s ease;
    white-space: nowrap;
    overflow: hidden;
    max-width: 52px;        /* collapsed — shows icon only */
}
.fab:hover {
    max-width: 180px;       /* expands to show label */
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.fab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fab-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .18s ease .05s, transform .18s ease .05s;
    white-space: nowrap;
}
.fab:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp */
.fab-whatsapp {
    background: #25D366;
    color: #fff;
}
.fab-whatsapp .fab-icon {
    background: rgba(0,0,0,.12);
}
.fab-whatsapp:hover {
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

/* Call */
.fab-call {
    background: var(--red);
    color: #fff;
}
.fab-call .fab-icon {
    background: rgba(0,0,0,.15);
}
.fab-call:hover {
    box-shadow: 0 8px 28px rgba(139,26,26,.4);
}

/* Pulse ring on WhatsApp */
.fab-whatsapp::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    animation: fab-pulse 2.4s ease-out infinite;
    z-index: -1;
    pointer-events: none;
}
@keyframes fab-pulse {
    0%   { transform: scale(1);   opacity: .55; }
    70%  { transform: scale(1.5); opacity: 0;   }
    100% { transform: scale(1.5); opacity: 0;   }
}

/* ── RIGHT: Back to Top ── */
.fab-top {
    position: fixed;
    right: 20px;
    bottom: 32px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    border: 2px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: all .22s ease;
    /* hidden by default — shown after scrolling */
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}
.fab-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.fab-top:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139,26,26,.4);
}

/* ── Mobile tweaks ── */
@media (max-width: 640px) {
    .fab-left  { left: 14px; bottom: 24px; }
    .fab-top   { right: 14px; bottom: 24px; width: 44px; height: 44px; }
    .fab       { height: 48px; }
    .fab-icon  { width: 36px; height: 36px; }
}

/* ══════════════════════════════════════════════
   WHATSAPP BUTTONS ON PRODUCT CARDS
   ══════════════════════════════════════════════ */

/* Homepage featured strip — full-width button below chips */
.pc-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
    box-shadow: 0 3px 12px rgba(37,211,102,.25);
}
.pc-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    color: #fff;
}
.pc-whatsapp svg { flex-shrink: 0; }

/* Products catalogue — compact icon+text button in card footer */
.pcard-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #25D366;
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
    box-shadow: 0 3px 12px rgba(37,211,102,.22);
    white-space: nowrap;
}
.pcard-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.38);
    color: #fff;
}
.pcard-whatsapp svg { flex-shrink: 0; }

/* Adjust pcard-footer so all 3 elements (Enquire, WhatsApp, BIS) sit nicely */
.pcard-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ══════════════════════════════════════════════ */

/* Outer wrapper: positions arrows on sides */
.tc-outer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Arrow buttons */
.tc-arrow {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .22s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    z-index: 2;
    position: relative;
}
.tc-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 6px 20px rgba(139,26,26,.28);
}
.tc-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    background: #fff;
    border-color: var(--border);
    color: var(--gray);
    box-shadow: none;
}

/* Viewport — clips the sliding track */
.tc-viewport {
    flex: 1;
    overflow: hidden;
    margin: 0 16px;
}

/* Track — slides horizontally */
.tc-track {
    display: flex;
    gap: 22px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* Individual slide — width controlled by JS */
.tc-slide {
    flex-shrink: 0;
}

/* Card */
.tcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.tcard::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 20px;
    font-family: var(--ff-head);
    font-size: 100px;
    color: var(--red-l);
    line-height: 1;
    pointer-events: none;
}
.tcard:hover {
    box-shadow: 0 12px 36px rgba(139,26,26,.1);
    border-color: rgba(139,26,26,.2);
}

/* Stars */
.tcard-stars {
    font-size: 16px;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* Quote */
.tcard-quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    flex: 1;
    margin-bottom: 24px;
    font-style: normal;
}

/* Footer */
.tcard-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.tcard-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tcard-info { display: flex; flex-direction: column; gap: 2px; }
.tcard-name  { font-size: 14px; font-weight: 700; color: var(--dark); }
.tcard-meta  { font-size: 12px; color: var(--gray); }
.tcard-product {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    color: var(--red);
    background: var(--red-l);
    border: 1px solid var(--red-m);
    padding: 2px 9px;
    border-radius: var(--r-pill);
    margin-top: 3px;
}

/* Dot indicators */
.tc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.tc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none; cursor: pointer;
    transition: all .25s ease;
    padding: 0;
}
.tc-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

/* Stat row */
.testimonials-stat-row {
    display: flex;
    align-items: center;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.tsr-item { flex:1; text-align:center; padding:28px 20px; }
.tsr-sep  { width:1px; height:48px; background:var(--border); flex-shrink:0; }
.tsr-num  { font-family:var(--ff-head); font-size:32px; font-weight:800; color:var(--red); line-height:1; margin-bottom:6px; }
.tsr-lbl  { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--gray); }

/* Responsive */
@media (max-width: 640px) {
    .tc-arrow { width: 38px; height: 38px; }
    .tc-viewport { margin: 0 10px; }
    .testimonials-stat-row { flex-wrap: wrap; }
    .tsr-item { flex: 1 1 40%; }
    .tsr-sep  { display: none; }
}
