/* =============================================
   AL-KAREEM MUTTON HOUSE — STYLESHEET
   Theme: Clean white/cream with warm amber accents
   Fonts: Playfair Display + DM Sans
============================================= */

:root {
  --clr-bg:           #ffffff;
  --clr-bg-alt:       #faf7f4;
  --clr-bg-dark:      #1a1008;
  --clr-surface:      #f4efe9;
  --clr-card:         #ffffff;
  --clr-border:       #e8ddd3;
  --clr-accent:       #b8690a;
  --clr-accent-light: #d4821a;
  --clr-accent-pale:  rgba(184,105,10,0.10);
  --clr-text:         #1a1008;
  --clr-muted:        #7a6a58;
  --clr-white:        #ffffff;
  --ff-display:       'Playfair Display', Georgia, serif;
  --ff-body:          'DM Sans', sans-serif;
  --radius:           16px;
  --shadow-sm:        0 2px 12px rgba(0,0,0,0.06);
  --shadow:           0 8px 36px rgba(0,0,0,0.10);
  --shadow-lg:        0 20px 60px rgba(0,0,0,0.13);
  --transition:       0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 3px; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-28px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollLine  { 0%{height:0;opacity:1} 100%{height:60px;opacity:0} }
@keyframes pulse       { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes toastSlide  {
  0%  {transform:translateX(calc(-50% + 120%));opacity:0}
  15% {transform:translateX(-50%);opacity:1}
  85% {transform:translateX(-50%);opacity:1}
  100%{transform:translateX(calc(-50% + 120%));opacity:0}
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   SHARED TYPOGRAPHY
============================================= */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}
.section-label.light { color: var(--clr-accent-light); }

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 16px;
}
.section-heading em  { font-style: italic; color: var(--clr-accent); }
.section-heading.light { color: var(--clr-white); }
.section-sub-text {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-text { color: var(--clr-muted); font-size: 0.97rem; margin-bottom: 14px; line-height: 1.8; }

/* =============================================
   BUTTONS
============================================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(184,105,10,0.28);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,105,10,0.38);
  color: #fff;
}
.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}
.btn-ghost-custom:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.navbar-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-icon { font-size: 1.4rem; }
.brand-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
#mainNav.scrolled .brand-text { color: var(--clr-text); }
.toggler-icon { color: #fff; font-size: 1.2rem; transition: color var(--transition); }
#mainNav.scrolled .toggler-icon { color: var(--clr-text); }
.navbar-toggler { border: none; background: none; box-shadow: none !important; padding: 4px 8px; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  padding: 8px 14px !important;
  transition: color var(--transition);
  position: relative;
}
#mainNav.scrolled .nav-link { color: var(--clr-muted) !important; }
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: #fff !important; }
#mainNav.scrolled .nav-link:hover { color: var(--clr-accent) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
}
.nav-cta:hover { background: var(--clr-accent-light); transform: translateY(-1px); color: #fff !important; }

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius);
    margin-top: 10px;
    padding: 16px 20px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
  }
  .navbar-collapse .nav-link { color: var(--clr-muted) !important; }
  .navbar-collapse .nav-link:hover { color: var(--clr-accent) !important; }
}

/* =============================================
   HERO
============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?w=1800&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,8,3,0.87) 0%, rgba(22,14,5,0.68) 60%, rgba(12,8,3,0.90) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 100px; padding-bottom: 60px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.09;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.hero-title em { font-style: italic; color: var(--clr-accent-light); display: block; }
.hero-sub {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.8;
  animation: fadeInUp 0.9s 0.25s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.scroll-line { width: 1px; height: 0; background: var(--clr-accent); animation: scrollLine 1.8s ease infinite; }

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
}

/* =============================================
   STATS STRIP
============================================= */
.stats-strip {
  background: var(--clr-bg-dark);
  padding: 0;
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-accent-light);
  display: inline-block;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--clr-accent-light);
}
.stat-item p { color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin: 6px 0 0; }

@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
}

/* =============================================
   ABOUT
============================================= */
.about-section { background: var(--clr-bg); padding: 100px 0; }
.about-img-wrap { position: relative; padding-bottom: 40px; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: -30px;
  width: 180px; height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(184,105,10,0.35);
  animation: float 4s ease-in-out infinite;
}
.about-badge-float i { font-size: 1rem; }
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: border-color var(--transition), background var(--transition);
}
.pillar i { color: var(--clr-accent); }
.pillar:hover { border-color: var(--clr-accent); background: var(--clr-accent-pale); }

@media (max-width: 1199px) {
  .about-img-accent { display: none; }
  .about-badge-float { left: 10px; }
}
@media (max-width: 767px) {
  .about-section { padding: 70px 0; }
  .about-img-main img { height: 320px; }
}

/* =============================================
   PRODUCTS
============================================= */
.products-section { background: var(--clr-bg-alt); padding: 100px 0; }

.product-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}
.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.product-tag.new  { background: #28a745; }
.product-tag.hot  { background: #e74c3c; }
.product-tag.best { background: #e67e22; }
.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-info h5 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
}
.product-info p { font-size: 0.83rem; color: var(--clr-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-accent);
}
.product-price small { font-family: var(--ff-body); font-size: 0.72rem; color: var(--clr-muted); }
.add-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-accent-pale);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}
.add-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 575px) {
  .products-section { padding: 70px 0; }
  .product-img-wrap { height: 180px; }
}

/* =============================================
   ARTICLES
============================================= */
.articles-section { background: var(--clr-bg); padding: 100px 0; }
.article-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--clr-accent);
}
.article-img { position: relative; height: 210px; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.article-card:hover .article-img img { transform: scale(1.06); }
.article-cat {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.article-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-date { font-size: 0.75rem; color: var(--clr-muted); display: block; margin-bottom: 8px; }
.article-body h5 {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px; line-height: 1.4;
}
.article-body p { font-size: 0.87rem; color: var(--clr-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.article-link {
  color: var(--clr-accent);
  font-weight: 600; font-size: 0.83rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.article-link:hover { gap: 10px; color: var(--clr-accent-light); }

@media (max-width: 767px) {
  .articles-section { padding: 70px 0; }
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section { background: var(--clr-bg-alt); padding: 100px 0; }

.testi-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--clr-accent);
}
.testi-card.featured {
  border-color: var(--clr-accent);
  background: linear-gradient(145deg, #fff, var(--clr-accent-pale));
  box-shadow: 0 8px 32px rgba(184,105,10,0.12);
}
.testi-quote { font-size: 1.8rem; color: var(--clr-accent); opacity: 0.35; margin-bottom: 14px; line-height: 1; }
.testi-card p { font-size: 0.93rem; color: var(--clr-muted); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--clr-text); font-weight: 600; }
.testi-author span { font-size: 0.76rem; color: var(--clr-muted); }
.testi-stars { color: var(--clr-accent); font-size: 0.88rem; letter-spacing: 2px; }

/* Carousel controls */
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-card);
  color: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: scale(1.08);
}
.ind-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--clr-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.ind-dot.active, .ind-dot:hover { background: var(--clr-accent); transform: scale(1.3); }

/* Ensure carousel doesn't show overflow on mobile */
#testiCarousel .carousel-inner { overflow: visible; }
#testiCarousel .carousel-item { padding: 4px 2px 10px; }

@media (max-width: 767px) {
  .testimonials-section { padding: 70px 0; }
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a0d04 0%, #0f0800 50%, #1a0d04 100%);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-band h2 em { font-style: italic; color: var(--clr-accent-light); }
.cta-band p { color: rgba(255,255,255,0.55); margin-bottom: 30px; font-size: 1rem; }

@media (max-width: 480px) { .cta-band { padding: 65px 0; } }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #0f0800;
  padding: 80px 0 0;
}
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand .brand-text { color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.82rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--clr-accent); color: var(--clr-accent); background: rgba(184,105,10,0.12); }
.footer-heading {
  font-family: var(--ff-display);
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.42); font-size: 0.87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-accent); }
.footer-address {
  color: rgba(255,255,255,0.42); font-size: 0.86rem;
  margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6;
}
.footer-address i { color: var(--clr-accent); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0; margin-top: 50px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }

/* =============================================
   BACK TO TOP
============================================= */
#backToTop {
  position: fixed;
  bottom: 100px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-card);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: all var(--transition);
  font-size: 0.82rem;
  box-shadow: var(--shadow);
}
#backToTop.visible { opacity: 1; transform: translateY(0) scale(1); }
#backToTop:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: #fff; transform: translateY(-3px) scale(1.06); }

/* =============================================
   WHATSAPP FLOAT
============================================= */
#whatsappBtn {
  position: fixed;
  bottom: 26px; right: 22px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s infinite;
}
#whatsappBtn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); color: #fff; animation: none; }
.wa-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(15,8,0,0.92);
  color: #fff;
  font-size: 0.76rem;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
#whatsappBtn:hover .wa-tooltip { opacity: 1; }

/* =============================================
   CART TOAST
============================================= */
.cart-toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateX(120%);
  background: #fff;
  border: 1.5px solid var(--clr-accent);
  color: var(--clr-text);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 500;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  display: flex; align-items: center;
  box-shadow: var(--shadow);
}
.cart-toast i { color: var(--clr-accent); }
.cart-toast.show { animation: toastSlide 2.5s ease forwards; }

/* =============================================
   SCROLL PROGRESS BAR
============================================= */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--clr-accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(184,105,10,0.5);
}

/* =============================================
   RESPONSIVE — GENERAL
============================================= */
@media (max-width: 991px) {
  .about-section, .products-section,
  .articles-section, .testimonials-section { padding: 80px 0; }
}
@media (max-width: 767px) {
  .about-section, .products-section,
  .articles-section, .testimonials-section,
  .cta-band { padding: 65px 0; }
  .hero-title { font-size: 2.4rem; }
  .section-heading { font-size: 1.75rem; }
  #backToTop { bottom: 90px; right: 14px; }
  #whatsappBtn { bottom: 18px; right: 14px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .about-pillars { gap: 8px; }
  .pillar { font-size: 0.78rem; padding: 8px 14px; }
  .testi-controls .testi-btn { width: 38px; height: 38px; }
}