html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;   /* ✅ REQUIRED for sticky */
}



/* ========== GLOBAL TYPOGRAPHY ========== */
body{
    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:#222;
}

h1{
    font-family:'Playfair Display',serif;
    font-weight:700;
    letter-spacing:1px;
}


/* ===== SECTION TITLES (PERMANENT CENTER) ===== */
.section-title{
    font-family:'Playfair Display',serif;
    font-size:2.6rem;
    text-align:center;
    margin:0 auto 30px;
    position:relative;
    display:block;
}

.section-title::after{
    content:'';
    position:absolute;
    width:50%;
    height:4px;
    background:linear-gradient(135deg,#ff9800,#ffd54f);
    left:25%;
    bottom:-10px;
    border-radius:5px;
}


h3{
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

h4{
    font-weight:600;
    color:#ff9800;
}

/* ========== NAVBAR ========== */
.navbar{
    background:linear-gradient(135deg,#ff9800,#ffd54f);
}
.navbar-brand{
    font-family:'Playfair Display',serif;
    font-size:1.6rem;
    letter-spacing:2px;
}

/* ========== HERO ========== */
.hero-content h1{
    font-size:3.4rem;
}
.hero-content p{
    font-size:1.15rem;
    opacity:.9;
}

/* ========== MODERN BUTTONS ========== */
.btn-gradient{
    background:linear-gradient(135deg,#ff9800,#ffd54f);
    border:none;
    color:#111;
    padding:14px 40px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    transition:.4s;
}
.btn-gradient:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,152,0,.4);
}

.btn-outline{
    border:2px solid #ff9800;
    color:#ff9800;
    border-radius:40px;
    padding:8px 28px;
    font-weight:500;
    transition:.3s;
}
.btn-outline:hover{
    background:#ff9800;
    color:#111;
}

/* ========== PRODUCT CARD ========== */
.product-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
}
.product-card:hover{
    transform:translateY(-12px);
}
.product-card img{
    height:220px;
    object-fit:contain;
    margin-bottom:15px;
}
.product-card h5{
    font-weight:600;
    margin-bottom:5px;
}
.product-card .price{
    color:#ff9800;
    font-weight:700;
}

/* ========== FILTER BUTTONS ========== */

.filter-btn{
    margin:5px;
    padding:8px 25px;
    border-radius:40px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    font-weight:500;
}
.filter-btn.active,
.filter-btn:hover{
    background:linear-gradient(135deg,#ff9800,#ffd54f);
    border:none;
}

/* ========== ANIMATION BASE ========== */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}
.show{
    opacity:1!important;
    transform:translateY(0)!important;
}



/* ================= UI FIXES ONLY ================= */

/* TOP BAR */
.topbar{
    background:#111;
    color:#fff;
    font-size:14px;
    padding:6px 0;
    letter-spacing:.5px;
}

/* NAVBAR FIX */
.navbar{
    padding:12px 0;
}
.navbar .nav-link{
    color:#111;
    font-weight:500;
    margin-right:12px;
}
.navbar .nav-link:hover{
    color:#000;
}
.navbar-toggler{
    border:none;
}

/* SEARCH BAR FIX */
.search-bar{
    gap:6px;
}
.search-bar input{
    border-radius:30px;
    padding:6px 14px;
}
.btn-search{
    background:#111;
    color:#fff;
    border-radius:50%;
    padding:6px 10px;
}

/* HERO FIX */


.hero-content{
    position:relative;
    z-index:1;
    color:#fff;
    max-width:700px;
    padding:0 15px;
}

.filter-bar {
  position: sticky;
  top: 64px;                /* height of navbar */
  z-index: 1200;
  background: #fafafa;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  padding: 14px 10px;
  border-bottom: 1px solid #eee;
}
.product-section:first-of-type {
  margin-top: 40px;
}





/* PRODUCT SECTION FIX */
.product-section{
    padding:70px 0;
}


.product-card{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* PRODUCT IMAGE FIX */
.product-card img{
    max-width:100%;
    height:200px;
    object-fit:contain;
}

/* MODAL IMAGE FIX */
#modalImage{
    max-height:320px;
    object-fit:contain;
}

/* ANIMATION FIX (NO BLANK SPACE) */
.fade-up{
    opacity:1;
    transform:none;
}
.show{
    opacity:1;
    transform:none;
}

/* FOOTER FIX */
footer{
    background:#111;
    color:#fff;
    padding:20px 0;
    text-align:center;
    margin-top:40px;
}

/* MOBILE FIX */
@media(max-width:768px){
    .hero-content h1{
        font-size:2.2rem;
    }
    .navbar-brand{
        font-size:1.3rem;
    }
}

/* CLEAR FILTER BUTTON */
#clearFilter{
    background:#111;
    color:#fff;
    border:none;
}

/* SMOOTH FILTER FEEL */
.filter-btn{
    transition:.3s;
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}
.floating-whatsapp:hover{
    transform:scale(1.1);
}
/* PRODUCT IMAGE ZOOM */
.product-card img{
    transition:transform .4s ease;
}
.product-card:hover img{
    transform:scale(1.08);
}


/* ===== SKELETON LOADER ===== */
.skeleton-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-bottom:30px;
}
.skeleton-card{
    height:350px;
    border-radius:20px;
    background:linear-gradient(
        100deg,
        #eee 40%,
        #f5f5f5 50%,
        #eee 60%
    );
    background-size:200% 100%;
    animation:skeleton 1.5s infinite;
}

@keyframes skeleton{
    to{ background-position:-200% 0; }
}

/* ===== GLOBAL BUTTON GLOW EFFECT ===== */
button,
.btn,
.filter-btn,
.btn-outline,
.btn-gradient,
.map-btn{
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
}

/* Glow on hover */
button:hover,
.btn:hover,
.filter-btn:hover,
.btn-outline:hover,
.btn-gradient:hover,
.map-btn:hover{
    box-shadow:
        0 0 10px rgba(255,152,0,.6),
        0 0 25px rgba(255,152,0,.5),
        0 0 45px rgba(255,152,0,.4);
    transform:translateY(-2px);
}


/* ===== RIPPLE EFFECT ===== */
button,
.btn,
.filter-btn{
    position:relative;
    overflow:hidden;
}

button::after,
.btn::after,
.filter-btn::after{
    content:'';
    position:absolute;
    width:20px;
    height:20px;
    background:rgba(255,255,255,.6);
    border-radius:50%;
    transform:scale(0);
    opacity:0;
    pointer-events:none;
}

button:active::after,
.btn:active::after,
.filter-btn:active::after{
    transform:scale(15);
    opacity:1;
    transition:transform .6s ease, opacity .8s ease;
}

/* ===== SMOOTH FILTER COLLAPSE ===== */
.product-section{
    transition:opacity .4s ease, max-height .5s ease;
}

.product-section.hide-section{
    opacity:0;
    max-height:0;
    padding:0;
    margin:0;
}

/* ================= FOOTER ================= */
.footer{
    background:#111;
    color:#ddd;
    padding:60px 0 20px;
}

.footer-title{
    font-family:'Playfair Display',serif;
    font-size:1.2rem;
    color:#fff;
    margin-bottom:15px;
}

.footer-text{
    font-size:14px;
    line-height:1.7;
    margin-bottom:10px;
}

.footer-text i{
    color:#ff9800;
    margin-right:6px;
}

.footer-input{
    width:100%;
    background:#1c1c1c;
    border:1px solid #333;
    color:#fff;
    padding:10px 14px;
    border-radius:10px;
    margin-bottom:10px;
    font-size:14px;
}

.footer-input::placeholder{
    color:#aaa;
}

.footer-line{
    border-color:#333;
    margin:30px 0 15px;
}

.footer-copy{
    text-align:center;
    font-size:13px;
    color:#aaa;
}

/* ===== SHAKE ANIMATION FOR INVALID INPUT ===== */
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s ease;
    border-color: #ff3b3b !important;
}

/* ===== FILTER FADE ANIMATION ===== */
.product-section{
    transition: opacity .35s ease;
}

.product-section.fade-hide{
    opacity:0;
    pointer-events:none;
}

/* ===== MAP ACTION BUTTONS (COMPACT) ===== */
.map-action-buttons{
    display:flex;
    gap:8px;
}

.map-btn{
    flex:1;
    text-align:center;
    padding:8px 0;
    font-size:13px;
    font-weight:600;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
}

/* Call button */
.map-btn.call{
    background:#25D366;
    color:#fff;
}

/* Outline button */
.map-btn.outline{
    border:1.5px solid #ff9800;
    color:#ff9800;
    background:#fff;
}

/* Gradient button */
.map-btn.gradient{
    background:linear-gradient(135deg,#ff9800,#ffd54f);
    color:#111;
}

/* Hover effect */
.map-btn:hover{
    transform:translateY(-1px);
}

/* Mobile fix */
@media(max-width:480px){
    .map-btn{
        font-size:12px;
        padding:7px 0;
    }
}

.map-btn.call:hover{
    box-shadow:
        0 0 10px rgba(37,211,102,.6),
        0 0 25px rgba(37,211,102,.5),
        0 0 45px rgba(37,211,102,.4);
}

/* ===== STORE STATUS DOT ===== */
.store-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
}

.store-dot.open{
    background:#00c853;
    animation: pulseGreen 1.5s infinite;
}

.store-dot.closed{
    background:#d50000;
}

@keyframes pulseGreen{
    0%{ box-shadow:0 0 0 0 rgba(0,200,83,.6); }
    70%{ box-shadow:0 0 0 10px rgba(0,200,83,0); }
    100%{ box-shadow:0 0 0 0 rgba(0,200,83,0); }
}

.btn-success:hover,
.wa-glow:hover,
.floating-whatsapp:hover{
    box-shadow:
      0 0 10px rgba(37,211,102,.6),
      0 0 25px rgba(37,211,102,.5),
      0 0 45px rgba(37,211,102,.4);
}


/* ===== WHATSAPP OUTLINE BUTTON (GREEN) ===== */
.btn-wa{
    border:2px solid #25D366;
    color:#25D366;
    border-radius:40px;
    padding:8px 28px;
    font-weight:500;
    background:transparent;
}

.btn-wa:hover{
    background:#25D366;
    color:#fff;
}

/* WhatsApp green glow */
.btn-wa:hover{
    box-shadow:
        0 0 10px rgba(37,211,102,.6),
        0 0 25px rgba(37,211,102,.5),
        0 0 45px rgba(37,211,102,.4);
}

.logo-img {
  height: 50px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
}

.logo-img {
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}



/* Mobile size */
@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }
}

/* LOGO BASE */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: all .3s ease;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;        /* 👈 smaller for mobile */
  }

  .navbar {
    padding: 8px 0;     /* 👈 reduce navbar height */
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  .logo-img {
    height: 28px;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
}


.logo-img {
  image-rendering: -webkit-optimize-contrast;
}


/* ================= FINAL PRODUCT SLIDER (FIXED) ================= */

.product-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* SLIDER TRACK */
.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

/* Hide scrollbar */
.product-slider::-webkit-scrollbar {
  display: none;
}

/* ===== DESKTOP: 3 CARDS ===== */
.product-slider > .product-item {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  scroll-snap-align: start;
}

/* ===== MOBILE: 1 CARD ===== */
@media (max-width: 768px) {
  .product-slider > .product-item {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

/* ===== PRODUCT CARD HEIGHT ===== */
.product-card {
  height: 100%;
  min-height: 420px;
}

/* ===== SLIDER ARROWS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg,#ff9800,#ffd54f);
  color: #111;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(255,152,0,.45);
  transition: .3s;
}

.slider-btn.left { left: -14px; }
.slider-btn.right { right: -14px; }

.slider-btn:hover {
  transform: translateY(-50%) scale(1.12);
}

/* MOBILE ARROWS */
@media (max-width: 768px) {
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
    opacity: 0.85;
  }

  .slider-btn.left { left: 6px; }
  .slider-btn.right { right: 6px; }
}

/* ================= HERO CAROUSEL ================= */

.hero-carousel,
.hero-slide {
  height: 90vh;
}

.hero-slide {
  background-size: cover;       /* NO STRETCH */
  background-position: center;  /* NO ZOOM CROP */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 0 15px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-carousel,
  .hero-slide {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ================= CAROUSEL FADE EFFECT ================= */

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* ================= PREMIUM ZOOM-ON-FADE EFFECT ================= */

/* Base state */
.carousel-fade .hero-slide {
  transform: scale(1.06);               /* slightly zoomed */
  transition:
    transform 5s ease,
    opacity 0.8s ease-in-out;
}

/* Active slide */
.carousel-fade .carousel-item.active .hero-slide {
  transform: scale(1);                  /* smooth zoom-in */
}

/* Prevent flicker */
.carousel-fade .carousel-item {
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* ================= THEME COLOR CAROUSEL CONTROLS ================= */

/* Arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff9800,#ffd54f);
  box-shadow: 0 0 18px rgba(255,152,0,.6);
  position: relative;
}

/* Arrow symbols */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform-origin: center;
}

.carousel-control-prev-icon::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.carousel-control-next-icon::after {
  transform: translate(-60%, -50%) rotate(45deg);
}

/* Hover animation */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  box-shadow:
    0 0 10px rgba(255,152,0,.7),
    0 0 25px rgba(255,152,0,.6),
    0 0 45px rgba(255,152,0,.4);
}


/* ================= FADE COLOR TINT ================= */

.carousel-fade .carousel-item.active {
  box-shadow: inset 0 0 120px rgba(255,152,0,.08);
}

/* ================= ABOUT US SECTION ================= */

.about-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #fafafa 0%,
    #ffffff 100%
  );
}

.about-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  font-weight: 500;
  transition: .3s ease;
}

.feature-item i {
  font-size: 20px;
  color: #ff9800;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255,152,0,.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 60px 0;
  }
}

/* ================= ABOUT ENHANCEMENTS ================= */

/* STATS */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.stat-box span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff9800;
}

.stat-box p {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  background: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.badge-item i {
  color: #ff9800;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================= TRUST EXTENSIONS ================= */

/* GOOGLE RATING */
.google-rating {
  display: flex;
  justify-content: center;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.rating-box i {
  font-size: 28px;
  color: #4285F4;
}

.rating-box strong {
  font-size: 20px;
}

.stars {
  color: #ff9800;
  letter-spacing: 2px;
}

/* WHY CHOOSE US */
.why-title {
  text-align: center;
  margin-bottom: 25px;
}

.timeline {
  max-width: 700px;
  margin: auto;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.timeline-item .dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #ff9800;
  border-radius: 50%;
}

.timeline-item p {
  margin: 0;
  font-weight: 500;
  color: #444;
}

/* TESTIMONIALS */
.testimonials {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.testimonial {
  display: none;
  animation: fadeTestimonial 0.6s ease;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-style: italic;
  font-size: 15px;
  color: #333;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  color: #ff9800;
}

@keyframes fadeTestimonial {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== MOBILE SCROLL + HORIZONTAL SWIPE (FINAL FIX) ===== */
.product-slider {
  touch-action: pan-x pan-y;   /* ✅ allow BOTH directions */
  overscroll-behavior: auto;   /* ✅ normal page scroll */
}

.product-item {
  padding: 0 10px;
  box-sizing: border-box;
}

/* ===== FINAL MOBILE OVERFLOW SAFETY NET ===== */
@media (max-width: 768px) {
  * {
    max-width: 100%;
  }
}






