/* ============================================================
   SILIGURI PRINTING – style.css
   ============================================================ */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1C1C1C; background: #fff; overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --purple:   #6A2CA0;
  --violet:   #7B2CBF;
  --pink:     #D81B60;
  --red-org:  #F44336;
  --orange:   #F57C00;
  --gray-bg:  #F4F4F6;
  --dark:     #1C1C1C;
  --muted:    #5A5A72;
  --white:    #FFFFFF;
  --grad:     #6A2CA0;
  --grad-h:   #7B2CBF;
  --shadow:   0 8px 30px rgba(106,44,160,.13);
  --shadow-h: 0 16px 40px rgba(106,44,160,.22);
  --radius:   14px;
  --nav-h:    90px;
  --transition: .3s ease;
}

/* ---------- UTILITIES ---------- */
.container { width: min(92%, 1200px); margin: 0 auto; }
.section-pad { padding: 90px 0; }
.bg-gray { background: var(--gray-bg); }
.text-white { color: var(--white) !important; }
.w-full { width: 100%; }
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: .5rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 580px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: .8rem auto 0; }
.section-header .section-title::after {
  content: ''; display: block; width: 56px; height: 4px; margin: .7rem auto 0;
  background: var(--grad); border-radius: 4px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px; font-size: .95rem;
  font-weight: 700; transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 20px rgba(106,44,160,.35);
}
.btn-primary:hover {
  background: var(--grad-h); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(106,44,160,.45); color: #fff;
}
.btn-outline {
  border: 2px solid var(--purple); color: var(--purple); background: transparent;
}
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff; padding: .85rem 1.8rem;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: all var(--transition); margin-top: 1.5rem;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); color: #fff; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-bottom-color: #eee; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); width: min(92%, 1200px); margin: 0 auto;
}
.brand {
  font-size: 1.45rem; font-weight: 900; color: var(--purple);
  letter-spacing: -.5px; display: flex; align-items: center; gap: .6rem;
}
.brand span { color: var(--orange); display: none; }

/* Logo image handling: use an image inside .brand for the site logo */
.brand .site-logo {
  height: 120px; display: block; width: auto; object-fit: contain; max-width: 260px;
}
.footer-brand .brand .site-logo.footer-logo {
  height: 130px; max-width: 300px;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--dark);
  position: relative; padding-bottom: 3px; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2.5px; background: var(--grad); border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--grad) !important; color: #fff !important;
  padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .85rem !important; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 3px; background: var(--purple);
  border-radius: 3px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.nav-links.mobile-open {
  display: flex; flex-direction: column; position: fixed;
  top: var(--nav-h); left: 0; width: 100%; background: #fff;
  padding: 1.5rem 2rem 2.5rem; gap: 0; border-top: 1px solid #eee;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  animation: slideDown .28s ease;
}
.nav-links.mobile-open a {
  padding: .9rem 0; font-size: 1.05rem; border-bottom: 1px solid #f0f0f0;
}
.nav-links.mobile-open .nav-cta {
  margin-top: 1rem; text-align: center; padding: .75rem !important;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO – MOBILE STACKED BLOCK (hidden on desktop)
   ============================================================ */
.hero-mobile-block { display: none; }
.hero-desktop-only { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero-ecommerce {
  padding-top: var(--nav-h);
  background: #fff;
}
.hero-ecommerce-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 80vh;
  min-height: 500px;
  max-height: 700px;
}
.hero-slides {
  display: flex; width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide { flex: 0 0 100%; height: 100%; position: relative; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-ecommerce-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 620px;
  pointer-events: auto;
}
.hero-badge-light {
  display: inline-block; background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50px;
  font-size: .8rem; font-weight: 600; padding: .35rem 1rem;
  margin-bottom: 1.2rem; letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero-ecommerce-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.2rem; color: #fff;
}
.text-highlight { color: #FFB74D; }
.hero-ecommerce-content p {
  font-size: 1.15rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); line-height: 1.6;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-outline-light {
  border: 2px solid #fff; color: #fff; background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--dark); transform: translateY(-2px); }

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,0,0,0.4); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer; z-index: 10;
  transition: all var(--transition); border: 2px solid transparent;
}
.hero-nav:hover { background: rgba(0,0,0,0.8); border-color: #fff; }
.hero-nav.prev { left: 30px; }
.hero-nav.next { right: 30px; }

.hero-slider-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4); cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--grad); overflow: hidden; padding: .9rem 0;
}
.marquee-track {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span { color: #fff; font-weight: 600; font-size: .92rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: 20px; box-shadow: var(--shadow); width: 100%; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: 14px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
  border-top: 4px solid var(--purple);
}
.about-badge span { font-size: 1.8rem; }
.about-badge strong { display: block; font-size: .9rem; color: var(--dark); }
.about-badge small { color: var(--muted); font-size: .75rem; font-family: 'Courier New', monospace; }
.about-lead { font-size: 1.05rem; color: var(--dark); margin: 1.2rem 0; font-weight: 500; }
.about-content > p { color: var(--muted); margin-bottom: 2rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: .5rem; }
.pillar { background: var(--gray-bg); border-radius: var(--radius); padding: 1.2rem; transition: all var(--transition); }
.pillar:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
.pillar-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.pillar h3 { font-size: 1rem; color: var(--purple); margin-bottom: .3rem; }
.pillar p { font-size: .85rem; color: var(--muted); }

/* ============================================================
   PRODUCTS SLIDER
   ============================================================ */
.prod-slider-wrap {
  display: flex; align-items: center; gap: 1rem; position: relative;
}
.prod-slider-viewport {
  overflow: hidden; flex: 1; border-radius: var(--radius);
}
.prod-slider-track {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 1.1rem);
  gap: 1.4rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Image card */
.prod-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); }
.prod-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-bg);
}
.prod-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.07); }
.prod-card-body {
  padding: 1rem 1.1rem 1.2rem;
}
.prod-card-body h3 {
  font-size: .95rem; font-weight: 700; color: var(--dark);
  margin-bottom: .35rem;
}
.prod-card-body p {
  font-size: .78rem; color: var(--muted); line-height: 1.5;
}

/* Slider nav buttons */
.slider-btn {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: #fff; border: 2px solid #e5e5e5;
  font-size: 1.2rem; color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  z-index: 2;
}
.slider-btn:hover { background: var(--grad); border-color: transparent; color: #fff; transform: scale(1.08); }
.slider-btn:disabled { opacity: .35; cursor: default; transform: none; }

/* Dots */
.slider-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1.8rem;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d0d0d8; transition: all var(--transition); cursor: pointer; border: none;
}
.dot.active { background: var(--purple); width: 28px; border-radius: 5px; }
.dot-edge { opacity: .45; transform: scale(.7); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 2.2rem 1.8rem;
  border: 1px solid #eee; transition: all var(--transition);
}
.svc-card:hover {
  box-shadow: var(--shadow-h); border-color: rgba(106,44,160,.15);
  transform: translateY(-6px);
}
.svc-icon { font-size: 2.6rem; margin-bottom: 1.2rem; display: block; }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--purple); margin-bottom: .7rem; }
.svc-card p { color: var(--muted); font-size: .9rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gal-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: zoom-in; background: #eee;
  aspect-ratio: 1 / 1;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gal-overlay {
  position: absolute; inset: 0; background: rgba(106,44,160,.85);
  opacity: 0; display: flex; align-items: flex-end; padding: 1.2rem;
  transition: opacity var(--transition);
}
.gal-overlay span { color: #fff; font-weight: 700; font-size: 1rem; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item:hover .gal-overlay { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.review-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1px solid #eee; box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all var(--transition); position: relative;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card > p { color: var(--muted); font-style: italic; font-size: .95rem; margin-bottom: 1.5rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 1rem; color: var(--dark); }
.reviewer small { font-size: .8rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
}
.contact-info p { color: var(--muted); margin: .8rem 0 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-ico {
  font-size: 1.3rem; width: 44px; height: 44px; min-width: 44px;
  background: var(--gray-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.info-row > div { display: flex; flex-direction: column; }
.info-row strong { font-size: .95rem; color: var(--dark); margin-bottom: .2rem; }
.info-row span { font-size: .9rem; color: var(--muted); }
.info-row a { color: var(--purple); font-weight: 600; }
.info-row a:hover { color: var(--pink); }

.contact-form-box {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(106,44,160,.12);
  border: 1px solid rgba(106,44,160,.08);
}
.contact-form-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--purple); margin-bottom: 1.8rem; }
.field-group { margin-bottom: 1.4rem; }
.field-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .45rem; color: var(--dark); }
.field-group input, .field-group select, .field-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid #e0e0e0;
  border-radius: 10px; font-family: inherit; font-size: .95rem;
  background: #fafafa; color: var(--dark); transition: all var(--transition);
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  outline: none; border-color: var(--violet); background: #fff;
  box-shadow: 0 0 0 3px rgba(123,44,191,.12);
}
.field-group input.error, .field-group select.error { border-color: #e53e3e; }
.field-err { display: none; font-size: .78rem; color: #e53e3e; margin-top: .3rem; }
.field-err.show { display: block; }
.form-success {
  display: none; margin-top: 1rem; padding: 1rem; background: #f0fff4;
  border: 1px solid #9ae6b4; border-radius: 10px;
  color: #276749; font-weight: 600; font-size: .95rem; text-align: center;
}
.form-success.show { display: block; }

/* ============================================================
   MAP
   ============================================================ */
.map-section iframe {
  display: block; width: 100%; height: 380px; border: none; filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a0a2e; color: rgba(255,255,255,.82); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .brand { font-size: 1.4rem; display: inline-block; margin-bottom: .3rem; }
.footer-brand .brand span { color: var(--orange); }
.footer-tagline { color: var(--orange); font-style: italic; font-weight: 600; margin-bottom: .7rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-row { display: flex; gap: .8rem; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; transition: all var(--transition);
}
.soc-btn:hover { background: var(--orange); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 1.2rem; position: relative; padding-bottom: .6rem;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 3px; background: var(--orange); border-radius: 2px;
}
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.72); transition: all var(--transition); }
.footer-col ul a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { font-size: .88rem; display: flex; gap: .5rem; align-items: flex-start; margin-bottom: .7rem; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  transition: all var(--transition); animation: pulse 2.5s infinite;
}
.wa-float:hover { background: #128C7E; transform: scale(1.1); animation: none; color: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.8); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- TABLET (max 1024px) ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .prod-slider-track { grid-auto-columns: calc(33.333% - 1rem); }
}

/* ---------- MOBILE (max 768px) ---------- */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .container { width: min(90%, 1200px); }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero — mobile */
  .hero-ecommerce { padding-top: var(--nav-h); }
  .hero-mobile-block { display: none; }
  .hero-ecommerce-wrapper {
    height: 88vw; min-height: 380px; max-height: 520px;
  }
  .hero-slide-overlay {
    background: linear-gradient(to top,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.10) 100%);
  }
  .hero-content-container { padding: 0; left: 0; right: 0; width: 100%; }
  .hero-ecommerce-content { left: 22px; right: 22px; width: auto; padding-right: 0; }
  .hero-ecommerce-content {
    position: absolute; bottom: 52px; top: auto; transform: none;
    left: 22px; right: 22px;
    max-width: none; width: auto; color: #fff; padding: 0;
  }
  .hero-badge-light {
    display: inline-block; font-size: .7rem; letter-spacing: 1.5px;
    padding: .3rem .9rem; margin-bottom: 1rem;
  }
  .hero-ecommerce-content h1 {
    font-size: 1.9rem; line-height: 1.12; color: #fff;
    margin-bottom: .8rem; font-weight: 900;
  }
  .hero-ecommerce-content p {
    font-size: .9rem; color: rgba(255,255,255,.85);
    line-height: 1.55; margin-bottom: 1.4rem;
    max-width: 100%; overflow-wrap: break-word;
  }
  .hero-btns { gap: .75rem; flex-wrap: nowrap; margin-bottom: 0; }
  .hero-btns .btn { font-size: .85rem; padding: .7rem 1.25rem; white-space: nowrap; }
  .btn-outline-light { border: 2px solid #fff; color: #fff; background: transparent; }
  .hero-nav { display: none; }
  .hero-slider-dots { bottom: 20px; }
  .hero-dot { background: rgba(255,255,255,0.45); }
  .hero-dot.active { background: #fff; }

  /* Section spacing */
  .section-pad { padding: 55px 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-sub { font-size: .92rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 10px; bottom: -16px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }

  /* ----- PRODUCTS SLIDER (mobile) ----- */
  .prod-slider-wrap {
    gap: .5rem;
    padding: 0;
  }
  .prod-slider-track {
    grid-template-rows: 1fr;
    grid-auto-columns: calc(50% - .5rem);
    gap: 1rem;
  }
  .prod-card {
    border-radius: 12px;
  }
  .prod-card-body {
    padding: .85rem .9rem 1rem;
  }
  .prod-card-body h3 { font-size: .88rem; }
  .prod-card-body p { font-size: .75rem; line-height: 1.45; }
  .slider-btn {
    width: 32px; height: 32px; min-width: 32px;
    font-size: .9rem;
    border-width: 1.5px;
  }
  .slider-dots { margin-top: 1.4rem; gap: .4rem; }
  .dot { width: 8px; height: 8px; }
  .dot.active { width: 22px; }

  /* ----- GALLERY (mobile) ----- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }
  .gal-item {
    border-radius: 10px;
    aspect-ratio: 1 / 1;
  }
  .gal-item:nth-child(1), .gal-item:nth-child(6) { grid-column: span 1; }
  .gal-overlay { padding: .8rem; }
  .gal-overlay span { font-size: .82rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 1.5rem 1.3rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 50px 0 0; }

  /* Logo */
  .brand .site-logo { height: 60px; max-width: 160px; }
  .footer-brand .brand .site-logo.footer-logo { height: 80px; max-width: 200px; }
}

/* ---------- SMALL PHONE (max 480px) ---------- */
@media (max-width: 480px) {
  .container { width: 92%; }

  /* Hero */
  .hero-ecommerce-wrapper { height: 92vw; min-height: 340px; }
  .hero-ecommerce-content { bottom: 44px; left: 16px; right: 16px; }
  .hero-ecommerce-content h1 { font-size: 1.55rem; }
  .hero-ecommerce-content p { font-size: .82rem; margin-bottom: 1.1rem; }
  .hero-btns { flex-wrap: wrap; gap: .6rem; }
  .hero-btns .btn { font-size: .78rem; padding: .6rem .95rem; width: 100%; justify-content: center; }

  /* ----- PRODUCTS SLIDER (small phone) ----- */
  .prod-slider-wrap {
    gap: 0;
    position: relative;
  }
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 30px; height: 30px; min-width: 30px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    border: none;
    font-size: .8rem;
  }
  .slider-btn.slider-prev { left: 4px; }
  .slider-btn.slider-next { right: 4px; }
  .prod-slider-track {
    grid-auto-columns: 100%;
    grid-template-rows: 1fr;
    gap: 1rem;
  }
  .prod-card {
    border-radius: 14px;
    max-width: 100%;
  }
  .prod-card-img {
    aspect-ratio: 16 / 10;
  }
  .prod-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }
  .prod-card-body h3 { font-size: 1rem; margin-bottom: .4rem; }
  .prod-card-body p { font-size: .84rem; line-height: 1.5; }
  .slider-dots { margin-top: 1.2rem; }

  /* ----- GALLERY (small phone) ----- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }
  .gal-item {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }
  .gal-overlay { padding: .6rem; }
  .gal-overlay span { font-size: .75rem; }

  /* About */
  .about-pillars { grid-template-columns: 1fr; }
  .about-badge {
    right: 8px; bottom: -12px;
    padding: .7rem .9rem;
  }
  .about-badge span { font-size: 1.3rem; }
  .about-badge strong { font-size: .8rem; }
  .about-badge small { font-size: .68rem; }

  /* Contact */
  .contact-form-box { padding: 1.3rem; border-radius: 14px; }
  .contact-form-box h3 { font-size: 1.2rem; margin-bottom: 1.4rem; }

  /* Map */
  .map-section iframe { height: 260px; }

  /* WhatsApp float */
  .wa-float {
    width: 50px; height: 50px;
    bottom: 18px; right: 18px;
  }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- VERY SMALL PHONE (max 360px) ---------- */
@media (max-width: 360px) {
  .hero-ecommerce-content h1 { font-size: 1.35rem; }
  .hero-badge-light { font-size: .6rem; padding: .25rem .7rem; }
  .section-title { font-size: 1.3rem; }
  .prod-card-body h3 { font-size: .92rem; }
  .prod-card-body p { font-size: .78rem; }
  .gallery-grid { gap: .5rem; }
  .gal-overlay span { font-size: .7rem; }
}
