/* ============================================================
   TRUST LINK — Main Stylesheet
   Brand: Maroon #800000 | Yellow #FFFF00 | Font: Poppins
============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --maroon:        #800000;
  --maroon-dark:   #5c0000;
  --maroon-light:  #9e0000;
  --maroon-soft:   rgba(128, 0, 0, 0.08);
  --yellow:        #FFFF00;
  --yellow-dark:   #d4d400;
  --yellow-soft:   rgba(255, 255, 0, 0.15);
  --white:         #ffffff;
  --off-white:     #fafafa;
  --black:         #0a0a0a;
  --gray-100:      #f8f9fa;
  --gray-200:      #e9ecef;
  --gray-300:      #dee2e6;
  --gray-500:      #adb5bd;
  --gray-600:      #6c757d;
  --gray-800:      #343a40;
  --font:          'Poppins', sans-serif;
  --shadow-xs:     0 1px 4px rgba(128,0,0,0.08);
  --shadow-sm:     0 2px 12px rgba(128,0,0,0.10);
  --shadow-md:     0 6px 24px rgba(128,0,0,0.14);
  --shadow-lg:     0 12px 48px rgba(128,0,0,0.18);
  --shadow-xl:     0 24px 80px rgba(128,0,0,0.22);
  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --radius-full:   9999px;
  --transition:    all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --header-h:      80px;
}

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

/* scroll-behavior must be auto — Lenis handles smooth scroll */
html { scroll-behavior: auto; font-size: 16px; }

/* Lenis requires these to be unset so it controls the scroll container */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; padding: 0; margin: 0; }

/* ── Utility ──────────────────────────────────────────────── */
.text-maroon  { color: var(--maroon) !important; }
.bg-maroon    { background: var(--maroon) !important; }
.text-yellow  { color: var(--yellow) !important; }
.bg-yellow    { background: var(--yellow) !important; }
.fw-500       { font-weight: 500 !important; }
.fw-600       { font-weight: 600 !important; }
.fw-700       { font-weight: 700 !important; }
.fw-800       { font-weight: 800 !important; }

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

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: var(--radius-full); }

/* ── Section Headings ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--maroon-soft);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span { color: var(--maroon); }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--yellow));
  border-radius: var(--radius-full);
  margin: 16px 0 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  border: 2px solid var(--maroon);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-maroon:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-maroon-outline {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-maroon-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,0,0.3);
}

.btn-cta-call {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--maroon) !important;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,255,0,0.25);
}

.btn-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,0,0.4);
  color: var(--maroon-dark) !important;
}

/* Ripple Effect */
.btn-maroon::after, .btn-yellow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.4s ease;
}
.btn-maroon:active::after, .btn-yellow:active::after { transform: scale(1); }

/* ── Form Elements ────────────────────────────────────────── */
.tl-input, .tl-select, .tl-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.tl-input:focus, .tl-select:focus, .tl-textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(128,0,0,0.08);
}

.form-label { font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; color: var(--gray-800); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(128,0,0,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.site-header .navbar { padding: 0; width: 100%; }

.header-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.site-header.scrolled .header-logo { height: 44px; }

/* Nav Links */
.site-header .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-800);
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition);
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--maroon);
  border-radius: var(--radius-full);
  transition: transform 0.28s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--maroon); }

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Cart Icon */
.cart-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--maroon-soft);
  border-radius: var(--radius-full);
  color: var(--maroon);
  font-size: 1.15rem;
  transition: var(--transition);
}

.cart-icon-btn:hover {
  background: var(--maroon);
  color: var(--white);
  transform: scale(1.08);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--yellow);
  color: var(--maroon);
  font-size: 0.62rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  min-width: 18px;
}

/* Mobile Toggler */
.custom-toggler {
  border: none;
  background: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* Push content below fixed header */
#mainContent { padding-top: var(--header-h); }

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-swiper {
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  max-height: 860px;
}

.hero-slide {
  position: relative;
  background: var(--maroon-dark);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--maroon-dark); /* fallback if image fails */
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg { transform: scale(1.06); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 0;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,0,0.15);
  border: 1px solid rgba(255,255,0,0.4);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}

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

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.7s ease, transform 0.6s 0.7s ease;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
}

.swiper-slide-active .hero-label,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: var(--transition);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 0.9rem; font-weight: 800; }

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--maroon); border-color: var(--maroon); }

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section { background: var(--gray-100); }

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

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

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--maroon);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-badge .num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-badge .txt { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px; opacity: 0.9; }

.about-features { display: flex; flex-direction: column; gap: 16px; }

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.about-feature-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }

.about-feat-icon {
  width: 44px;
  height: 44px;
  background: var(--maroon-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(128,0,0,0.12);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
}

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

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

.product-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.in-stock  { background: #d4edda; color: #155724; }
.out-stock { background: #f8d7da; color: #721c24; }

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

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
}

.product-mrp {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.product-price-row-lg {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 20px;
  flex-wrap: wrap;
}

.product-price-lg {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: -0.5px;
}

.product-mrp-lg {
  font-size: 1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  flex: 1;
}

/* Qty Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 14px;
}

.qty-btn {
  background: var(--gray-100);
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { background: var(--maroon); color: var(--white); }

.qty-input {
  width: 44px;
  height: 34px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-300);
  border-right: 1.5px solid var(--gray-300);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
}

.qty-input:focus { outline: none; }
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.product-card-actions .btn-maroon,
.product-card-actions .btn-maroon-outline {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.8rem;
}

/* ── PRODUCTS GRID ────────────────────────────────────────── */
.products-section { background: var(--white); }
.products-section.alt-bg { background: var(--gray-100); }

.view-all-wrap { text-align: center; margin-top: 48px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--yellow); font-size: 0.95rem; margin-bottom: 14px; }

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.93rem; }
.testimonial-role { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* Swiper pagination for testimonials */
.testimonials-section .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
.testimonials-section .swiper-pagination-bullet-active { background: var(--yellow); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--gray-100); }

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.open {
  border-color: rgba(128,0,0,0.2);
  box-shadow: var(--shadow-xs);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  gap: 12px;
}

.faq-question:hover, .faq-item.open .faq-question {
  background: var(--maroon-soft);
  color: var(--maroon);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--maroon-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--maroon); color: var(--white); transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
  background: var(--white);
}

.faq-item.open .faq-answer { display: block; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.breadcrumb-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.breadcrumb-item a { color: var(--yellow); }
.breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(128,0,0,0.15);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--maroon-soft), rgba(128,0,0,0.04));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--maroon);
  border: 1px solid rgba(128,0,0,0.12);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--maroon);
  color: var(--white);
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--maroon-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon { background: var(--maroon); color: var(--white); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* ── PRODUCT DETAILS PAGE ─────────────────────────────────── */
.product-detail-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.product-detail-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-detail-img-main img:hover { transform: scale(1.04); }

.product-thumbnails { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.thumb-item {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item:hover, .thumb-item.active { border-color: var(--maroon); }

.product-title-lg {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.stock-indicator.in-stock { background: #d4edda; color: #155724; }
.stock-indicator.out-stock { background: #f8d7da; color: #721c24; }

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: currentColor;
}

.size-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

.size-btn {
  padding: 7px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}

.size-btn:hover, .size-btn.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.share-icons { display: flex; align-items: center; gap: 10px; }

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-600);
}

.share-btn:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ── PRODUCT IMAGE ZOOM HINT ──────────────────────────────── */
.img-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-detail-img-main:hover .img-zoom-hint { opacity: 1; }

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox-dialog { max-width: min(92vw, 900px); }

.lightbox-content {
  background: #111;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.lightbox-img {
  display: block;
  max-height: 85vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ── PRODUCT POLICY BLOCKS ─────────────────────────────────── */
.policy-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.policy-icon {
  width: 42px;
  height: 42px;
  background: var(--maroon-soft);
  color: var(--maroon);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.policy-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.policy-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── CART PAGE ────────────────────────────────────────────── */
.cart-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
}

.cart-table th {
  background: var(--maroon);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 18px;
  border: none;
}

.cart-table td {
  padding: 16px 18px;
  vertical-align: middle;
  border-color: var(--gray-200);
  font-size: 0.9rem;
}

.cart-product-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.cart-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.cart-summary-row:last-child { border-bottom: none; }
.cart-total { font-size: 1.1rem; font-weight: 800; color: var(--maroon); }

.remove-btn {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.remove-btn:hover { color: #dc3545; background: #f8d7da; }

/* ── CHECKOUT MODAL ───────────────────────────────────────── */
.checkout-modal-content {
  border-radius: var(--radius-xl) !important;
  border: none;
  box-shadow: var(--shadow-xl);
}

.checkout-note {
  background: var(--maroon-soft);
  border-left: 3px solid var(--maroon);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--maroon);
  display: flex;
  align-items: center;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: #0f0f0f; }

.footer-top { padding: 72px 0 56px; }

.footer-logo { height: 90px; width: auto; object-fit: contain; }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 340px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--maroon);
  border-radius: var(--radius-full);
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

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

.footer-links a i { font-size: 0.72rem; color: var(--maroon); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  line-height: 1.6;
}

.footer-contact li i { color: var(--maroon); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.55); }
.footer-contact li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}

/* ── FLOATING ACTIONS ─────────────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}

.fab-whatsapp { background: #25d366; color: var(--white); }
.fab-call     { background: var(--maroon); color: var(--white); }
.fab-top      { background: var(--gray-800); color: var(--white); opacity: 0; pointer-events: none; }
.fab-top.visible { opacity: 1; pointer-events: all; }

.fab-btn:hover { transform: scale(1.12) translateY(-3px); color: var(--white); }

/* ── ADMIN MINIMAL STYLES ─────────────────────────────────── */
/* (Full admin styles in admin/assets/admin.css) */

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* ── PRODUCT FILTER TABS ──────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }

.filter-tab {
  padding: 9px 24px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: 0.87rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* ── EMPTY STATES ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
}

.empty-icon {
  font-size: 3.5rem;
  color: var(--gray-300);
  margin-bottom: 20px;
}

/* ── STATS BANNER ─────────────────────────────────────────── */
.stats-section { background: var(--maroon); padding: 56px 0; }

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

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── GLASS CARD ───────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .site-header { overflow: visible; }
  .site-header .navbar { position: relative; }
  .site-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--maroon);
    z-index: 999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .header-actions { padding-top: 12px; border-top: 1px solid var(--gray-200); }
}

@media (max-width: 767.98px) {
  .section-pad     { padding: 60px 0; }
  .section-pad-sm  { padding: 40px 0; }
  .hero-swiper     { height: 78vh; min-height: 480px; }
  .contact-form-card { padding: 28px 20px; }
  .about-img-wrap img { height: 280px; }
  .about-badge { width: 90px; height: 90px; bottom: -12px; right: -12px; }
  .about-badge .num { font-size: 1.3rem; }
  .product-card-actions { flex-direction: column; }
}

@media (max-width: 575.98px) {
  :root { --header-h: 70px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-maroon,
  .hero-btns .btn-yellow { width: 100%; max-width: 100%; }
  .btn-maroon-outline{width: 100%; max-width: 100%;}
  .product-card-actions .btn-maroon-outline{width: 100%; max-width: 100%;}
  .filter-tabs { gap: 8px; }
  .footer-top { padding: 48px 0 36px; }
}

/* ── PLACEHOLDER IMAGE ────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 2rem;
}

/* ── LOADING SPINNER ──────────────────────────────────────── */
.tl-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

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

/* ── SWIPER CUSTOM ────────────────────────────────────────── */
.tl-swiper .swiper-button-next,
.tl-swiper .swiper-button-prev {
  color: var(--maroon);
}

.tl-swiper .swiper-pagination-bullet-active { background: var(--maroon); }
