/* ── TOP BAR ── */
.top-bar {
  background: linear-gradient(90deg, #b71c1c, #c62828, #b71c1c);
  padding: 8px 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.top-email { color: #fff; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.top-email a { text-decoration: none; font-size: 15px; color: white; }
.top-email i { font-size: 13px; opacity: 0.85; }
.top-social { display: flex; gap: 10px; align-items: center; }
.top-social a {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; text-decoration: none; transition: all 0.2s;
}
.top-social a:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* ── MAIN HEADER ── */
.main-header {
  background: #fff; border-bottom: 3px solid #c62828;
  padding: 0 30px; position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.main-header-inner {
  max-width: 1200px; margin: auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 90px; gap: 20px; transition: height 0.3s ease;
}
.main-header.scrolled .main-header-inner { height: 65px; }
.main-header.scrolled .logo-placeholder img { height: 52px; }

.logo-placeholder { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo-placeholder img { height: 75px; width: auto; max-width: 220px; object-fit: contain; display: block; transition: height 0.3s ease; }

.nav-right { display: flex; align-items: center; gap: 0; }
.nav { display: flex; align-items: center; list-style: none; gap: 0; }
.nav li { position: relative; }
.nav li a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 8px; font-size: 12.5px; font-weight: 600;
  color: #222; text-decoration: none; letter-spacing: 0.2px;
  text-transform: uppercase; transition: color 0.2s; white-space: nowrap;
}
.nav li a:hover, .nav li a.active { color: #c62828;     transition: 0.2s; }
.nav li a.active { border-bottom: 2px solid #c62828; }
.nav li a i { font-size: 10px; color: #888; }

.nav li:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 230px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top: 3px solid #c62828; border-radius: 0 0 8px 8px; z-index: 999;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 13px; font-weight: 500;
  color: #333; text-decoration: none; border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s; text-transform: none; letter-spacing: 0;
}
.dropdown a::before { content: ''; width: 6px; height: 6px; background: #c62828; border-radius: 50%; flex-shrink: 0; opacity: 0.7; }
.dropdown a:hover { background: #fff5f5; color: #c62828; padding-left: 22px;}
.dropdown a:last-child { border-bottom: none; }

.nav-icons { display: flex; align-items: center; gap: 4px; margin-left: 10px; border-left: 1px solid #eee; padding-left: 10px; }
.nav-icons a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: #333; font-size: 16px; text-decoration: none; border-radius: 8px;
  transition: all 0.2s; position: relative;
}
.nav-icons a:hover { background: #fff0f0; color: #c62828; }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: #c62828; color: #fff; font-size: 9px;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

.btn-login {
  display: flex; align-items: center; gap: 7px; margin-left: 10px; margin-right: 20px;
  padding: 8px 15px; border: 2px solid #c62828; color: #c62828;
  border-radius: 4px; font-size: 12px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.3px; text-transform: uppercase;
  transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.btn-login:hover { background: #c62828; color: #fff; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.menu-toggle .bar { width: 24px; height: 2.5px; background: #c62828; border-radius: 3px; transition: all 0.3s; }
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) { .nav li a { padding: 8px 10px; font-size: 12.5px; } .btn-login { padding: 8px 12px; font-size: 12px; } }
@media (max-width: 860px) {
  .nav, .btn-login { display: none; }
  .nav-icons { display: flex; border-left: none; margin-left: 0; padding-left: 0; gap: 6px; }
  .nav.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; border-top: 3px solid #c62828; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; padding: 10px 0; }
  .nav.active li { width: 100%; }
  .nav.active li a { padding: 12px 24px; border-bottom: 1px solid #f5f5f5; width: 100%; }
  .nav.active .dropdown { display: block; position: static; box-shadow: none; border: none; border-top: 1px solid #f5f5f5; padding-left: 16px; }
  .menu-toggle { display: flex; }
  .logo-placeholder img { height: 55px; }
}
@media (max-width: 480px) { .top-bar { flex-direction: column; gap: 6px; text-align: center; } .logo-placeholder img { height: 45px; } }

/* ── SLIDER ── */
.slider-wrapper { position: relative; width: 100%; overflow: hidden; background: #111; }
.slider-track { display: flex; transition: transform 0.6s ease-in-out; will-change: transform; }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 520px; object-fit: cover; display: block; opacity: 0.92; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(198,40,40,0.75); color: #fff; border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.slider-btn:hover { background: #b71c1c; }
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.6); }
.dot.active { background: #c62828; border-color: #fff; transform: scale(1.2); }
@media (max-width: 768px) { .slide img { height: 280px; } .slider-btn { width: 38px; height: 38px; font-size: 16px; } }
@media (max-width: 480px) { .slide img { height: 200px; } .slider-btn { width: 32px; height: 32px; font-size: 14px; } }

/* ── ABOUT SECTION ── */
.about-section { --red: #b01a1a; --dark-red: #8a1212; --gold: #c9a84c; --dark: #1a1a1a; --text: #3a3a3a; --light-bg: #faf8f5; --border: #e0d8cc; font-family: 'Lato', sans-serif; color: var(--text); max-width: 1200px; margin: 10px auto; padding: 0 24px; }
.about-section *, .about-section *::before, .about-section *::after { box-sizing: border-box; margin: 0; padding: 0; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.10); }
.about-image-panel { position: relative; overflow: hidden; background: #1a1a1a; align-self: stretch; height: 500px; margin-top: 134px; }
.about-image-panel img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; opacity: 0.85; transition: transform 0.7s ease, opacity 0.7s ease; }
.about-image-panel:hover img { transform: scale(1.04); opacity: 1; }
.badge-overlay { position: absolute; bottom: 28px; left: 28px; background: rgba(176,26,26,0.92); border: 2px solid #c9a84c; color: #fff; padding: 12px 20px; border-radius: 2px; backdrop-filter: blur(4px); }
.badge-overlay .badge-years { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; color: #c9a84c; }
.badge-overlay .badge-text { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: #fff; margin-top: 3px; }
.about-content-panel { background: #fff; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: #c9a84c; font-weight: 700; margin-bottom: 10px; }
.about-title { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: #b01a1a; line-height: 1.15; margin-bottom: 6px; }
.title-underline { width: 56px; height: 3px; background: #c9a84c; border-radius: 2px; margin-bottom: 28px; }
.about-desc { font-size: 0.97rem; line-height: 1.85; color: #3a3a3a; font-weight: 300; margin-bottom: 14px; }
.about-desc strong { color: #1a1a1a; font-weight: 700; }
.stats-row { display: flex; gap: 32px; margin: 28px 0; padding: 22px 0; border-top: 1px solid #e0d8cc; border-bottom: 1px solid #e0d8cc; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: #b01a1a; line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: #888; font-weight: 700; margin-top: 4px; }
.stat-divider { width: 1px; background: #e0d8cc; align-self: stretch; }
.brands-row { display: flex; gap: 12px; align-items: center; margin-bottom: 32px; }
.brand-tag { padding: 5px 16px; border: 1.5px solid #b01a1a; border-radius: 2px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #b01a1a; transition: background 0.25s, color 0.25s; cursor: default; }
.brand-tag:hover { background: #b01a1a; color: #fff; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #b01a1a; color: #fff; text-decoration: none; padding: 14px 32px; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.25s, transform 0.2s; width: fit-content; font-family: 'Lato', sans-serif; }
.cta-btn:hover { background: #8a1212; transform: translateY(-2px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.about-content-panel > * { animation: fadeUp 0.6s ease both; }
.label { animation-delay: 0.05s; } .about-title { animation-delay: 0.12s; } .title-underline { animation-delay: 0.18s; } .stats-row { animation-delay: 0.38s; } .brands-row { animation-delay: 0.44s; } .cta-btn { animation-delay: 0.50s; }
@media (max-width: 768px) { .about-wrapper { grid-template-columns: 1fr; } .about-image-panel { min-height: 180px; } .about-content-panel { padding: 36px 28px; } .about-title { font-size: 2rem; } .stats-row { gap: 20px; } }

/* ── SI-PRODUCTS (4-card featured) ── */
.si-products { --red: #b01a1a; --dark-red: #8a1212; --gold: #c9a84c; --dark: #1a1a1a; --text: #3a3a3a; --light-bg: #fdf9f2; --border: #e0d8cc; font-family: 'Lato', sans-serif; background: var(--light-bg); padding: 64px 24px; overflow: hidden; }
.si-products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.si-product-card { background: #fff; border: 1px solid #e0d8cc; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); cursor: pointer; opacity: 0; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.si-product-card.si-animate-left { transform: translateX(-80px); }
.si-product-card.si-animate-top  { transform: translateY(-80px); }
.si-product-card.si-animate-right{ transform: translateX(80px); }
.si-product-card.si-visible { opacity: 1 !important; transform: translate(0,0) !important; transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease !important; }
.si-product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(176,26,26,0.13); }
.si-product-card__img-wrap { position: relative; overflow: hidden; height: 280px; background: #f5f0e8; }
.si-product-card__img-wrap img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; display: block; box-sizing: border-box; padding: 10px; transition: transform 0.5s ease; }
.si-product-card:hover .si-product-card__img-wrap img { transform: scale(1.06); }
.si-product-card__badge { position: absolute; top: 12px; left: 12px; background: #b01a1a; color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.si-product-card__overlay { position: absolute; inset: 0; background: rgba(176,26,26,0.82); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; }
.si-product-card:hover .si-product-card__overlay { opacity: 1; }
.si-product-card__overlay-btn { background: transparent; border: 2px solid #fff; color: #fff; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; cursor: pointer; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.si-product-card__overlay-btn:hover { background: #fff; color: #b01a1a; }
.si-product-card__footer { padding: 18px 20px 20px; border-top: 2px solid transparent; transition: border-color 0.35s ease; }
.si-product-card:hover .si-product-card__footer { border-top-color: #b01a1a; }
.si-product-card__name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: #1a1a1a; line-height: 1.3; margin-bottom: 6px; }
.si-product-card__meta { font-size: 0.75rem; color: #aaa; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.si-products__footer { text-align: center; margin-top: 44px; }
.si-products__view-all { display: inline-flex; align-items: center; gap: 10px; background: #b01a1a; color: #fff; text-decoration: none; padding: 14px 36px; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; }
.si-products__view-all:hover { background: #8a1212; transform: translateY(-2px); }
@media (max-width: 900px) { .si-products__grid { grid-template-columns: repeat(2, 1fr); }.si-products { overflow: hidden; } }
@media (max-width: 520px) { .si-products__grid { grid-template-columns: 1fr;overflow: hidden; } }
/* ── MOBILE OVERFLOW FIX ── */
@media (max-width: 860px) {

  /* 1. si-products (4-card featured) */
  .si-products {
    overflow: hidden;
  }
  .si-product-card.si-animate-left,
  .si-product-card.si-animate-right {
    transform: translateY(60px); /* side se nahi, neeche se aaye */
  }

  /* 2. products-section (14-card grid) */
  .products-section {
    overflow: hidden;
  }
  .product-card.from-left,
  .product-card.from-right {
    transform: translateY(60px);
  }

  /* 3. DFM sections (Flour Mill, Stone, Parts, Best Selling) */
  .si-dfm,
  .si-dfm1,
  .si-dfm2 {
    overflow: hidden;
  }
  .si-dfm-card.si-from-left,
  .si-dfm-card.si-from-right {
    transform: translateY(60px);
  }
}

/* ── PRODUCTS SECTION (14-card grid) ── */
.products-section { padding: 0 0 60px 0; background: #f5f5f5; overflow: hidden; }
.section-heading { background: linear-gradient(90deg, #b71c1c, #c62828, #b71c1c); text-align: center; padding: 16px 20px; margin-bottom: 40px; }
.section-heading h2 { color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.products-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(60px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease; }
.product-card.from-left  { transform: translateX(-80px); }
.product-card.from-right { transform: translateX(80px); }
.product-card.from-bottom{ transform: translateY(80px); }
.product-card.from-top   { transform: translateY(-60px); }
.product-card.visible { opacity: 1; transform: translateX(0) translateY(0) !important; }
.product-card:hover { transform: translateY(-6px) !important; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.card-img { width: 100%; aspect-ratio: 3/4; background: #f0f0f0; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid #e8e8e8; }
.card-img img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; display: block; box-sizing: border-box; padding: 10px; transition: transform 0.4s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }
.card-title { padding: 14px 12px; text-align: center; border-top: 1px solid #f0f0f0; }
.card-title h3 { font-size: 14px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.8px; text-transform: uppercase; }
@media (max-width: 700px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .section-heading h2 { font-size: 20px; } }

/* ── DFM SECTIONS ── */
.si-dfm, .si-dfm1, .si-dfm2 { --red: #b01a1a; --dark-red: #8a1212; --gold: #c9a84c; --dark: #1a1a1a; --text: #3a3a3a; --light-bg: #fdf9f2; --border: #e0d8cc; font-family: 'Lato', sans-serif; background: var(--light-bg); padding: 0 0 64px 0; }
.si-dfm1 { background-image: url('../img/section-bg.jpg'); background-size: cover; background-repeat: round; }
.si-dfm2 { background-image: url('../img/section-bg-wide.jpg'); background-size: cover; background-repeat: round; }
.si-dfm__topbar { background: linear-gradient(90deg, #8a1212 0%, #c02020 50%, #8a1212 100%); text-align: center; padding: 18px 24px; margin-bottom: 48px; }
.si-dfm__topbar h2 { font-family: 'Lato', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
.si-dfm__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.si-dfm-card { background: #fff; border: 1px solid #e0d8cc; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); cursor: pointer; opacity: 0; }
.si-dfm-card.si-from-left  { transform: translateX(-90px); }
.si-dfm-card.si-from-top   { transform: translateY(-90px); }
.si-dfm-card.si-from-right { transform: translateX(90px); }
.si-dfm-card.si-visible { opacity: 1 !important; transform: translate(0,0) !important; transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease !important; }
.si-dfm-card:hover { box-shadow: 0 16px 40px rgba(176,26,26,0.13); }
.si-dfm-card__img-wrap { position: relative; overflow: hidden; height: 420px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.si-dfm-card__img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.5s ease; }
.si-dfm-card:hover .si-dfm-card__img-wrap img { transform: scale(1.06); }
.si-dfm-card__overlay { position: absolute; inset: 0; background: rgba(176,26,26,0.80); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; }
.si-dfm-card:hover .si-dfm-card__overlay { opacity: 1; }
.si-dfm-card__overlay-btn { background: transparent; border: 2px solid #fff; color: #fff; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; cursor: pointer; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.si-dfm-card__overlay-btn:hover { background: #fff; color: #b01a1a; }
.si-dfm-card__footer { padding: 16px 20px 18px; border-top: 2px solid transparent; text-align: center; transition: border-color 0.35s ease; }
.si-dfm-card:hover .si-dfm-card__footer { border-top-color: #b01a1a; }
.si-dfm-card__name { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; color: #1a1a1a; }
@media (max-width: 768px) { .si-dfm__grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.si-testimonials { --red: #b01a1a; --border: #e0e0e0; --gold: #f5c518; font-family: 'Lato', sans-serif; padding: 60px 20px; }
.si-testimonials h2 { color: #EE2D2F; font-size: 29px; text-align: center; margin-bottom: 30px; }
.si-testimonials__slider-outer { display: flex; align-items: center; max-width: 1100px; margin: auto; gap: 10px; }
.si-testimonials__track-wrap { overflow: hidden; flex: 1; }
.si-testimonials__track { display: flex; }
.si-tcard-wrap { flex-shrink: 0; padding: 10px; }
.si-tcard { text-align: center; border: 1px solid #e0e0e0; padding: 25px 18px; border-radius: 10px; background: #fff; transition: 0.3s; }
.si-tcard:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.si-tcard__avatar { width: 90px; height: 90px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; border: 3px solid #eee; }
.si-tcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.si-tcard__stars { color: #f5c518; font-size: 18px; margin-bottom: 10px; }
.si-tcard__text { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.si-tcard__name { font-weight: 700; font-size: 15px; color: #111; }
.si-testimonials__arrow { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #e0e0e0; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
.si-testimonials__arrow:hover { background: #b01a1a; border-color: #b01a1a; color: #fff; }
.si-testimonials__arrow svg { width: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── DEALERS ── */
.dealers { width: 100%; height: 800px; display: flex; justify-content: center; align-items: center; margin-top: 50px; }
.dealers img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ── FOOTER ── */
.si-footer {
      font-family: 'Poppins', sans-serif;
      position: relative;
      margin-top: 30px;
    }
 
    /* ── Main Area ── */
    .si-footer__main {
      position: relative;
      padding: 70px 48px 55px;
      overflow: hidden;
    }
 
    /* Background image + warm overlay */
    .si-footer__bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/section-bg-wide.jpg');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .si-footer__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200, 160, 80, 0.603) 0%, rgba(180, 130, 60, 0.603) 100%);
    }
 
    /* Decorative top border */
    .si-footer__main::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #8a1212, #e8190a, #cc1f00, #8a1212);
      z-index: 2;
    }
 
    /* ── Grid ── */
    .si-footer__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 1fr 1.4fr;
      gap: 50px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    /* ── Column Title ── */
    .si-footer__col-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #7a0f0f;
      margin-bottom: 20px;
      padding-bottom: 10px;
      position: relative;
    }
    .si-footer__col-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 36px; height: 2.5px;
      background: #b01a1a;
      border-radius: 2px;
    }
 
    /* ── Links ── */
    .si-footer__links {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .si-footer__links li a {
      text-decoration: none;
      color: #2a1a0a;
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .si-footer__links li a::before {
      content: '›';
      font-size: 1rem;
      color: #b01a1a;
      transition: transform 0.2s;
    }
    .si-footer__links li a:hover {
      color: #b01a1a;
      padding-left: 4px;
    }
    .si-footer__links li a:hover::before {
      transform: translateX(3px);
    }
 
    /* ── Social Buttons ── */
    .si-footer__socials {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
    }
    .si-footer__social-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #b01a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 3px 10px rgba(176,26,26,0.35);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .si-footer__social-btn:hover {
      background: #7a0f0f;
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(176,26,26,0.45);
    }
    .si-footer__social-btn svg {
      width: 17px; height: 17px;
      fill: #fff;
      stroke: none;
    }
 
    /* ── Contact List ── */
    .si-footer__contact-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .si-footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      font-size: 0.88rem;
      color: #2a1a0a;
      font-weight: 400;
      line-height: 1.55;
    }
    .si-footer__contact-item a {
      color: #7a0f0f;
      text-decoration: none;
      font-weight: 600;
      transition: opacity 0.2s;
    }
    .si-footer__contact-item a:hover { opacity: 0.75; }
 
    .si-footer__contact-icon {
      flex-shrink: 0;
      margin-top: 2px;
      width: 30px; height: 30px;
      background: rgba(176,26,26,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .si-footer__contact-icon svg {
      width: 14px; height: 14px;
      fill: #b01a1a;
    }
 
    /* ── Bottom Bar ── */
    .si-footer__bottom {
      background: linear-gradient(90deg, #6a0e0e 0%, #b01a1a 40%, #cc2020 60%, #6a0e0e 100%);
      text-align: center;
      padding: 16px 24px;
      position: relative;
      overflow: hidden;
    }
    .si-footer__bottom::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.03) 60px,
        rgba(255,255,255,0.03) 61px
      );
    }
    .si-footer__bottom p {
      position: relative;
      z-index: 1;
      color: rgba(255,255,255,0.9);
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.3px;
    }
    .si-footer__bottom strong { font-weight: 700; color: #fff; }
 
    /* ── Responsive ── */
    @media (max-width: 900px) {
      .si-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      /* Contact col spans full width on tablet */
      .si-footer__grid > div:last-child {
        grid-column: 1 / -1;
      }
    }
 
    @media (max-width: 600px) {
      .si-footer__main { padding: 40px 20px 45px; }
      .si-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .si-footer__grid > div:last-child {
        grid-column: auto;
      }
      .si-footer__col-title { font-size: 1.05rem; }
    }

.about-title{
    font-size:48px;
    font-weight:800;
    line-height:1.15;
    color:#1b1b1b;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.about-desc{
    font-size:17px;
    line-height:1.9;
    color:#5c5c5c;
    margin-bottom:18px;
    font-weight:400;
}

.about-desc strong{
    color:#111;
    font-weight:700;
}

.label{
    display:inline-block;
    padding:8px 18px;
    background:#f4f4f4;
    color:#d9822b;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.brand-title{
    font-size:13px;
    font-weight:700;
    color:#777;
    text-transform:uppercase;
    letter-spacing:1px;
}

.brand-tag{
    padding:10px 20px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.brand-tag:hover{
    background:#d9822b;
    color:#fff;
    border-color:#d9822b;
}

.cta-btn{
    margin-top:15px;
    padding:16px 34px;
    border-radius:40px;
    font-weight:700;
    letter-spacing:.5px;
}

@media(max-width:768px){

.about-title{
    font-size:34px;
}

.about-desc{
    font-size:16px;
    line-height:1.8;
}

.stat-number{
    font-size:30px;
}

}


/* ============================================================
   SARWESHWAR INDUSTRIES — common.css
   Shared UI: Cart Sidebar | Wishlist | Search | Toast
   Used on ALL pages
   ============================================================ */

/* ── SEARCH OVERLAY ── */
.search-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.85); z-index:9999; display:flex; flex-direction:column; align-items:center; padding-top:80px; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.search-overlay.open { opacity:1; pointer-events:all; }
.search-overlay__box { display:flex; align-items:center; width:90%; max-width:680px; background:#fff; border-radius:50px; padding:10px 20px; gap:12px; box-shadow:0 8px 40px rgba(0,0,0,0.3); }
.search-overlay__box input { flex:1; border:none; outline:none; font-size:18px; font-family:'Poppins',sans-serif; color:#222; background:transparent; }
.search-overlay__box button { background:none; border:none; font-size:22px; color:#b01a1a; cursor:pointer; }
.search-results { width:90%; max-width:680px; background:#fff; border-radius:12px; margin-top:14px; overflow:hidden; max-height:400px; overflow-y:auto; }
.search-result-item { display:flex; align-items:center; gap:14px; padding:12px 18px; border-bottom:1px solid #f0f0f0; cursor:pointer; transition:background 0.2s; }
.search-result-item:hover { background:#fff5f5; }
.search-result-item img { width:50px; height:50px; object-fit:contain; border-radius:6px; border:1px solid #eee; }
.sri-name { font-size:14px; font-weight:600; color:#222; }
.sri-price { font-size:13px; color:#b01a1a; font-weight:700; }
.search-no-result { text-align:center; padding:24px; color:#888; font-size:14px; }

/* ── CART SIDEBAR ── */
.cart-sidebar { position:fixed; top:0; right:-420px; width:420px; height:100vh; background:#fff; z-index:9998; box-shadow:-4px 0 30px rgba(0,0,0,0.15); display:flex; flex-direction:column; transition:right 0.35s ease; }
.cart-sidebar.open { right:0; }
.cart-sidebar__header { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:2px solid #b01a1a; background:#b01a1a; color:#fff; }
.cart-sidebar__header h3 { font-size:18px; font-weight:700; font-family:'Poppins',sans-serif; }
.cart-sidebar__header button { background:none; border:none; color:#fff; font-size:22px; cursor:pointer; }
.cart-sidebar__items { flex:1; overflow-y:auto; padding:16px; }
.cart-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; gap:12px; color:#ccc; }
.cart-empty i { font-size:52px; }
.cart-empty p { font-size:15px; font-weight:500; }
.cart-item { display:flex; gap:12px; padding:14px 0; border-bottom:1px solid #f5f5f5; align-items:center; }
.cart-item img { width:70px; height:70px; object-fit:contain; border:1px solid #eee; border-radius:8px; flex-shrink:0; }
.cart-item__info { flex:1; }
.cart-item__name  { font-size:13px; font-weight:600; color:#222; line-height:1.4; margin-bottom:4px; }
.cart-item__price { font-size:14px; font-weight:700; color:#b01a1a; }
.cart-item__qty   { display:flex; align-items:center; gap:8px; margin-top:6px; }
.qty-btn { width:26px; height:26px; border:1.5px solid #ddd; background:#fff; border-radius:4px; cursor:pointer; font-size:16px; display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.qty-btn:hover { border-color:#b01a1a; color:#b01a1a; }
.qty-num { font-size:14px; font-weight:700; min-width:20px; text-align:center; }
.cart-item__remove { background:none; border:none; color:#ccc; font-size:16px; cursor:pointer; transition:color 0.2s; }
.cart-item__remove:hover { color:#b01a1a; }
.cart-sidebar__footer { padding:16px 20px; border-top:1px solid #eee; background:#fafafa; }
.cart-total { font-size:17px; font-weight:700; color:#222; margin-bottom:12px; display:flex; justify-content:space-between; }
.cart-total span { color:#b01a1a; }
.cart-checkout-btn { width:100%; background:#b01a1a; color:#fff; border:none; padding:13px; font-size:14px; font-weight:700; border-radius:6px; cursor:pointer; letter-spacing:1px; text-transform:uppercase; font-family:'Poppins',sans-serif; transition:background 0.2s; }
.cart-checkout-btn:hover { background:#8a1212; }

/* ── WISHLIST SIDEBAR ── */
.wishlist-sidebar { right:-420px; }
.wishlist-item { display:flex; gap:12px; padding:14px 0; border-bottom:1px solid #f5f5f5; align-items:center; }
.wishlist-item img { width:70px; height:70px; object-fit:contain; border:1px solid #eee; border-radius:8px; flex-shrink:0; }
.wishlist-item__info { flex:1; }
.wishlist-item__name  { font-size:13px; font-weight:600; color:#222; line-height:1.4; margin-bottom:4px; }
.wishlist-item__price { font-size:14px; font-weight:700; color:#b01a1a; }
.wishlist-item__actions { display:flex; flex-direction:column; gap:6px; }
.btn-move-cart { background:#b01a1a; color:#fff; border:none; border-radius:4px; padding:5px 10px; font-size:11px; font-weight:700; cursor:pointer; white-space:nowrap; transition:background 0.2s; }
.btn-move-cart:hover { background:#8a1212; }
.btn-remove-wish { background:none; border:none; color:#ccc; font-size:14px; cursor:pointer; transition:color 0.2s; text-align:center; }
.btn-remove-wish:hover { color:#b01a1a; }

/* ── OVERLAY ── */
.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:9997; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.cart-overlay.open { opacity:1; pointer-events:all; }

/* ── TOAST ── */
.toast { position:fixed; bottom:28px; right:28px; background:#222; color:#fff; padding:14px 20px; border-radius:10px; font-size:14px; font-weight:500; z-index:99999; display:flex; align-items:center; gap:10px; box-shadow:0 4px 20px rgba(0,0,0,0.2); transform:translateY(80px); opacity:0; transition:all 0.4s ease; max-width:320px; font-family:'Poppins',sans-serif; }
.toast.show { transform:translateY(0); opacity:1; }
.toast.cart-toast { border-left:4px solid #b01a1a; }
.toast.wish-toast { border-left:4px solid #e67e22; }
.toast.buy-toast  { border-left:4px solid #ff6b00; }
.toast.cart-toast i { color:#b01a1a; }
.toast.wish-toast i { color:#e67e22; }
.toast.buy-toast  i { color:#ff6b00; }

/* ── WISHLIST BADGE ── */
.wishlist-badge { background:#e67e22 !important; }

/* ── CHECKOUT MODAL ── */
.si-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.7); z-index:100000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.si-modal-overlay.open { opacity:1; pointer-events:all; }
.si-modal { background:#fff; border-radius:14px; width:100%; max-width:540px; max-height:90vh; overflow-y:auto; box-shadow:0 12px 40px rgba(0,0,0,0.3); font-family:'Poppins',sans-serif; animation:modalPop 0.3s ease; }
@keyframes modalPop { from { transform:scale(0.95); opacity:0; } to { transform:scale(1); opacity:1; } }
.si-modal__header { padding:18px 24px; border-bottom:1px solid #eee; display:flex; align-items:center; justify-content:space-between; background:#b01a1a; color:#fff; border-radius:14px 14px 0 0; }
.si-modal__header h3 { font-size:17px; font-weight:700; margin:0; }
.si-modal__header button { background:none; border:none; color:#fff; font-size:20px; cursor:pointer; }
.si-modal__body { padding:24px; }
.si-checkout-form .form-group { margin-bottom:16px; }
.si-checkout-form label { display:block; font-size:13px; font-weight:600; color:#333; margin-bottom:6px; }
.si-checkout-form input, .si-checkout-form textarea { width:100%; padding:10px 14px; border:1.5px solid #ddd; border-radius:6px; font-size:14px; font-family:'Poppins',sans-serif; transition:border 0.2s; box-sizing:border-box; }
.si-checkout-form input:focus, .si-checkout-form textarea:focus { border-color:#b01a1a; outline:none; }
.si-order-summary { background:#f9f9f9; border-radius:8px; padding:14px; margin-bottom:20px; border:1px solid #eee; }
.si-order-summary h4 { font-size:13px; font-weight:700; color:#444; margin-bottom:10px; text-transform:uppercase; letter-spacing:0.5px; }
.si-order-row { display:flex; justify-content:space-between; font-size:13px; color:#555; margin-bottom:6px; }
.si-order-row.total { font-size:15px; font-weight:700; color:#b01a1a; border-top:1px dashed #ddd; padding-top:8px; margin-top:8px; }
.si-btn-submit-order { width:100%; background:#b01a1a; color:#fff; border:none; padding:13px; font-size:14.5px; font-weight:700; border-radius:6px; cursor:pointer; font-family:'Poppins',sans-serif; transition:background 0.2s; display:flex; align-items:center; justify-content:center; gap:8px; }
.si-btn-submit-order:hover { background:#8a1212; }
.si-order-success-screen { text-align:center; padding:20px 10px; }
.si-order-success-screen i.fa-circle-check { font-size:54px; color:#27ae60; margin-bottom:14px; }
.si-order-success-screen h3 { font-size:20px; color:#222; margin-bottom:6px; }
.si-order-success-screen p { font-size:14px; color:#666; margin-bottom:20px; }
.si-order-id-badge { background:#e8f8f0; color:#1e824c; padding:6px 16px; border-radius:50px; font-weight:700; font-size:15px; display:inline-block; margin-bottom:20px; }
.si-btn-wa-confirm { background:#25D366; color:#fff; padding:12px 20px; border-radius:6px; font-weight:700; font-size:14px; text-decoration:none; display:inline-flex; align-items:center; gap:8px; width:100%; justify-content:center; box-sizing:border-box; transition:background 0.2s; margin-bottom:10px; }
.si-btn-wa-confirm:hover { background:#1ebc59; }

/* ── CART SIDEBAR WHATSAPP ORDER BUTTON ── */
.cart-wa-btn { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; background:#25D366; color:#fff !important; border:none; padding:11px; font-size:13.5px; font-weight:700; border-radius:6px; cursor:pointer; text-decoration:none; margin-top:8px; box-sizing:border-box; font-family:'Poppins',sans-serif; transition:background 0.2s, transform 0.15s; }
.cart-wa-btn:hover { background:#1ebc59; transform:translateY(-1px); color:#fff !important; }

/* ── CHECKOUT MODAL QUICK ACTIONS ── */
.si-modal-quick-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:16px; }
.si-btn-wa-direct { background:#25D366; color:#fff !important; text-decoration:none; padding:10px 14px; border-radius:6px; font-weight:600; font-size:12.5px; display:flex; align-items:center; justify-content:center; gap:6px; text-align:center; transition:background 0.2s; }
.si-btn-wa-direct:hover { background:#1ebc59; color:#fff !important; }
.si-btn-contact-quote { background:#f5f5f5; color:#333 !important; text-decoration:none; padding:10px 14px; border-radius:6px; font-weight:600; font-size:12.5px; display:flex; align-items:center; justify-content:center; gap:6px; text-align:center; border:1px solid #ddd; transition:background 0.2s; }
.si-btn-contact-quote:hover { background:#eaeaea; color:#222 !important; }
.si-modal-divider { display:flex; align-items:center; text-align:center; margin:14px 0; color:#888; font-size:11px; font-weight:700; letter-spacing:0.5px; }
.si-modal-divider::before, .si-modal-divider::after { content:''; flex:1; border-bottom:1px solid #e0e0e0; }
.si-modal-divider span { padding:0 10px; }

/* ── PERSISTENT FLOATING WHATSAPP BUTTON ── */
.si-floating-whatsapp { position:fixed; bottom:24px; right:24px; width:56px; height:56px; background:#25D366; color:#fff !important; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:30px; box-shadow:0 6px 24px rgba(37,211,102,0.45); z-index:9990; text-decoration:none; transition:transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s; cursor:pointer; }
.si-floating-whatsapp:hover { transform:scale(1.1) rotate(5deg); box-shadow:0 10px 30px rgba(37,211,102,0.6); color:#fff !important; }
.si-floating-whatsapp::before { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid rgba(37,211,102,0.5); animation:siWaPulse 2s infinite ease-out; pointer-events:none; }
@keyframes siWaPulse { 0% { transform:scale(0.95); opacity:1; } 100% { transform:scale(1.35); opacity:0; } }
.si-floating-whatsapp__tooltip { position:absolute; right:66px; background:#222; color:#fff; font-size:12px; font-weight:600; padding:6px 12px; border-radius:6px; white-space:nowrap; opacity:0; pointer-events:none; transform:translateX(8px); transition:opacity 0.2s, transform 0.2s; font-family:'Poppins',sans-serif; }
.si-floating-whatsapp:hover .si-floating-whatsapp__tooltip { opacity:1; transform:translateX(0); }

/* ── ACCESSIBILITY & SEO UTILITIES ── */
.visually-hidden, .sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }

@media(max-width:480px) {
  .cart-sidebar, .wishlist-sidebar { width:100%; right:-100%; }
  .si-floating-whatsapp { bottom:18px; right:18px; width:50px; height:50px; font-size:26px; }
  .si-modal-quick-actions { grid-template-columns:1fr; }
}
/* ============================================================
   Sarweshwar Industries — final responsive and no-crop fixes
   Loaded last on every page.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; width: 100%; max-width: 100%; overflow-x: hidden; background: #fff; }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
a, button, input, textarea { -webkit-tap-highlight-color: transparent; }
button, .menu-toggle { touch-action: manipulation; }

/* Long text must never force horizontal scrolling. */
.top-email, .top-email span, .top-email a,
.si-footer__contact-item, .si-footer__contact-item a,
.info-content, .info-content a, .contact-panel-desc,
.pd-name, .related-card__name { overflow-wrap: anywhere; word-break: break-word; }

/* Header */
.top-bar { width: 100%; padding-inline: clamp(14px, 3vw, 36px); gap: 14px; flex-wrap: wrap; }
.main-header { width: 100%; padding-inline: clamp(14px, 3vw, 34px); }
.main-header-inner { width: 100%; max-width: 1400px; min-width: 0; }
.logo-placeholder { min-width: 0; }
.logo-placeholder img { width: auto; max-width: min(260px, 34vw); object-fit: contain; }
.nav-right { min-width: 0; margin-left: auto; }
.nav { margin: 0; padding: 0; }
.menu-toggle { border-radius: 6px; }
.menu-toggle:focus-visible { outline: 3px solid rgba(198,40,40,.25); outline-offset: 3px; }

/* Home banner: preserve the complete original artwork on every screen. */
.slider-wrapper { width: 100%; background: #171717; }
.slider-track { align-items: flex-start; }
.slide { min-width: 100%; width: 100%; background: #171717; }
.slide img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1920 / 700;
  object-fit: contain !important;
  object-position: center;
  opacity: 1;
  background: #171717;
}
.slider-btn { top: 50%; }

/* Inner page banner: complete Aboutpage.jpg visible without side crop. */
.sh-backimage, .ab-backimage {
  width: 100%;
  height: clamp(150px, 16.92vw, 300px) !important;
  min-height: 150px;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #efe8de;
}
.sh-container, .ab-container { min-width: 0; }
.sh-h1-wrap h1, .ab-h1-wrap h1 {
  font-size: clamp(24px, 3.4vw, 48px) !important;
  padding: clamp(9px, 1.2vw, 16px) clamp(18px, 3vw, 48px) !important;
  margin-left: clamp(12px, 3.5vw, 50px) !important;
  max-width: calc(100vw - 24px);
  line-height: 1.2;
}

/* Home about section */
.about-section { width: 100%; max-width: 1248px; margin: 40px auto; padding-inline: clamp(16px, 3vw, 24px); }
.about-wrapper { width: 100%; min-width: 0; align-items: stretch; }
.about-image-panel {
  height: auto !important;
  min-height: 520px;
  margin-top: 0 !important;
  background: #f4f1ec;
}
.about-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center;
  padding: clamp(10px, 2vw, 22px);
  opacity: 1;
}
.about-content-panel { min-width: 0; }
.stats-row, .brands-row { flex-wrap: wrap; }

/* Every product/artwork image stays fully visible. */
.si-product-card__img-wrap,
.card-img,
.si-dfm-card__img-wrap,
.img-wrap,
.related-card__img,
.pd-main-img-wrap,
.pd-thumb,
.ab-aboutimage {
  background: #f7f5f1;
}
.si-product-card__img-wrap img,
.card-img img,
.si-dfm-card__img-wrap img,
.img-wrap img,
.related-card__img img,
.pd-main-img-wrap img,
.pd-thumb img,
.ab-aboutimage img {
  object-fit: contain !important;
  object-position: center !important;
}
.si-product-card__img-wrap img, .card-img img { padding: 12px; }
.si-product-card__img-wrap { height: auto; aspect-ratio: 1 / 1; }
.card-img { aspect-ratio: 1 / 1; }
.si-dfm-card__img-wrap { height: auto; aspect-ratio: 3 / 4; }

/* Decorative section backgrounds should not distort. */
.si-dfm1, .si-dfm2 {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Dealers map */
.dealers {
  width: 100%;
  height: auto !important;
  min-height: 0;
  margin-top: 0;
  padding: clamp(32px, 5vw, 64px) 20px;
}
.dealers img { width: min(100%, 800px); height: auto; max-height: none; object-fit: contain; }

/* Shop */
.shop-section { width: 100%; padding-inline: clamp(12px, 2.5vw, 24px); }
.grid { width: 100%; min-width: 0; }
.card, .card-body { min-width: 0; }
.img-wrap img { position: absolute; inset: 0; }

/* Product detail */
.breadcrumb { width: 100%; }
.breadcrumb-inner { padding-inline: clamp(16px, 4vw, 24px); min-width: 0; flex-wrap: wrap; }
.product-detail {
  width: calc(100% - 32px);
  max-width: 1200px;
  min-width: 0;
  overflow: hidden;
}
.pd-gallery, .pd-info { min-width: 0; }
.pd-main-img-wrap { width: 100%; aspect-ratio: 1 / 1; height: auto; }
.pd-main-img-wrap img { width: 100%; height: 100%; padding: clamp(12px, 3vw, 28px); }
.pd-thumbs, .pd-tab-btns, .pd-trust, .pd-price-row, .pd-total-row { min-width: 0; flex-wrap: wrap; }
.pd-actions button { width: 100%; }
.related-section { width: 100%; max-width: 1248px; padding-inline: clamp(16px, 3vw, 24px); }
.related-grid { min-width: 0; }

/* About page */
.ab-row { min-width: 0; }
.ab-col-6 { min-width: 0; }
.ab-aboutimage { height: auto !important; min-height: 0; aspect-ratio: 4 / 3; }
.ab-aboutimage img { width: 100%; height: 100% !important; min-height: 0; padding: 10px; }

/* Contact */
.contact-grid, .contact-info-panel, .contact-form-panel, .form-row { min-width: 0; }
.form-group input, .form-group textarea { max-width: 100%; }
.map-section iframe { width: 100%; min-height: 320px; }

/* Footer */
.si-footer { width: 100%; overflow: hidden; }
.si-footer__main { padding-inline: clamp(20px, 5vw, 48px); }
.si-footer__grid { width: 100%; min-width: 0; }
.si-footer__bg { background-position: center; }

@media (max-width: 1100px) {
  .btn-login { display: none; }
  .nav li a { padding-inline: 9px; }
}

@media (max-width: 900px) {
  .about-wrapper { grid-template-columns: 1fr; }
  .about-image-panel { min-height: clamp(300px, 70vw, 520px); }
  .si-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; }
  .si-footer__grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .main-header { position: sticky; top: 0; }
  .main-header-inner { height: 72px !important; }
  .logo-placeholder img,
  .main-header.scrolled .logo-placeholder img { height: 54px; max-width: min(230px, 62vw); }
  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
  .nav, .btn-login { display: none; }
  .nav-icons { display: flex !important; border-left: none; margin-left: 0; padding-left: 0; gap: 6px; }
  .menu-toggle { display: flex; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border-top: 3px solid #c62828;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    z-index: 999;
  }
  .nav.active li { width: 100%; }
  .nav.active li a { width: 100%; padding: 12px 22px; white-space: normal; border-bottom: 1px solid #f2f2f2; }
  .nav.active .dropdown { display: none; position: static; min-width: 0; padding-left: 0; background: #fff8f8; box-shadow: none; border: 0; }
  .nav.active li.submenu-open .dropdown { display: block; }
  .nav.active li.submenu-open > a > i { transform: rotate(180deg); }
  .nav.active li > a > i { margin-left: auto; transition: transform .2s ease; }
}

@media (max-width: 768px) {
  .top-bar { justify-content: center; text-align: center; padding-block: 7px; }
  .top-email { width: 100%; justify-content: center; }
  .slider-btn { width: 36px; height: 36px; }
  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }
  .slider-dots { bottom: 8px; gap: 7px; }
  .dot { width: 8px; height: 8px; }
  .about-content-panel { padding: 32px 22px; }
  .stats-row { justify-content: center; }
  .stat-divider { display: none; }
  .products-grid { padding-inline: 14px; }
  .si-dfm__grid { padding-inline: 14px; }
  .si-dfm-card__img-wrap { max-height: 620px; }
  .dealers { padding-inline: 14px; }
  .contact-container { padding-inline: 14px; }
  .product-detail { width: calc(100% - 24px); margin: 18px auto; }
  .pd-gallery, .pd-info { padding: 22px 16px; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .si-footer__main { padding-top: 48px; padding-bottom: 40px; }
}

@media (max-width: 560px) {
  .top-social { display: none; }
  .main-header-inner { height: 66px !important; }
  .logo-placeholder img,
  .main-header.scrolled .logo-placeholder img { height: 48px; max-width: 72vw; }
  .nav.active { max-height: calc(100vh - 66px); }
  .slide img { min-height: 0; }
  .slider-btn { width: 30px; height: 30px; font-size: 13px; }
  .about-section { margin-block: 24px; }
  .about-image-panel { min-height: 300px; }
  .about-title { font-size: clamp(1.7rem, 8vw, 2rem); }
  .stats-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); width: 100%; }
  .brands-row { align-items: flex-start; }
  .brand-title { width: 100%; }
  .si-products { padding: 42px 14px; }
  .si-product-card__img-wrap { aspect-ratio: 1 / 1; }
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .card-title h3 { font-size: 12px; overflow-wrap: anywhere; }
  .si-dfm__topbar { margin-bottom: 28px; padding-inline: 14px; }
  .si-dfm__topbar h2 { font-size: 1.15rem; }
  .si-testimonials { padding-inline: 8px; }
  .si-testimonials__slider-outer { gap: 2px; }
  .si-testimonials__arrow { width: 34px; height: 34px; flex: 0 0 34px; }
  .sh-h1-wrap h1, .ab-h1-wrap h1 { margin-left: 10px !important; }
  .ab-container { padding-inline: 14px; }
  .ab-aboutimage, .ab-aboutimage img { min-height: 0; }
  .pd-trust { grid-template-columns: 1fr; }
  .pd-tab-btn { padding-inline: 12px; }
  .related-card__body { padding-inline: 10px; }
  .si-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .si-footer__grid > :last-child { grid-column: auto; }
}

@media (max-width: 420px) {
  .top-email { font-size: 11px; }
  .top-email a { font-size: 12px; }
  .products-grid, .grid { grid-template-columns: 1fr; }
  .card-img, .img-wrap { aspect-ratio: 1 / 1; }
  .related-grid { grid-template-columns: 1fr; }
  .pd-name { font-size: 20px; }
  .pd-price-new { font-size: 24px; }
  .pd-tab-btns { gap: 0; }
  .pd-tab-btn { flex: 1; padding-inline: 6px; }
  .contact-info-panel, .contact-form-panel { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   SARWESHWAR INDUSTRIES - LEAD ENQUIRY POPUP MODAL
   ========================================================================== */

.si-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.si-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.si-popup-modal {
    position: relative;
    width: 100%;
    max-width: 470px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(176, 26, 26, 0.12);
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.si-popup-overlay.active .si-popup-modal {
    transform: scale(1) translateY(0);
}

/* Top Accent Stripe */
.si-popup-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #b01a1a 0%, #e11d48 50%, #b01a1a 100%);
    z-index: 10;
}

/* Header */
.si-popup-header {
    position: relative;
    padding: 26px 26px 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.si-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.si-popup-close:hover {
    background: #b01a1a;
    transform: rotate(90deg);
}

.si-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(176, 26, 26, 0.25);
    border: 1px solid rgba(225, 29, 72, 0.4);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #fca5a5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.si-popup-title {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
}

.si-popup-subtitle {
    margin: 0;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.45;
}

/* Body / Form */
.si-popup-body {
    padding: 22px 26px 26px;
}

.si-popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.si-popup-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.si-popup-label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.si-popup-label span {
    color: #b01a1a;
}

.si-popup-input,
.si-popup-select {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.2s ease;
}

.si-popup-input:focus,
.si-popup-select:focus {
    background: #ffffff;
    border-color: #b01a1a;
    box-shadow: 0 0 0 3px rgba(176, 26, 26, 0.12);
}

.si-popup-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.si-popup-submit-btn {
    margin-top: 4px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #b01a1a 0%, #881337 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(176, 26, 26, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.si-popup-submit-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #701a35 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(176, 26, 26, 0.45);
}

.si-popup-submit-btn:active {
    transform: translateY(0);
}

.si-popup-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.si-popup-divider::before,
.si-popup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.si-popup-whatsapp-btn {
    padding: 10px 16px;
    background: #ecfdf5;
    color: #047857;
    border: 1.5px solid #a7f3d0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.si-popup-whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* Success State */
.si-popup-success {
    display: none;
    text-align: center;
    padding: 20px 10px 10px;
}

.si-popup-success.active {
    display: block;
    animation: siPopupFadeIn 0.3s ease;
}

.si-popup-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.1);
}

.si-popup-success-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.si-popup-success-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

@keyframes siPopupFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .si-popup-header {
        padding: 22px 20px 16px;
    }
    .si-popup-body {
        padding: 18px 20px 22px;
    }
    .si-popup-title {
        font-size: 18px;
    }
}


.si-page-hero{background:linear-gradient(120deg,#200f0f 0%,#4d1818 50%,#b01a1a 100%);color:#fff;padding:60px 20px 36px;text-align:center;position:relative}
.si-page-hero .si-wrap{max-width:1200px;margin:0 auto}
.si-page-hero .si-crumb{display:inline-block;color:#e8c97a;font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:600;margin-bottom:10px}
.si-page-hero h1{font-family:'Playfair Display',serif;font-weight:700;font-size:clamp(28px,4vw,44px);margin:0 0 14px;line-height:1.2;color:#fff}
.si-page-hero p{color:#f2e9dc;font-size:17px;max-width:880px;margin:0 auto 22px}
.si-btn{display:inline-block;background:#c9a84c;color:#fff;border:0;padding:12px 26px;border-radius:6px;font-weight:600;text-decoration:none;margin:6px;font-size:15px;cursor:pointer;transition:.2s}
.si-btn:hover{background:#a6862c;color:#fff}
.si-btn.outline{background:transparent;border:2px solid #c9a84c;color:#e8c97a}
.si-btn.outline:hover{background:#c9a84c;color:#fff}
.si-trust{display:flex;gap:34px;justify-content:center;flex-wrap:wrap;padding:18px 0 0;margin-top:10px}
.si-trust .num{font-size:42px;font-weight:900;color:#c9a84c;display:block;line-height:1}
.si-trust .lbl{color:#f2e9dc;font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.si-section{padding:46px 20px}
.si-section h2{font-family:'Playfair Display',serif;color:#b01a1a;font-size:clamp(24px,3vw,32px);text-align:center;margin:0 0 10px}
.si-section .si-sub{text-align:center;color:#666;max-width:820px;margin:0 auto 30px;font-size:15.5px}
.si-section.alt{background:#faf6ee}
.si-wrap{max-width:1200px;margin:0 auto}
.si-arrow::after{content:" 92"}
.si-2col{display:grid;gap:34px;grid-template-columns:1fr 1fr;align-items:start}
.si-3col{display:grid;gap:22px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.si-card .si-imgWrap{background:#f0e9db;position:relative;aspect-ratio:16/10;display:flex;align-items:center;justify-content:center}
.si-card .si-imgWrap img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain !important;object-position:center !important;display:block;box-sizing:border-box;padding:8px}
.si-card .si-body{padding:16px 18px}
.si-card .si-name{font-weight:700;font-size:17px;color:#222;margin-bottom:4px}
.si-card .si-meta{color:#666;font-size:14px}
.si-card .si-foot{padding:0 18px 16px;display:flex;align-items:center;gap:10px}
.si-card .si-price{font-weight:800;color:#b01a1a;font-size:18px}
.si-card .si-link{color:#c9a84c;font-weight:700;text-decoration:none;font-size:14px}
.si-list{max-width:840px;margin:14px auto;padding:0;list-style:none}
.si-list li{padding:8px 0 8px 32px;position:relative;font-size:16px;line-height:1.5}
.si-list li::before{content:"\2713";position:absolute;left:4px;top:8px;color:#c9a84c;font-weight:900;font-size:18px}
.si-tablewrap{overflow-x:auto;margin:14px 0}
.si-table{width:100%;border-collapse:collapse;background:#fff;font-size:14.5px}
.si-table th,.si-table td{border:1px solid #ddd;padding:10px 12px;text-align:left;vertical-align:top}
.si-table th{background:#faf6ee;color:#5c4300;font-weight:700}
.si-faqcont{max-width:900px;margin:0 auto}
.si-faq{background:#fbf9f4;border:1px solid #ece7dc;border-radius:8px;padding:14px 20px;margin-bottom:12px}
.si-faq h4{margin:0 0 6px;color:#b01a1a;font-size:16.5px;font-weight:700}
.si-faq p{margin:0;color:#3d3d3d;line-height:1.6}
.si-cta{background:linear-gradient(120deg,#b01a1a,#5c1010);color:#fff;text-align:center;padding:42px 22px;border-radius:12px;max-width:980px;margin:24px auto;box-shadow:0 10px 30px rgba(176,26,26,.25)}
.si-cta h3{font-family:'Playfair Display',serif;font-size:26px;margin:0 0 8px;color:#fff}
.si-cta p{color:#f2e9dc;margin:0 0 18px}
.si-cta .si-btn{margin:6px}
.si-bullet{padding-left:24px;font-size:16px;line-height:1.7;color:#3d3d3d}
.si-bullet li{margin-bottom:8px}
.si-intro{max-width:880px;margin:0 auto;font-size:16.5px;line-height:1.7;color:#3d3d3d}
.si-intro p{margin:0 0 14px}
.si-productgrid{display:grid;gap:22px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin-top:16px}
.si-productCat{font-weight:600;color:#5c4300;border-bottom:2px solid #c9a84c;padding-bottom:6px;margin:24px 0 10px;font-size:17px}
.si-productRow{display:grid;gap:14px;grid-template-columns:1fr auto auto;align-items:center;padding:12px 0;border-bottom:1px solid #f1ece0}
.si-productRow:last-child{border-bottom:0}
.si-productRow .nm{font-weight:600}
.si-productRow .pr{color:#b01a1a;font-weight:800;font-size:17px}
.si-productRow .ln a{color:#c9a84c;font-weight:600;text-decoration:none}
.si-nap{background:#fdfbf7;border:1px solid #ece7dc;border-radius:8px;padding:22px 26px;margin:14px 0}
.si-nap .ln{display:flex;align-items:center;gap:10px;padding:6px 0;border-bottom:1px solid #ece7dc}
.si-nap .ln:last-child{border:0}
.si-nap .lbl{font-weight:600;color:#5c4300;min-width:120px}
.si-map{width:100%;height:320px;border:0;border-radius:8px;margin:16px 0}
.si-formcont{max-width:640px;margin:0 auto;background:#fff;padding:30px;border-radius:10px;border:1px solid #ece7dc}
.si-formcont input,.si-formcont select,.si-formcont textarea{width:100%;padding:11px 14px;margin:6px 0 14px;border:1px solid #d8d2c2;border-radius:5px;font-family:inherit;font-size:15px;background:#fdfbf7}
.si-formcont label{display:block;font-weight:600;color:#5c4300;font-size:13.5px;text-transform:uppercase;letter-spacing:.05em;margin-top:6px}
.si-formcont .req{color:#b01a1a}
@media(max-width:760px){.si-2col{grid-template-columns:1fr}.si-productRow{grid-template-columns:1fr auto;text-align:left}}

/* ── FAQ ACCORDION COMPONENT ── */
.si-faqcont { max-width: 900px; margin: 0 auto; }
details.si-faq { background: #fbf9f4; border: 1px solid #ece7dc; border-radius: 8px; margin-bottom: 14px; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
details.si-faq:hover { border-color: #c9a84c; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05); }
details.si-faq[open] { background: #ffffff; border-color: #b01a1a; box-shadow: 0 6px 18px rgba(176, 26, 26, 0.08); }
summary.si-faq-q { padding: 16px 20px; margin: 0; color: #b01a1a; font-size: 16.5px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color 0.2s ease; }
summary.si-faq-q::-webkit-details-marker, summary.si-faq-q::marker { display: none; }
summary.si-faq-q .si-faq-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: #fdfbf7; border: 1px solid #ece7dc; font-size: 10px; color: #c9a84c; transition: transform 0.3s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease; flex-shrink: 0; margin-left: 14px; }
summary.si-faq-q .si-faq-icon::before { content: '▼'; }
details.si-faq[open] summary.si-faq-q .si-faq-icon { transform: rotate(180deg); color: #b01a1a; border-color: #fca5a5; background: #fff5f5; }
summary.si-faq-q:hover { color: #8a1212; }
.si-faq-a { padding: 0 20px 18px; border-top: 1px solid #f5ede0; padding-top: 14px; }
.si-faq-a p { margin: 0; color: #3d3d3d; line-height: 1.65; font-size: 15px; }
div.si-faq { background: #fbf9f4; border: 1px solid #ece7dc; border-radius: 8px; padding: 14px 20px; margin-bottom: 12px; }
div.si-faq h4 { margin: 0 0 6px; color: #b01a1a; font-size: 16.5px; font-weight: 700; }
div.si-faq p { margin: 0; color: #3d3d3d; line-height: 1.6; }

/* ── COMPREHENSIVE MOBILE OPTIMIZATIONS ── */
@media (max-width: 768px) {
  /* Prevent iOS Safari auto-zoom on form field focus */
  input, select, textarea,
  .si-popup-input, .si-popup-select,
  .si-formcont input, .si-formcont select, .si-formcont textarea,
  .si-input, .si-select, .si-textarea {
    font-size: 16px !important;
  }

  /* Touch Target minimums (44px tap targets for mobile usability) */
  .menu-toggle, #menuToggle, #mobileToggle, .mobile-toggle {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-icons a {
    min-width: 40px;
    min-height: 40px;
  }

  .filter-pill-btn, .blog-page-btn {
    min-height: 42px;
    touch-action: manipulation;
  }

  .btn-article-wa, .btn-article-call {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Smooth momentum scrolling for responsive tables */
  .si-tablewrap, .si-biz-table-card, .article-table-wrap, .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  /* Prevent awkward horizontal scrollbar on body */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
}

