/* ============================================================
   SNBH – Sri Nataraja Bed House | Main Stylesheet
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --primary: #2C5F2E;
  --primary-light: #3d7a3f;
  --primary-dark: #1e451e;
  --accent: #C8953A;
  --accent-light: #e0ae51;
  --bg-cream: #FAF7F2;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #7A7A9A;
  --border: #E8E4DC;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Bootstrap Overrides */
  --bs-primary: #2C5F2E;
  --bs-primary-rgb: 44, 95, 46;
  --bs-dropdown-link-active-bg: var(--primary);
  --bs-dropdown-link-active-color: #ffffff;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ── Utilities ── */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-cream {
  background: var(--bg-cream) !important;
}

.bg-white {
  background: var(--bg-white) !important;
}

.fw-600 {
  font-weight: 600;
}

.heading-serif {
  font-family: var(--font-heading);
}

/* ── Section Heading ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 18px 0 28px;
}

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--primary);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 95, 46, .3);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--primary);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--accent);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-accent-custom:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 58, .3);
}

/* ── Navbar ── */
#mainNavbar {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  padding: 10px 0;
  z-index: 1050;
}

#mainNavbar .navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#mainNavbar .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  transition: color var(--transition);
}

#mainNavbar .brand-tagline {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}

#mainNavbar .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .4px;
  padding: 8px 14px !important;
  position: relative;
  transition: all var(--transition);
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Only show underline for standard top-level links (not dropdowns) */
#mainNavbar .nav-item:not(.dropdown) > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

#mainNavbar .nav-item:not(.dropdown) > .nav-link:hover::after,
#mainNavbar .nav-item:not(.dropdown) > .nav-link.active::after {
  transform: scaleX(1);
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--accent) !important;
}

#mainNavbar .nav-link:focus,
#mainNavbar .nav-link:active,
#mainNavbar .dropdown-toggle:focus,
#mainNavbar .dropdown-toggle:active,
#mainNavbar .dropdown-item:focus,
#mainNavbar .dropdown-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

/* Product dropdown menu toggles: clean caret, no bottom line */
#mainNavbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: static !important;
  height: auto !important;
  width: auto !important;
  background: transparent !important;
  transform: none !important;
}

#mainNavbar .dropdown-menu {
  --bs-dropdown-link-active-bg: var(--primary);
  --bs-dropdown-link-active-color: #ffffff;
  border: none !important;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 8px;
  margin-top: 8px;
  animation: dropDown .2s ease;
}

@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 992px) {
  #mainNavbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

#mainNavbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}

#mainNavbar .dropdown-item:hover {
  background: var(--bg-cream);
  color: var(--primary);
  padding-left: 22px;
}

#mainNavbar .dropdown-item.active,
#mainNavbar .dropdown-item:active {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

#mainNavbar .dropdown-item.active i,
#mainNavbar .dropdown-item:active i {
  color: #ffffff !important;
}

.navbar-toggler {
  border: none;
  color: var(--primary);
  font-size: 1.4rem;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: #fff !important;
}

/* ── Navbar WhatsApp Button ── */
.whatsapp-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-decoration: none;
  white-space: nowrap;
}

.whatsapp-nav-btn i {
  font-size: 1.15rem;
}

.whatsapp-nav-btn:hover {
  background: #1EBE55;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* ── CTA Banner Buttons (Matching Menu Buttons Design) ── */
.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff !important;
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(200, 149, 58, 0.35);
  border: 2px solid var(--accent);
}

.cta-contact-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 58, 0.5);
}

.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  border: 2px solid #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  white-space: nowrap;
}

.cta-whatsapp-btn i {
  font-size: 1.15rem;
}

.cta-whatsapp-btn:hover {
  background: #1EBE55;
  border-color: #1EBE55;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--text-dark);
}

.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--text-dark);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .hero-content {
  padding-top: 80px;
}

.hero-carousel .carousel-indicators {
  z-index: 3;
  margin-bottom: 2rem;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 8%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.05);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text-wrap {
  position: relative;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 149, 58, .2);
  border: 1px solid rgba(200, 149, 58, .4);
  color: var(--accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff;
  line-height: 1.22;
  margin-bottom: 16px;
  background: rgba(18, 38, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-title span {
  color: var(--accent-light);
}

.hero-desc {
  display: inline-block;
  width: fit-content;
  max-width: 650px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 24px;
  background: rgba(18, 38, 20, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  background: rgba(18, 38, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: .4;
    transform: scaleY(.6);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Feature Cards ── */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
}

/* ── Product Cards ── */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  transition: gap var(--transition);
}

.product-card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ── Why-Us / Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Testimonial ── */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .95rem;
}

.testimonial-place {
  font-size: .8rem;
  color: var(--text-light);
}

/* ── Page Hero Banner ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .7);
}

.page-hero .breadcrumb-item.active {
  color: var(--accent-light);
}

.page-hero h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
}

/* ── About Page ── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── Contact ── */
.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
}

.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--transition);
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 46, .12);
}

.form-label-custom {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

/* ── Map Box ── */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .75);
  padding: 70px 0 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 450px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
}

.footer-brand-tag {
  font-size: .72rem;
  letter-spacing: 2px;
  color: var(--accent-light);
  text-transform: uppercase;
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.8;
  margin-top: 14px;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

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

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  transition: all var(--transition);
  font-size: .9rem;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  font-size: .82rem;
}

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 9999;
  box-shadow: var(--shadow-md);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ── Toast Notification ── */
.snbh-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .9rem;
  z-index: 10000;
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.snbh-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── Fade-in Animation (Snappy & Fast-Scroll Optimized) ── */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Admin Badge ── */
.admin-fab {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--text-dark);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, .15);
  transition: all var(--transition);
  text-decoration: none;
}

.admin-fab:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title {
    padding: 12px 18px;
    font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  }

  .hero-desc {
    padding: 10px 16px;
    font-size: .95rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-value {
    font-size: 1.7rem;
  }

  .section-pad {
    padding: 56px 0;
  }

  .about-img-wrap img {
    height: 280px;
  }

  .about-badge-box {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

  .stats-strip .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    padding: 10px 14px;
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-desc {
    padding: 8px 12px;
    font-size: .88rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .contact-card {
    padding: 22px;
  }
}

/* ── Product Thumbnails Gallery ── */
.product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.65;
  background: #fff;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}

.product-thumb-item:hover {
  opacity: 0.95;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.product-thumb-item.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(44, 95, 46, 0.35);
  transform: scale(1.04);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Product Pages Top Padding Optimization ── */
.product-page-breadcrumb {
  padding-top: 85px !important;
  padding-bottom: 4px !important;
  margin-top: 0 !important;
}

.product-page-breadcrumb .breadcrumb {
  margin-bottom: 0 !important;
  padding: 6px 0 !important;
}

.product-page-section {
  padding-top: 18px !important;
  padding-bottom: 60px !important;
}

/* ── Product Detail UI/UX Enhancements ── */
.product-info-panel {
  background: #ffffff;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(232, 228, 220, 0.85);
}

@media (max-width: 576px) {
  .product-info-panel {
    padding: 22px 18px;
  }
}

.product-desc-lead {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-block-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.feature-list {
  background: var(--bg-cream);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.85);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.feature-list li:last-child {
  border-bottom: none;
}

.product-variants-block {
  background: var(--bg-cream);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
  cursor: default;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.variant-chip:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(44, 95, 46, 0.2);
}

.custom-variant-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-whatsapp-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff !important;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #25D366;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-custom:hover {
  background: #1EBE55;
  border-color: #1EBE55;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.product-trust-strip {
  border-color: rgba(232, 228, 220, 0.85) !important;
}

.product-trust-strip .fw-500 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── Product Detail Sticky Left Bar ── */
@media (min-width: 992px) {
  .product-page-section .row.align-items-start {
    align-items: stretch !important;
  }
  .product-sticky-col {
    align-self: stretch !important;
  }
  .product-gallery-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
    z-index: 10;
  }
}