:root {
  --primary: #F8F5F2 !important;
  --secondary: #E8D8C3 !important;
  --accent1: #C2A47A !important;
  --accent2: #AEB7B3 !important;
  --contrast: #4B3F3F !important;
}

/* Global */
body ,section{

  font-family: 'Montserrat', sans-serif ;
}
h1, h2, h3,h4,h5,h6,a { 
    color: #00000 !important;
     letter-spacing: 2px;
}

/* Cards */
.card , .product-card{
  background-color: var(--primary) ;
  /*border-radius: 12px !important;*/
  box-shadow: 0 4px 10px rgba(174, 183, 179, 0.3) ;
}

/* Buttons */
.btn-primary {
  background-color: var(--accent1);
  color: white ;
  border: none ;
  transition: all 0.3s ease ;
}
.btn-primary:hover {
  background-color: #b19166 ;
}

/* Divider */
hr {
  border: 0 ;
  height: 1px ;
  background: var(--accent2) ;
}

/* Header / Footer */
header, footer {
  background-color: #D6BEE0;
  color: #00000;
}

.bestseller-img{
/*height: 500px;*/
}
/* Bestsellers Section Styling */
section {
  /*border-radius: 16px;*/
  padding: 60px 30px;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
  position: relative;
  overflow: hidden;
}

section h2 {
  font-family: "Montserrat", sans-serif;
  /*font-weight: 600;*/
  color: #333;
  text-transform: uppercase;
  letter-spacing: 5px !important;
  position: relative;
  display: inline-block;
}

/*section h2::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 60%;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, #ffb347, #ffcc33);*/
/*  margin: 10px auto 0;*/
/*  border-radius: 3px;*/
/*}*/

/* Grid spacing */
.bestseller-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);*/
  position: relative;
}

.bestseller-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.bestseller-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 15px 15px 0 0;
}

.bestseller-item:hover .bestseller-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Add overlay text on hover */
.bestseller-item::after {
  content: "Shop Now";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.bestseller-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .bestseller-img {
    height: 230px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 15px;
  }
  .bestseller-img {
    height: 200px;
  }
}
    /* Navbar */
    .navbar-custom {
      background: #fff;
      border-bottom: 1px solid #eee;
    }
    .navbar-custom .nav-link {
         color: #4B3F3F !important;
    margin: 0 12px;
    position: relative;
    letter-spacing: 2px;
    
    }
    .navbar-brand img {
      max-height: 45px;
    }
    .navbar-icons i {
      font-size: 18px;
      margin-left: 15px;
      cursor: pointer;
    }

  .candal-btn {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    background: #9a00d2;   /* default background */
    color: #fff;           /* text color */
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
  }

.candal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;        /* hidden outside left */
  width: 100%;
  height: 100%;
  background: #D6BEE0; 
  z-index: -1;
}


  /* Hover effect */
  .candal-btn:hover::before {
    left: 0;
  }

  .candal-btn:hover {
    color: #fff;
  }


    /* Navbar */
    .navbar-custom {
      background: #fff;
      border-bottom: 1px solid #eee;
    }


    /* Mega Menu */
    .dropdown-mega {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background: #fff;
      padding: 30px;
      display: none;
      border-top: 1px solid #eee;
      /*box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
      z-index: 1000;
    }
    .nav-item:hover .dropdown-mega {
      display: block;
      animation: fadeInUp 0.3s ease;
    }

    /* Left column list */
    .dropdown-mega ul {
      list-style: none;
      padding: 0;
    }
    .dropdown-mega ul li {
      margin-bottom: 10px;
    }
    .dropdown-mega ul li a {
      color: #000;
      text-decoration: none;
      font-size: 14px;
    }
    .dropdown-mega ul li a:hover {
      text-decoration: underline;
    }

    /* Animation */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

  .btn-brown {
    background-color: #a67856;
    border: none;
  }
  .btn-brown:hover {
    background-color: #8b5c3c;
  }

  /*.whatsapp-float {*/
  /*  position: fixed;*/
  /*  bottom: 20px;*/
  /*  right: 20px;*/
  /*  color: #25d366;*/
  /*  font-size: 28px;*/
  /*  padding: 12px 15px;*/
  /*  border-radius: 50%;*/
  /*  text-align: center;*/
  /*  z-index: 1000;*/
  /*}*/
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;   /* 👈 now it's on LEFT */
    z-index: 9999;
}

.whatsapp-float img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover effect */
.whatsapp-float img:hover {
    transform: scale(1.1);
}
  .badge.bg-success {
  border-radius: 0 !important;
}



  .instagram-section h6 {
    font-size: 14px;
    color: #555;
    letter-spacing: 1px;
  }

  .instagram-section h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
  }

  .insta-box {
    overflow: hidden;
    position: relative;
  }

  .insta-box img {
    transition: transform 0.4s ease;
  }

  .insta-box:hover img {
    transform: scale(1.05);
  }
  .footer{
      font-family: 'Montserrat';
    letter-spacing: 1px;
    font-size: large;
  }
  .py-5{
      
    font-family: 'Montserrat';

  }
  .navbar{
      
    font-family: 'Montserrat';

  }

  .brand-text {
    font-family: 'Candal', sans-serif; /* Uses Google Font Candal */
    font-size: 18px;
    font-weight: 700;
    color: #000; /* Black text */
    letter-spacing: 1px;
  }
.navbar .nav-link {
  font-size: 14px;
}
  .bestseller-item img {
    max-width: 100%;   /* make images slightly smaller */
    margin: 0 auto;   /* center images */
    display: block;
  }
  .card-img-top{
      border-radius: 0px !important;
  }

  /* ======= Section Style ======= */
section {
  padding: 70px 0;
  overflow: hidden;
}

/*section h2 {*/
/*  font-family: "Montserrat", sans-serif;*/
/*  font-weight: 600;*/
/*  letter-spacing: 1px;*/
/*  color: #2b2b2b;*/
/*  text-transform: uppercase;*/
/*  margin-bottom: 40px;*/
/*  position: relative;*/
/*}*/

/*section h2::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 80px;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, #ffb347, #ffcc33);*/
/*  margin: 12px auto 0;*/
/*  border-radius: 3px;*/
/*}*/

/* ======= Swiper Container ======= */
.mySwiper {
  padding-bottom: 60px;
}

/* ======= Card Design ======= */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);*/
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======= Image Style ======= */
.card-img-top {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* ======= Card Body ======= */
.card-body {
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-title {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 44px; /* keeps title uniform */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.fw-bold.text-success {
  font-weight: 600 !important;
  color: #28a745 !important;
}

/* ======= Discount Badge ======= */
.badge {
  font-size: 0.85rem;
  border-radius: 12px;
  padding: 6px 10px;
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  color: #fff;
  font-weight: 600;
  /*box-shadow: 0 2px 6px rgba(255, 179, 71, 0.4);*/
}

/* ======= Swiper Nav Buttons ======= */
.swiper-button-next,
.swiper-button-prev {
  color: #ffb347;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff9e2c;
  transform: scale(1.1);
}

/* ======= View All Button ======= */
.candal-btn {
  background: #CA9BDB;
  color: #FFF;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  padding: 10px 35px;
}

.candal-btn:hover {
  background: linear-gradient(90deg, #ff9e2c, #ffd633);
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
  transform: translateY(-2px);
}

/* ======= Responsive ======= */
@media (max-width: 992px) {
  .card-img-top {
    height: 250px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
  .card-img-top {
    height: 200px;
  }
}

/*product part*/
.product-description-container {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.06);
}

.product-description-body {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

/* Clean QL editor p tags */
.product-description-body p {
    margin-bottom: 14px;
    color: #222;
}

/* Clean lists */
.product-description-body ul,
.product-description-body ol {
    margin: 10px 0 15px 25px !important;
    padding: 0;
}

.product-description-body li {
    margin-bottom: 8px;
}

/* Fix bold and headings */
.product-description-body strong {
    font-weight: 600;
    color: #000;
}

.product-description-body h1,
.product-description-body h2,
.product-description-body h3,
.product-description-body h4 {
    margin-top: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #111;
}

/* Fix spacing if Quill gives <br> spam */
.product-description-body br + br {
    display: none;
}

/* Links */
.product-description-body a {
    color: #c49b63;
    text-decoration: underline;
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .product-description-container {
        padding: 18px;
    }

    .product-description-body {
        font-size: 15px;
        line-height: 1.7;
    }
}



