:root {
  --beige:        #EFDCC3;   /* header + about background          */
  --beige-dark:   #E7CFAE;   /* card backgrounds on beige          */
  --terracotta:   #B25B37;   /* buttons + accents                  */
  --terracotta-d: #96482A;   /* button hover (darker)              */
  --orange:       #E8912D;   /* small orange headings              */
  --brown:        #A85B32;   /* card titles                        */
  --dark:         #150A05;   /* dark brown/black sections          */
  --near-black:   #0D0705;   /* footer                             */
  --cream:        #F2DCC4;   /* light text on dark backgrounds     */
  --sky:          #67DBEF;   /* reviews background (light blue)    */
  --sky-card:     #59CDE1;   /* review card background             */
  --ink:          #1C1C1C;   /* main text color                    */
  --white:        #FFFFFF;

  --font-main: 'Quicksand', 'Segoe UI', Arial, sans-serif;

  --radius: 6px;             /* corner roundness                   */
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --speed: .35s;             /* hover animation speed              */
}


/* ---------- 2. RESET & BASICS ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;               /* prevents sideways scrolling  */
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92%);          /* centered, adapts to screen  */
  margin-inline: auto;
}

.section { padding: 90px 0; }

/* Section headings */
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);   /* shrinks on phones      */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--cream); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.05rem;
}
.section-intro.light { color: var(--cream); }


/* ---------- 3. BUTTONS (with hover effect) --------------------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--speed), box-shadow var(--speed),
              background var(--speed);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
/* HOVER EFFECT: lifts up + glows + darkens */
.btn-primary:hover {
  background: var(--terracotta-d);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(178, 91, 55, .35);
}
.btn-primary:active { transform: translateY(-1px); }


/* ---------- 4. HEADER / NAVIGATION ----------------------------- */
.site-header {
  position: sticky;                 /* stays visible while scrolling */
  top: 0;
  z-index: 1000;
  background: var(--beige);
  transition: box-shadow var(--speed);
}
/* subtle shadow appears after you start scrolling (added by JS) */
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-img {
  height: 62px;
  width: auto;
  transition: transform var(--speed);
}
.logo-link:hover .logo-img { transform: scale(1.05); }

.main-nav {
  display: flex;
  gap: 42px;
}
.main-nav a {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
/* HOVER EFFECT: animated underline grows from left */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed);
}
.main-nav a:hover::after { transform: scaleX(1); }

/* Hamburger button — hidden on desktop, shown on phones */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--speed), opacity var(--speed);
}
/* turns into an X when the menu is open */
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ---------- 5. HERO -------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  /* IMAGE: change the file name below to swap the hero photo */
  background: url("images/Living Room.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 12, 8, .55);   /* dark tint so text is readable */
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

/* ANIMATION: hero elements fade in + slide up, one after another */
.hero-eyebrow, .hero-title, .hero-tagline, .hero .btn {
  opacity: 0;
  animation: riseIn .9s ease forwards;
}
.hero-eyebrow { animation-delay: .15s; }
.hero-title   { animation-delay: .35s; }
.hero-tagline { animation-delay: .55s; }
.hero .btn    { animation-delay: .75s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: clamp(.85rem, 2vw, 1.15rem);
  margin-bottom: 14px;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-tagline {
  color: var(--cream);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 34px;
}


/* ---------- 6. ABOUT ------------------------------------------- */
.about { background: var(--beige); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* text | image */
  gap: 60px;
  align-items: center;
}

.about-text p { margin-bottom: 18px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
  margin-top: 34px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  color: var(--terracotta);
  font-size: 1.45rem;
  margin-top: 5px;
  transition: transform var(--speed);
}
/* HOVER EFFECT: icon wiggles slightly larger */
.feature:hover .feature-icon { transform: scale(1.25) rotate(-6deg); }
.feature h3 {
  color: var(--brown);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.feature p { font-size: .95rem; }

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--speed);
}
.about-image:hover img { transform: scale(1.02); }


/* ---------- 7. MATERIALS (product cards) ----------------------- */
.materials { background: var(--beige); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.material-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform var(--speed), box-shadow var(--speed);
}
/* HOVER EFFECT: card lifts up */
.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(0,0,0,.16);
}
.material-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.material-card h3 {
  color: var(--brown);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.material-card p { font-size: .97rem; }


/* ---------- 8. BANNER (leather strip) -------------------------- */
.banner {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  /* IMAGE: change the file name below to swap the banner photo */
  background: url("images/Leatherette.jpg") center/cover no-repeat;
  background-attachment: fixed;     /* parallax scrolling effect   */
}
.banner-overlay {
  position: absolute; inset: 0;
  background: rgba(60, 25, 8, .35);
}
.banner-title {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: .06em;
  padding: 0 20px;
}


/* ---------- 9. INSPIRATION (dark gallery) ---------------------- */
.inspiration { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;                 /* needed for the zoom effect  */
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.gallery-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
/* HOVER EFFECT: photo slowly zooms in + brightens */
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.08);
}


/* ---------- 10. REVIEWS (light blue) --------------------------- */
.reviews { background: var(--sky); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.review-card {
  background: var(--sky-card);
  border-left: 5px solid var(--terracotta);
  padding: 34px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform var(--speed), box-shadow var(--speed);
}
/* HOVER EFFECT: gentle lift */
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.review-icon {
  color: var(--brown);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.review-card p {
  font-style: italic;
  font-weight: 600;
  font-size: .98rem;
}


/* ---------- 11. FIND US (Google Map) --------------------------- */
.find-us { background: var(--beige); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; }

.map-actions {
  text-align: center;
  margin-top: 34px;
}


/* ---------- 12. FOOTER ----------------------------------------- */
.site-footer {
  background: var(--near-black);
  color: var(--cream);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-heading {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.footer-col p { margin-bottom: 16px; }

.footer-contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-line i {
  color: var(--terracotta);
  margin-top: 6px;
}
.footer-contact-line a:hover { color: var(--orange); }

.social-links { display: flex; gap: 14px; margin-top: 10px; }
.social-btn {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #241610;
  transition: background var(--speed), transform var(--speed);
}
/* HOVER EFFECT: social buttons turn terracotta + lift */
.social-btn:hover {
  background: var(--terracotta);
  transform: translateY(-4px);
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
  font-weight: 600;
}
.hours-list li span:first-child { font-weight: 700; }
.hours-list li.closed { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(242, 220, 196, .18);
  text-align: center;
  padding: 26px 0;
  font-size: .95rem;
}


/* ---------- 13. SCROLL REVEAL ANIMATION ------------------------ */
/* script.js automatically gives sections the class "reveal".
   When you scroll to them, it adds "visible" → they fade in.     */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* cards animate one after another (staggered) */
.reveal.visible .stagger {
  animation: riseIn .7s ease both;
}


/* ---------- 14. RESPONSIVE (tablet & phone) -------------------- */

/* Tablets (up to 992px wide) */
@media (max-width: 992px) {
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .materials-grid   { grid-template-columns: 1fr 1fr; }
  .reviews-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 380px; }
}

/* Phones (up to 768px wide) */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* show hamburger, hide menu until tapped */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--beige);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;                  /* closed by default           */
    overflow: hidden;
    transition: max-height .45s ease;
    box-shadow: 0 14px 24px rgba(0,0,0,.12);
  }
  .main-nav.open { max-height: 320px; }   /* slides open            */
  .main-nav a { padding: 16px 0; width: 100%; text-align: center; }
  .main-nav a::after { display: none; }

  .materials-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 40px; }
  .gallery-item img { height: 300px; }

  /* parallax off on phones (mobile browsers handle it badly) */
  .banner { background-attachment: scroll; min-height: 300px; }

  .logo-img { height: 52px; }
  .map-wrap iframe { height: 340px; }
}

/* Small phones (up to 420px wide) */
@media (max-width: 420px) {
  .hero { min-height: 78vh; }
  .btn  { padding: 13px 26px; }
}


/* ---------- 15. ACCESSIBILITY ---------------------------------- */
/* Respects visitors who turn off animations in their device      */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-title, .hero-tagline, .hero .btn { opacity: 1; }
}



/* ---------- 16. FOOTER: Google review button + find-us heading -- */
.btn-review {
  padding: 11px 22px;          /* slightly smaller than main buttons */
  font-size: .8rem;
  margin: 4px 0 22px;
}

.find-heading {
  color: var(--orange);        /* same orange as footer headings */
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ================================================================
   17. GALLERY (dropdown menu, gallery pages, lightbox)
   ================================================================ */

/* ---------- Dropdown in the menu ------------------------------- */
.nav-item.has-dropdown { position: relative; }

.drop-toggle {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.drop-arrow { font-size: .7rem; transition: transform var(--speed); }
.has-dropdown:hover .drop-arrow { transform: rotate(180deg); }

/* Desktop-only dropdown (floating box). Fenced so phones and
   in-app browsers can never accidentally use it. */
@media (min-width: 769px) {
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--beige);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  min-width: 170px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
  z-index: 1200;
}
/* HOVER: dropdown fades + slides down smoothly */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
}

.dropdown a {
  display: block;
  padding: 11px 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .88rem;
  transition: background var(--speed), color var(--speed), padding-left var(--speed);
}
.dropdown a:hover {
  background: var(--terracotta);
  color: var(--cream);
  padding-left: 28px;
}

/* ---------- Gallery page title banner -------------------------- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--dark);
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(20,12,8,.25); }
.page-hero-content { position: relative; z-index: 1; padding: 60px 20px; }
.page-hero-title {
  color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0;
  animation: riseIn .9s ease .15s forwards;
}
.page-hero-sub {
  color: var(--cream);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: riseIn .9s ease .4s forwards;
}

/* ---------- Product groups & image grid ------------------------ */
.gallery-section { background: var(--beige); }

.gallery-hint {
  text-align: center;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 44px;
}

/* FRAME: each product lives inside its own bordered card,
   so names and images never mix with the next product        */
.product-group {
  background: var(--white);
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 44px;
  box-shadow: var(--shadow);
  transition: transform var(--speed), box-shadow var(--speed);
}
/* HOVER: whole product card lifts gently, like homepage cards */
.product-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.14);
}

.product-name {
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid var(--terracotta);
}

.g-grid {
  display: grid;
  /* flexible: 1 photo fills the card, 2 share it, 3 make columns */
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.g-item img {
  width: 100%;
  height: auto;              /* natural proportions — no cropping */
  transition: transform .5s ease, filter .5s ease;
}
/* HOVER: gentle zoom + brighten, same feel as homepage gallery */
.g-item:hover img { transform: scale(1.06); filter: brightness(1.07); }

/* ---------- Catalogues section --------------------------------- */
.catalogues { background: var(--white); }
.catalogue-list { text-align: center; }
.catalogue-empty { font-weight: 600; color: var(--brown); }

/* ---------- Lightbox (full-screen viewer) ---------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 4, .93);
  display: grid;
  place-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  user-select: none;
  -webkit-user-drag: none;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(239, 220, 195, .12);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background var(--speed), transform var(--speed);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--terracotta);
  transform: scale(1.08);
}
.lb-close { top: 22px; right: 22px; font-size: 2rem; }
.lb-prev  { left: 22px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Gallery responsive --------------------------------- */
@media (max-width: 768px) {
  .g-grid { gap: 14px; }

  /* dropdown inside the mobile slide-down menu */
  .main-nav.open { max-height: 560px; }     /* taller: fits sub-links */
  .nav-item.has-dropdown { width: 100%; text-align: center; }
  .drop-toggle { padding: 16px 0; width: 100%; justify-content: center; }
  .dropdown {
    position: static !important;
    left: auto;
    transform: none !important;
    width: 100%;
    transform: none;
    box-shadow: none;
    background: var(--beige-dark);
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height .4s ease;
  }
  .has-dropdown.open .dropdown { max-height: 140px; padding: 4px 0; }
  .dropdown a { padding: 12px 0; }
  .dropdown a:hover { padding-left: 0; }

  .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 1.2rem; }
}



/* ---------- Gallery page banner photos ------------------------- */
/* IMAGE: put these two photos in your images folder:
     images/leatherette-banner.jpg   (Leatherette page banner)
     images/fabric-banner.jpg        (Fabric page banner)
   Until the photo exists, the banner stays elegant dark brown.    */
.hero-leatherette {
  background: var(--dark) url("images/Leatherette.jpg") center/cover no-repeat;
}
.hero-fabric {
  background: var(--dark) url("images/Fabric.jpg") center/cover no-repeat;
}
/* darker tint over the photo so the title stays readable */
.hero-leatherette .page-hero-overlay,
.hero-fabric .page-hero-overlay {
  background: rgba(20, 12, 8, .55);
}

/* ================================================================
   18. WHATSAPP BUTTON + BRAND-COLORED SOCIAL ICONS + DEALER LINE
   ================================================================ */

/* --- Social icons as full-color brand logos on white circles --- */
/* --- Social icons as full-color brand logos on white circles --- */
.social-btn { transition: transform var(--speed), box-shadow var(--speed); }
.social-btn.brand-logo {
  background: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.social-btn.brand-logo:hover {
  background: #FFFFFF !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.social-btn.brand-logo svg { display: block; }

/* --- Green "Chat on WhatsApp" button --- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;                 /* WhatsApp green */
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .95rem;
  margin-top: 18px;
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed);
}
.btn-whatsapp i { font-size: 1.3rem; }
.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, .35);
}

/* --- Authorised Dealer line in footer bottom --- */
.dealer-line {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
