/* ===================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   A small, purposeful set of variables drives every color and font
   in this stylesheet. Change a value here to re-theme the whole site.
   =================================================================== */

:root {
  /* Fonts */
  --font-primary: 'Jost', sans-serif;
  --font-secondary: 'Lato', sans-serif;

  /* Page & surfaces */
  --bg-color: #FFFCF5;
  --card-bg-color: #FFFFFF;
  --border-color: #E8E8E8;
  --white-color: #FFFFFF;
  --white-color-rgb: 255, 255, 255;

  /* Text */
  --text-color: #1A1A1A;
  --description-color: #666666;

  /* Header / Navbar */
  --header-color: #FFF9ED;

  /* Buttons & brand accent */
  --button-color: #5B1A0F;
  --button-color-rgb: 91, 26, 15;
  --button-hover-color: #540B0B;
  --secondary-button-color: #E9D5C5;
  --icons-color: #7B1E12;

  /* Footer */
  --footer-color: #4B0F08;
  --footer-color-end: #2B0A06;
  --footer-text-color: #D7D7D7;

  /* Semantic accents */
  --price-color: #3B0505;
  --star-color: #F6B400;
  --success-color: #1CB04F;

  /* Shadow helper (used as rgba(var(--shadow-color-rgb), opacity)) */
  --shadow-color-rgb: 0, 0, 0;
}

body{
 background-color: var(--bg-color);
   font-family: var(--font-primary);
    margin: 0;
    padding: 0;
       overflow-x: hidden;
         padding-top: 100px; 
}

.my-5 {
    margin-top: 1rem !important;
    margin-bottom: 0.25rem !important;
}

.navbar{
    background-color:var(--header-color) !important;
    min-height: var(--site-header-height, 86px);
  
}

.site-navbar-container {
    width: 100%;
    max-width: 100%;
}

.site-brand-name {
    display: inline-block;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
}

.site-header-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header-icon-link i {
    color: currentColor !important;
    transition: color 0.2s ease;
}

.site-header-icon-link:hover,
.site-header-icon-link:focus-visible {
    background: rgba(var(--button-color-rgb), 0.08);
    color: var(--button-color) !important;
}

.site-header-icon-link.active {
    background: rgba(var(--button-color-rgb), 0.12);
    color: var(--button-color) !important;
    box-shadow: inset 0 0 0 1px rgba(var(--button-color-rgb), 0.08);
}

@media (max-width: 1199.98px) {
    .site-navbar-container {
        max-width: 100%;
    }

    body {
        padding-top: 124px;
    }

    body.has-mobile-product-search {
        padding-top: 188px;
    }

    .navbar {
        min-height: 68px;
        padding: 8px 0 0 !important;
    }

    .site-navbar-container {
        min-height: 56px;
        padding-inline: 18px;
        position: relative;
    }

    .site-navbar-container .navbar-brand {
        position: absolute;
        left: 50%;
        top: 4px;
        display: flex;
        align-items: center;
        gap: 9px;
        max-width: calc(100% - 100px);
        margin: 0;
        transform: translateX(-50%);
    }

    .site-navbar-container .navbar-brand img {
        width: auto !important;
        max-width: 52px;
        height: 48px !important;
        object-fit: contain !important;
        border-radius: 0 !important;
        flex-shrink: 0;
    }

    .site-brand-name {
        display: block;
        max-width: 190px;
        overflow: hidden;
        font-size: 20px;
        text-overflow: ellipsis;
    }

    .site-navbar-container > .d-flex {
        margin-left: auto;
    }

    .site-user-action {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .site-wishlist-action {
        display: none !important;
    }

    .site-menu-toggle {
        position: absolute;
        left: 18px;
        top: 8px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transform: none;
        box-shadow: none !important;
    }

    .site-navbar-container .navbar-collapse {
        position: absolute;
        top: 56px;
        right: 0;
        left: 0;
        z-index: 20;
        width: 100%;
        max-height: calc(100vh - 72px);
        margin: 0;
        padding: 8px 18px 14px;
        overflow-y: auto;
        border-top: 1px solid rgba(var(--button-color-rgb), 0.1);
        background: var(--site-header-bg, var(--header-color));
        box-shadow: 0 14px 24px rgba(var(--shadow-color-rgb), 0.12);
    }

    .site-navbar-container .navbar-nav {
        gap: 2px;
        margin-top: 0 !important;
        padding-bottom: 0;
    }

    .site-navbar-container .navbar-nav .nav-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-navbar-container .navbar-nav .nav-link {
        padding: 10px 12px;
        border-radius: 6px;
        text-align: left;
    }

    .site-navbar-container .navbar-nav .nav-link.active {
        background: rgba(var(--button-color-rgb), 0.12);
        color: var(--button-color);
    }

    .site-navbar-container .navbar-nav .nav-link.active::after {
        width: 0;
    }

    .site-navbar-container .navbar-nav .nav-link:hover,
    .site-navbar-container .navbar-nav .nav-link:focus {
        background: rgba(var(--button-color-rgb), 0.07);
    }

    .mobile-site-search {
        width: calc(100% - 24px);
        height: 52px;
        margin: 8px 12px 12px;
        position: relative;
    }

    .mobile-site-search input {
        width: 100%;
        height: 100%;
        padding: 0 54px 0 18px;
        border: 1px solid var(--border-color);
        border-radius: 14px;
        background: var(--white-color);
        color: var(--text-color);
        font-size: 16px;
        outline: none;
    }

    .mobile-site-search input:focus {
        border-color: var(--button-color);
        box-shadow: 0 0 0 3px rgba(var(--button-color-rgb), 0.08);
    }

    .mobile-site-search button {
        position: absolute;
        top: 50%;
        right: 8px;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--text-color);
        font-size: 19px;
        transform: translateY(-50%);
    }

    .mobile-delivery-strip {
        width: 100%;
        padding: 11px 16px 12px;
        background: var(--card-bg-color);
        color: var(--text-color);
        font-size: 15px;
        line-height: 1.2;
        text-align: center;
    }

    .site-navbar-container > .d-flex {
        gap: 14px !important;
    }

    .site-user-action .nav-link,
    .site-user-action {
        min-width: 24px;
    }

    .site-header-icon-link {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 767.98px) {
    .site-navbar-container {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 10px;
        min-height: 68px;
        padding: 10px 12px 12px;
    }

    .site-menu-toggle {
        position: relative;
        left: auto;
        top: auto;
        width: 40px;
        height: 40px;
        grid-column: 1;
        justify-self: start;
    }

    .site-navbar-container .navbar-brand {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        grid-column: 2;
        justify-self: start;
        max-width: 100%;
        min-width: 0;
        gap: 10px;
        padding-left: 2px;
    }

    .site-navbar-container .navbar-brand img {
        max-width: 42px;
        height: 40px !important;
    }

    .site-brand-name {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.05;
    }

    .site-navbar-container > .d-flex {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
        gap: 10px !important;
        align-items: center !important;
    }

    .site-user-action,
    .site-user-action .nav-link,
    .site-header-icon-link {
        width: 34px;
        height: 34px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .site-user-action .dropdown-toggle::after {
        margin-left: 0.2rem;
        vertical-align: 0.12em;
    }

    .site-navbar-container .navbar-collapse {
        top: 68px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 106px;
    }

    body.has-mobile-product-search {
        padding-top: 140px;
    }

    .navbar {
        min-height: 58px;
        padding-top: 4px !important;
    }

    .site-navbar-container {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        min-height: 56px;
        column-gap: 8px;
        padding: 6px 10px 8px;
    }

    .site-menu-toggle {
        width: 32px;
        height: 32px;
    }

    .site-menu-toggle .navbar-toggler-icon {
        width: 1.35em;
        height: 1.35em;
    }

    .site-navbar-container .navbar-brand {
        gap: 7px;
    }

    .site-navbar-container .navbar-brand img {
        max-width: 34px;
        height: 32px !important;
    }

    .site-brand-name {
        max-width: 130px;
        font-size: 15px;
    }

    .site-navbar-container > .d-flex {
        gap: 6px !important;
    }

    .site-user-action,
    .site-user-action .nav-link,
    .site-header-icon-link {
        width: 30px;
        height: 30px;
    }

    .site-header-icon-link i,
    .site-user-action i {
        font-size: 17px !important;
    }

    .site-user-action img {
        width: 24px !important;
        height: 24px !important;
    }

    .site-navbar-container .navbar-collapse {
        top: 56px;
    }

    .mobile-site-search {
        height: 42px;
        margin: 6px 10px 8px;
        width: calc(100% - 20px);
    }

    .mobile-site-search input {
        padding: 0 44px 0 14px;
        border-radius: 11px;
        font-size: 14px;
    }

    .mobile-site-search button {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .mobile-delivery-strip {
        padding: 8px 12px 9px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .site-brand-name {
        max-width: 104px;
        font-size: 14px;
    }

    .site-navbar-container > .d-flex {
        gap: 4px !important;
    }
}

.nav-link.underline{
    font-size:17px;
    color: var(--button-color);
    position: relative;
    white-space: nowrap;
    line-height: 1.2;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link.underline::after{
    content: "";
    position: absolute;
    background-color: var(--button-color);
    color: var(--white-color);
    height: 5px;
    font-weight:bold;
    width: 0;
    left: 0;
    bottom: -8px;
   
}

.nav-link.underline:hover::after{
    width: 100%;
}

.nav-link.underline.active{
    color: var(--button-color);
    font-weight: 700;
}

.nav-link.underline.active::after{
    width: 100%;
}
  /* Custom underline effect for links */
        .nav-link.underline {
            position: relative;
            font-weight: 500;
        }

        .site-navbar-container .navbar-collapse {
            min-width: 0;
            overflow: hidden;
        }

        .site-navbar-container .navbar-nav {
            align-items: center;
            flex-wrap: nowrap;
            gap: clamp(8px, 1.4vw, 28px);
            max-width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .site-navbar-container .navbar-nav::-webkit-scrollbar {
            display: none;
        }

        .site-navbar-container .navbar-nav .nav-item {
            flex: 0 0 auto;
            padding: 0;
        }

        .site-navbar-container .navbar-nav .nav-link {
            padding: 8px 4px;
        }

        /* Ensure the right icons don't collapse weirdly on mobile */
        @media (max-width: 991px) {
            .navbar-nav {
                padding-bottom: 1rem;
            }
            .nav-icons {
                justify-content: center;
                padding-top: 1rem;
                border-top: 1px solid var(--border-color);
            }
        }

        @media (min-width: 1200px) and (max-width: 1399.98px) {
            .navbar {
                padding: 10px 16px !important;
            }

            .site-navbar-container {
                max-width: 100%;
                gap: 18px;
            }

            .site-navbar-container .navbar-brand {
                gap: 10px;
                min-width: 0;
            }

            .site-navbar-container .navbar-brand img {
                width: 62px !important;
                height: 60px !important;
                object-fit: contain;
            }

            .site-brand-name {
                max-width: 220px;
                font-size: 20px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .site-navbar-container .navbar-collapse {
                min-width: 0;
                overflow: hidden;
            }

            .site-navbar-container .navbar-nav {
                gap: 2px;
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                scrollbar-width: none;
            }

            .site-navbar-container .navbar-nav::-webkit-scrollbar {
                display: none;
            }

            .site-navbar-container .navbar-nav .nav-item {
                padding: 0;
            }

            .site-navbar-container .navbar-nav .nav-link {
                padding: 6px 8px;
                font-size: 15px;
            }

            .site-navbar-container > .d-flex {
                gap: 10px !important;
                flex-shrink: 0;
            }
        }


/* FIX SLIDER JUMPING */

.carousel-item .row {
  margin-left: 0;
  margin-right: 0;
}

.carousel-item {
  width: 100%;
}

.carousel {
  overflow: hidden;
}

.carousel-inner {
  transition: transform 0.6s ease-in-out;
}

.price {
  font-size: 16px;
}

.old-price {
  text-decoration: line-through; /* STRIKE LINE */
  color: var(--description-color);
  margin-right: 10px;
  font-size: 14px; /* SPACE BETWEEN PRICES */
}

.new-price {
  font-weight: 600;
  color: var(--price-color);
  font-size: 20px;
}

/* HERO IMAGE */
.hero-img {
  max-height: 420px;
  object-fit: contain;
}

.home-promo-strip {
  width: min(calc(100vw - 48px), 1960px);
  margin: 10px auto 18px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.home-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(330px, 1fr);
  gap: 10px;
  align-items: stretch;
}

.home-promo-side {
  display: grid;
  gap: 10px;
}

.home-promo-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-bg-color);
  border: 1px solid rgba(var(--button-color-rgb), 0.08);
  box-shadow: 0 8px 24px rgba(var(--shadow-color-rgb), 0.08);
}

.home-promo-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.home-promo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-promo-main-swiper,
.home-promo-main-swiper .swiper-wrapper,
.home-promo-main-swiper .swiper-slide,
.home-promo-main-swiper .home-promo-link {
  height: 100%;
}

.home-promo-main-swiper,
.home-promo-side-swiper {
  overflow: hidden;
}

.home-promo-main-swiper .swiper-wrapper,
.home-promo-side-swiper .swiper-wrapper {
  display: flex;
}

.home-promo-main-swiper .swiper-slide,
.home-promo-side-swiper .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
}

.home-promo-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--shadow-color-rgb), 0.18);
  color: var(--white-color);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.home-promo-control:hover {
  background: rgba(var(--shadow-color-rgb), 0.34);
}

.home-promo-prev {
  left: 4px;
}

.home-promo-next {
  right: 4px;
}

.home-promo-control-icon {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.home-promo-banner-main {
  aspect-ratio: 1200 / 450;
  position: relative;
}

.home-promo-banner-side {
  aspect-ratio: 760 / 245;
  position: relative;
}

.home-promo-side-swiper-wrap .home-promo-side-prev {
  left: 6px;
}

.home-promo-side-swiper-wrap .home-promo-side-next {
  right: 6px;
}

.home-promo-side-swiper,
.home-promo-side-swiper .swiper-wrapper,
.home-promo-side-swiper .swiper-slide,
.home-promo-side-swiper .home-promo-link {
  height: 100%;
}

/* CATEGORY PRODUCTS */
.product-img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.shop-category-header {
  margin-bottom: 22px;
}

.shop-category-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--icons-color);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-category-header h2 {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}

.shop-category-header p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 22px 30px;
  align-items: center;
  
}

.product-grid-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.product-grid-home .product-card {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .product-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) and (min-width: 600px) {
  .home-promo-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 1fr);
    gap: 8px;
  }

  .home-promo-side {
    gap: 8px;
    height: 100%;
  }

  .home-promo-banner-side {
    aspect-ratio: 760 / 280;
  }

  .home-promo-banner-main {
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-promo-control {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-promo-grid {
    grid-template-columns: 1fr;
  }

  .home-promo-side {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-promo-banner-main {
    aspect-ratio: 1200 / 450;
    background: var(--card-bg-color);
  }

  .home-promo-banner-main img {
    object-fit: cover;
    object-position: center;
  }

  .home-promo-control {
    display: none;
  }
}

.product-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (max-width: 576px) {
  .home-promo-strip,
  .shop-category-section {
    width: calc(100vw - 24px);
  }

  .product-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .product-grid-list {
    gap: 20px;
  }
}

.shop-category-section {
  position: relative;
  width: min(calc(100vw - 48px), 1960px);
  margin: 24px auto 10px;
  margin-left: 50%;
  padding: 24px 0 8px;
  background: var(--bg-color);
  box-shadow: none;
  transform: translateX(-50%);
}

.shop-category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  transition: transform 0.22s ease, color 0.22s ease;
  justify-content: center;
}

.shop-category-item:hover {
  color: var(--button-color);
  transform: translateY(-2px);
}

.shop-category-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(var(--button-color-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(var(--button-color-rgb), 0.08);
}

.shop-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;
}

.shop-category-label {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
  overflow: hidden;
  overflow-wrap: anywhere;
}

/* SIGNATURE PRODUCTS */
.product-main-img {
  width: 100%;
  height: 520px !important;
  max-height: 260px;
  object-fit: cover;
}

/* CRAVING SECTION */
.craving-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .home-hero-row {
    row-gap: 18px;
  }

  .home-hero-media {
    order: 1;
  }

  .home-hero-copy {
    order: 2;
  }

  .hero-img {
    max-height: 250px;
    align-items: center;
    justify-content: center;
  }

  .header,
  .span {
    font-size: 32px;
  }

  .authentic {
    font-size: 18px;
  }

  .signature {
    font-size: 28px;
  }

  .product-main-img {
    height: 180px;
  }

  .shop-category-section {
    padding: 20px 0 8px;
  }

  .shop-category-eyebrow {
    font-size: 13px;
  }

  .shop-category-header h2 {
    font-size: 28px;
    padding-bottom: 0;
  }

  .shop-category-header p {
    max-width: 520px;
  }

  .shop-category-item {
    gap: 12px;
  }

  .shop-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .shop-category-circle {
    width: 64px;
    height: 64px;
  }

  .shop-category-label {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .header,
  .span {
    font-size: 26px;
  }

  .authentic {
    font-size: 16px;
  }

  .signature {
    font-size: 24px;
  }

  .btn-product {
    width: 100%;
    max-width: 333px;
  }

  .shop-category-section {
    width: 100vw;
    margin-top: 18px;
    padding: 12px 0 6px;
  }

  .shop-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
    padding: 10px 16px 14px;
    justify-content: center;
  }
  .shop-category-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .shop-category-circle {
    width: 76px;
    height: 76px;
    margin: 0 auto;
  }
  .shop-category-header h2 {
    font-size: 25px;
  }
  .shop-category-label {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .circle-img-wrapper {
    width: 120px;
    height: 120px;
  }

  .product-name {
    font-size: 14px;
  }
}



.testimonial-section {
  padding: 70px 0;
  background: var(--bg-color);
}


.testimonial-section h2{
  text-align: center;
}

.testimonial-card {
  background: var(--white-color);
  border-radius: 22px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(var(--shadow-color-rgb),0.08);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .btn-product {
    width: 100% !important;
  }
}

.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(var(--shadow-color-rgb),0.15);
  z-index: 2;
}

.wishlist-icon i {
  color: var(--icons-color);
  font-size: 16px;
}

/* Hover effect */
.wishlist-icon:hover {
  background: var(--icons-color);
}

.wishlist-icon:hover i {
  color: var(--white-color);
}

/* Profile image */
.profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -70px;
  border: 4px solid var(--white-color);
}

/* Center card highlight */
.active-card {
  transform: scale(1.05);
  z-index: 5;
}

/* Left tilt */
.rotate-left {
  transform: rotate(-6deg);
}

/* Right tilt */
.rotate-right {
  transform: rotate(6deg);
}

/* Responsive fix */
@media (max-width: 768px) {
  .rotate-left,
  .rotate-right {
    transform: rotate(0deg);
  }

  .active-card {
    transform: scale(1);
  }
}

.header{
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
}

.span{
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    color:var(--button-color) ;
}

.authentic{
    font-weight: 400;
    color: var(--text-color);
    font-size: 22px;
}

.btn-product{
    border-radius: 8px;
    width: 333px;
    height: 57px;
    padding: 10px 16px 10px 16px;
    gap: 10px;
    background-color: var(--button-color);
    color: var(--white-color);
}

/* Stats Section */

.stats-container {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Individual Box */

.stat-box {
  background-color: var(--secondary-button-color);
  border-radius: 8px;
  padding: 15px 25px;
  height:91px ;
  width: 100px;
  text-align: center;
  min-width: 110px;
  transition: 0.3s ease;
  border: 1px solid var(--border-color);
}

/* Number */

.stat-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
}

/* Text */

.stat-box p {
  font-size: 14px;
  margin: 0;
  color: var(--description-color);
}

/* Hover Effect */

.stat-box {
 
  box-shadow: 0 6px 12px rgba(var(--shadow-color-rgb),0.1);
}

/* Responsive Mobile */

@media (max-width: 768px) {

  .stats-container {
    justify-content: center;
  }

  .stat-box {
    width: 100px;
    padding: 12px;
  }

  .stat-box h3 {
    font-size: 18px;
  }

  .stat-box p {
    font-size: 12px;
  }
}




/* Heading Highlight */

.nellore {
  font-size: 38px;
  font-weight: 700;
  color: var(--button-color);
}

/* Subtitle */

.flavours {
  color: var(--description-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Box */

.content {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 16px;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Image inside card */

.content img {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
}

/* Text inside card */

.content h4 {
  font-size: 18px;
}

.content p {
  font-size: 14px;
  color: var(--description-color);
}



.content {
  
  box-shadow: 0 10px 20px rgba(var(--shadow-color-rgb),0.08);
}

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

@media (max-width: 768px) {

  .nellore {
    font-size: 28px;
  }

  .flavours {
    font-size: 14px;
    padding: 0 15px;
  }

  .content {
    padding: 14px;
  }

  .content h4 {
    font-size: 16px;
  }

  .content p {
    font-size: 13px;
  }
}

/* ========== EXTRA SMALL MOBILE ========== */

@media (max-width: 480px) {

  .nellore {
    font-size: 24px;
  }

  .content img {
    width: 38px;
  }

}


.signature{
    color: var(--button-color);
    font-weight: 600;
    font-size: 38px;
    text-align: center;
}

.discover{
    font-weight: 500;
    font-size: 16px;
    color: var(--description-color);
    text-align: center;
   
}

.seller{
    width: 352px;
    height: 423px;
    border: 1px;
    border-radius: 12px;
     box-shadow: 0 10px 20px rgba(var(--shadow-color-rgb),0.08);
}
/* PRODUCT CARD RESPONSIVE FIX */
.seller {
  width: 100% !important;   /* Bootstrap column controls width */
  height: auto !important;  /* auto height */
  display: flex;
  flex-direction: column;
}

/* Card body full height */
.seller .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Push button bottom */
.seller .app-btn {
  margin-top: auto;
}

/* Fix Whatsapp button width */
.app-btn {
  width: 100% !important;
}

/* Responsive product image */
@media (max-width: 992px) {
  .product-main-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-main-img {
    height: 160px;
  }

  /* Fix button width on mobile */
  .app-btn {
    width: 100% !important;
  }
}

.app-btn{
    width: 311px;
    height: 43px;
    border-radius: 8px;
    border: 1px;
    padding: 10px;
    gap: 8px;
    background-color: var(--secondary-button-color);
    border:var(--secondary-button-color) ;
    font-size: 16px;
    font-weight: 500;
    color:var(--button-color) ;
}

.app-btn:hover{
    width: 311px;
    height: 43px;
    border-radius: 8px;
    border: 1px;
    padding: 10px;
    gap: 8px;
    background-color: var(--button-hover-color);
    border:var(--secondary-button-color) ;
    font-size: 16px;
    font-weight: 500;
    color:var(--white-color) ;
}


/* Image wrapper */

.img-box {
 width: 100%;
  min-height: 236px;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white-color);
  position: relative;
}

@media (max-width: 576px) {
  .img-box {
    min-height: 180px;
  }
}

/* Badge Style */

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--button-color);
  color: var(--white-color);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(var(--shadow-color-rgb),0.2);
}

/* Make image responsive */
.card-img-top {
  width: 100%;
  height: 100%;   /* MUST */
  object-fit: contain; /* OR cover */
  display: block;
  transition: 0.4s ease;
}

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

.signature-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white-color);
}

.home-collection-card {
  padding: 18px !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 10px 28px rgba(var(--shadow-color-rgb), 0.08) !important;
}

.home-collection-image-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--white-color) 0%, var(--white-color) 100%);
  padding: 18px;
  margin-bottom: 6px;
}

.home-collection-card .signature-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.home-collection-card:hover .signature-card-image {
  transform: scale(1.03);
}

.home-collection-card .card-body {
  gap: 8px;
}

.home-collection-card h6 {
  font-size: 18px;
  margin-bottom: 0;
}

.home-collection-card .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 42px;
}

.home-collection-card .input-group {
  overflow: hidden;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

@media (max-width: 768px) {
  .home-collection-image-wrap {
    height: 220px;
    padding: 14px;
  }
  .home-collection-card h6 {
    font-size: 16px;
  }
  .home-collection-card .price {
    min-height: auto;
  }
}
@media (max-width:576px) {
  .card-img-top {
    height: 150px;
    object-fit: contain;
  }
  .home-collection-card h6 {
    font-size: 15px;
  }
  .home-collection-card .price .new-price {
    font-size: 17px !important;
  }
}

.main-section {
  padding: 50px 30px;
  max-width: 1240px;
  width: 100%;
  height: auto;
  border-radius:16px ;
  background-image: linear-gradient(155deg,var(--white-color),var(--card-bg-color),var(--icons-color));
  border-color: var(--border-color);
}

/* MAIN CARD */

.about-card {
  background: linear-gradient(135deg, var(--card-bg-color), var(--secondary-button-color));
  border-radius: 20px;
  padding: 40px;
 
}


/* HOME CONTACT FORM RESPONSIVE FIX */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .contact-form {
    width: 100%;
  }

  .btn-product {
    width: 100% !important; /* remove fixed width */
  }
}

/* Extra small mobile */
@media (max-width: 576px) {
  .contact-form {
    padding: 20px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 14px;
  }
}


/* TEXT */

.text-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--button-color);
  margin-bottom: 15px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--description-color);
}

/* FEATURES */

.feature-grid i {
  color: var(--success-color);
  margin-right: 8px;
}

.quality {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color);
}

.ingredient {
  font-size: 14px;
  color: var(--description-color);
}

/* BUTTON */

.btn-product {
  background-color: var(--button-color);
  color: var(--white-color);
  padding: 12px 26px;
  border-radius: 10px;
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
}

.btn-product:hover {
  background-color: var(--button-hover-color);
  color: var(--white-color);
}

/* IMAGE */

.about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
}

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

@media (max-width: 768px) {

  .about-card {
    padding: 20px;
  }

  .text-section {
    text-align: center;
  }

  .text-section h2 {
    font-size: 24px;
  }

  .about-image {
    margin-top: 25px;
    max-width: 320px;
  }

  .btn-product {
    width: 100%;
  }

}

.btn-product:hover {
background-color: var(--button-color);
color: var(--white-color);
}

.promise h1{

font-weight: 500;
font-style: Medium;
font-size: 38px;
line-height: 100%;
letter-spacing: 0px;

}

.promise p{
    font-family: var(--font-primary);
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;
color: var(--description-color);
}

.promise .card{
    width: 300;
height: 200;
border-radius: 8px;
border-width: 1px;

opacity: 1;
gap: 16px;
padding: 16px;

}

.promise h4{
   font-family: var(--font-primary);
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;
 
}




.testimonial-container {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  overflow: hidden;
  width: 100%;
}

/* The track that moves left/right */
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Each slide group takes up 100% width and holds your 3 cards */
.testimonial-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-around; /* This keeps your 3-card spacing */
}

.testimonial-card {
  position: relative;
  width: 350px;
  margin: 0 20px;
}

/* The Maroon Background Shape */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  right: 10px;
  bottom: -10px;
  background: var(--button-color);
  z-index: 1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* The White Foreground Shape */
.card-content {
  position: relative;
  background: var(--white-color);
  padding: 60px 30px 40px;
  z-index: 2;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 0 10px 30px rgba(var(--shadow-color-rgb),0.05);


}

.card-content h3{
    font-family: var(--font-secondary);
font-weight: 700;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;


}


.card-content p{
    font-family: var(--font-secondary);
font-weight: 400;
font-size: 12px;
color: var(--description-color);


}




#testimonialCarousel {
  overflow: hidden;
}

/* Remove bootstrap row negative margins */
#testimonialCarousel .row {
  margin-left: 0;
  margin-right: 0;
}

/* Avatar image wrapper */
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}

/* Avatar image fit */
.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Equal height for all cards */
.testimonial-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Smooth sliding */
#testimonialCarousel .carousel-inner {
  transition: transform 0.6s ease-in-out;
}

/* Mobile fix */
@media (max-width: 768px) {
  .testimonial-card {
    min-height: auto;
    align-items: center;
  }

}


.avatar {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid var(--white-color);
  object-fit: cover;
}

.quote-icon {
  color: var(--button-color);
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.dots {
  margin-top: 20px;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.dot.active {
  background-color: var(--button-color);
  width: 12px;
  height: 12px;
}



.contact-section {
  background: linear-gradient(120deg, var(--footer-color), var(--footer-color-end));
  padding: 70px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  color: var(--white-color);
}

/* LEFT SIDE */

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--border-color);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
text-align: left;

}

/* MOBILE RESPONSIVE CONTACT SECTION */
@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr !important; /* Stack */
    gap: 30px;
  }

  /* Order: Info first */
  .contact-info {
    order: 1;
  }

  /* Order: Form second */
  .contact-form {
    order: 2;
  }

  /* Center text on mobile */
  .contact-info h2,
  .contact-info p {
    text-align: center;
  }

  /* Social icons center */
  .social-icons {
    text-align: center;
  }

  .social-icons a {
    margin-bottom: 10px;
  }
}


.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  width: 42px;
  height: 42px;
  background: rgba(var(--white-color-rgb),0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h5 {
  margin: 0;
  font-size: 16px;
}

.info-item span {
  font-size: 14px;
  color: var(--border-color);
}

/* SOCIAL ICONS */

.social-icons {
  margin-top: 30px;
}

.social-icons i {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  color: var(--footer-color);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


/* RIGHT FORM CARD */

.contact-form {
  background: rgba(var(--white-color-rgb),0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  
  max-width: 100%;
}

.contact-form h3 {
  margin-bottom: 25px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(var(--white-color-rgb),0.15);
  border: none;
  outline: none;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  color: var(--white-color);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--border-color);
}

/* BUTTON */

.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--white-color);
  color: var(--footer-color);
}

.contact-form button:hover {
  background: var(--border-color);
}
@media (max-width: 900px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px;
  }

}



.productsection {
  padding: 40px 0;
}

.product-card {
  margin-bottom: 25px;
}

.circle-img-wrapper {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  margin-top: 12px;
  font-weight: 600;
}

.view-more {
  text-decoration: none;
  color: var(--button-color);
  font-weight: 500;
}
.productsection {

  padding: 80px 0;
}

/* Card */
.product-card {
  margin-bottom: 5px;
}

/* SAME size for all category images */
.circle-img-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force all images to behave same */
.circle-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Title */
.product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
}

/* View more */
.view-more {
  font-size: 14px;
  color: var(--icons-color);
  font-weight: 500;
  text-decoration: none;
}

/* PRODUCT CAROUSEL DOTS AFTER 4 IMAGES */

#productSyncCarousel {
  padding-bottom: 50px; /* space for dots */
}

#productSyncCarousel .carousel-indicators {
  position: absolute;
  bottom: -40px; /* push dots BELOW product images */
}

#productSyncCarousel .carousel-indicators button {
  background-color: var(--button-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
}

#productSyncCarousel .carousel-indicators .active {
  opacity: 1;
}

/* Testimonial Avatar Responsive Fix */

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS IS THE KEY */
  display: block;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .avatar {
    width: 60px;
    height: 60px;
  }
}
/* PRODUCT CAROUSEL DOT FIX */
.carousel-indicators {
  position: relative !important;
  margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--button-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--text-color);
}


.arrow{
  color: var(--button-color);
  

  font-family: var(--font-primary);
font-weight: 500;
font-style: Medium;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;

}

/* SLIDER STABILITY FIX */

.carousel,
#testimonialCarousel {
  overflow: hidden !important;
}

.carousel-item .row,
#testimonialCarousel .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.carousel-item {
  width: 100% !important;
}

/* TESTIMONIAL AVATAR FIX */

.avatar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

.avatar img {
  object-fit: cover !important;
}

/* STOP SIDE SCROLL */


.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
  color: var(--success-color);
}


.premium-card {
  background: linear-gradient(135deg, var(--button-color), var(--icons-color));
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(var(--shadow-color-rgb),0.2);
}

/* Icons box */
.icon-box {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--icons-color);
 
}

 .custom-radio {
        width: 16px;
        height: 16px;
        cursor: pointer;
        border-color: var(--button-color) !important;
    }

    .custom-radio:checked {
        background-color: var(--button-color) !important;
        border-color: var(--button-color) !important;
    }

    .form-check-label:hover {
        color: var(--button-color);
        font-weight: 500;
    }

    /* Ensures vertical alignment between dot and text */
    .form-check {
        min-height: 1.5rem;
        padding-left: 0; /* Removing default bootstrap padding to use flex gap */
    }

    /* Radio Styling */
    .custom-radio { border-color: var(--button-color) !important; width: 1.2em; height: 1.2em; }
    .custom-radio:checked { background-color: var(--button-color) !important; }
    .form-check-label:hover { color: var(--button-color); }
    
    /* Animation and Card Styling */
    
    

/* Responsive text */
.premium-card p {

font-weight: 400;
font-style: Regular;
font-size: 16px;


}

.premium-card h6{
   
font-weight: 400;
font-style: Regular;
font-size: 14px;
color: var(--card-bg-color);
line-height: 100%;
letter-spacing: 0px;

}
.premium-card h2{
   
font-weight: 700;
font-style: Bold;
font-size: 38px;
color:var(--white-color) ;
line-height: 100%;
letter-spacing: 0px;

}

.premium-card p{
  color:var(--white-color) ;
  
font-weight: 400;

font-size: 16px;


}


.premium-card h4{
   
font-weight: 700;
font-style: Bold;
font-size: 16px;
color:var(--white-color) ;


}

.filter-box label{
    font-family: var(--font-primary);
font-weight: 500;
font-style: Medium;
font-size: 16px;
text-align: center;

}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--description-color);
  font-size: 16px;
  pointer-events: none;
}

/* Optional: rounded premium look */
.search-box input {
  border-radius: 8px;
  padding-left: 40px;
}

/* Chrome, Edge, Safari */
.price-range::-webkit-slider-runnable-track {
  background: var(--text-color);
  height: 10px;
  border-radius: 10px;
}

/* Slider thumb */
.price-range::-webkit-slider-thumb {
  background: var(--icons-color);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  cursor: pointer;
}

/* Firefox */
.price-range::-moz-range-track {
  background: var(--text-color);
  height: 6px;
  border-radius: 10px;
}

.price-range::-moz-range-thumb {
  background: var(--icons-color);
  border: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
}


/* Filter Sidebar */
.filter-box {
  background: var(--white-color);
  color: var(--description-color);
  border-radius: 12px;
}

/* Premium Info Box */
.premium-box {
  background-color: var(--secondary-button-color);
  border-radius: 10px;
  width: 306px;
height: 66px;
border-radius: 12px;
border-width: 1px;
gap: 12px;

opacity: 1;
padding-top: 12px;
padding-right: 16px;
padding-bottom: 12px;
padding-left: 16px;




}

.premium-box h6{
    font-family: var(--font-primary);
font-weight: 600;
font-style: SemiBold;
font-size: 14px;
color: var(--icons-color);

}

.premium-box small{
    font-family: var(--font-primary);
font-weight: 400;
font-style: Regular;
font-size: 10px;
color: var(--text-color);

}

/* Product Card */
.product-card {
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(var(--shadow-color-rgb),0.1);
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

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

/* IMAGE ZOOM */
.product-card:hover img {
  transform: scale(1.08);
}

/* Badge */
.badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

/* Wishlist Icon */
.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  background: var(--white-color);
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Price */
.price span {
  font-weight: bold;
  color: var(--icons-color);
  font-size: 18px;
}

/* Whatsapp Button */
.whatsapp-btn {
  background: var(--card-bg-color);
  border-radius: 8px;
  color: var(--icons-color);
  font-weight: 600;
}


.form-check-input{
    font-family: var(--font-primary);
font-weight: 400;
font-style: Regular;
font-size: 10px;
color: var(--description-color);
line-height: 100%;
letter-spacing: 0%;

}


.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(var(--shadow-color-rgb),0.15);
  z-index: 2;
}

.wishlist-icon i {
  color: var(--icons-color);
  font-size: 16px;
}

/* Hover effect */
.wishlist-icon:hover {
  background: var(--icons-color);
}

.wishlist-icon:hover i {
  color: var(--white-color);
}

.price {
  font-size: 16px !important;
}

.old-price {
  text-decoration: line-through !important; /* STRIKE LINE */
  color: var(--description-color) !important;
  margin-right: 10px !important;
  font-size: 14px !important; /* SPACE BETWEEN PRICES */
}

.new-price {
  font-weight: 600 !important;
  color: var(--price-color) !important;
  font-size: 20px !important;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--button-color);
  color: var(--white-color);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(var(--shadow-color-rgb),0.2);
}

.product-card p{
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: var(--description-color);
  line-height: 1.4;
  letter-spacing: 0px;
  margin-bottom: 8px;
  text-align: justify;
}


/* MAIN BAR */
.filter-top-bar {
  background: var(--white-color);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--description-color);
}

/* LEFT TEXT */
.product-count {
  font-weight: 500;
}

/* RIGHT CONTROLS */
.sort-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white-color);
  border-radius: 8px;
}

/* SORT ICON */
.sort-icon {
  font-size: 14px;
  color: var(--description-color);
}

/* DROPDOWN */
.sort-select {
  border: 1px solid var(--white-color);
  border-radius: 6px;
  padding: 3px 8px;
  background: var(--card-bg-color);
  font-size: 13px;
  color: var(--description-color);
  outline: none;
}

/* GRID LIST BUTTONS */
.view-btn {
  border: 1px solid var(--border-color);
  background: var(--white-color);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--description-color);
  cursor: pointer;
}

/* ACTIVE GRID BUTTON */
.view-btn.active {
  background: var(--button-color);
  color: var(--white-color);
  border-color: var(--button-color);
}

/* LIST VIEW */
.product-card-list {
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  padding: 15px !important;
}

.product-card-list img {
  width: 180px !important;
  height: 180px !important;
  object-fit: contain;
  border-radius: 12px !important;
  flex-shrink: 0;
}

.product-card-list .card-body {
  flex: 1;
  padding-left: 30px !important;
}

.product-card-list .wishlist-icon {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin: 0;
}

.product-card-list form.position-absolute {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin: 0 0 0 10px;
}

.product-card-list .prevent-card-click {
  text-align: left;
}

.product-card-list .prevent-card-click .d-flex.justify-content-center {
  justify-content: flex-start !important;
  margin-bottom: 8px !important;
}

.product-card-list .prevent-card-click .btn.w-100 {
  width: auto !important;
  padding: 8px 24px !important;
}

@media (max-width: 576px) {
  .product-card-list {
    flex-direction: column !important;
    text-align: center !important;
  }
  .product-card-list img {
    width: 100% !important;
    height: auto !important;
  }
}



/* Heading */

.timeline-title {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-title h2 {
  color: var(--button-color);
  font-size: 32px;
  margin-bottom: 5px;
}

.timeline-title p {
  font-size: 14px;
  color: var(--description-color);
}

/* Timeline container */

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Center vertical line */

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--button-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline item */

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* Left side */

.left {
  left: 0;
}

/* Right side */

.right {
  left: 50%;
}

/* Content box */

.timeline-content {
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(var(--shadow-color-rgb),0.08);
}

.timeline-content h3 {
  margin: 0;
  color: var(--button-color);
}

.timeline-content p {
  font-size: 13px;
  color: var(--description-color);
  margin-top: 6px;
}

/* Circle dot */

.timeline-item::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--button-color);
  border-radius: 50%;
  top: 30px;
  z-index: 1;
}

.left::after {
  right: -7px;
}

.right::after {
  left: -7px;
}

/* Mobile responsive */

@media (max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .right {
    left: 0;
  }

  .left::after,
  .right::after {
    left: 13px;
  }
}


.heritage{
  max-width: 1240px;
  width: 100%;
border-radius: 16px;
border-width: 1px;
justify-content: space-between;
opacity: 1;
padding: 20px;
border-color: var(--border-color);
font-family: var(--font-primary);
}


.img-about{
  width: 547px;
height: 416px;
border-radius: 16px;

opacity: 1;

}


@media(max-width: 768px){
  .img-about{
    width:50px ;
    height: 120px;
  }
}


.since-badge{
  width: 98;
height: 24;
border-radius: 12px;
gap: 4px;
opacity: 1;
padding-top: 8px;
padding-right: 8px;
padding-bottom: 8px;
padding-left: 8px;
color: var(--white-color);
background-color: var(--button-color);
}

.heritage h2{
  
font-weight: 500;
font-style: Medium;
font-size: 32px;
line-height: 100%;
letter-spacing: 0px;

}

.heritage h3{
  font-family: var(--font-primary);
font-weight: 600;
font-style: SemiBold;
font-size: 42px;
line-height: 100%;
letter-spacing: 0px;
color: var(--button-color);
}

.heritage p{
font-weight: 400;
font-size: 16px;
color:var(--description-color) ;

}

.btn-about{
  background-color: var(--button-color);
  width: 158;
height: 48;
border-radius: 12px;
gap: 12px;
opacity: 1;
padding-top: 12px;
padding-right: 16px;
padding-bottom: 12px;
padding-left: 16px;
color: var(--white-color);

}

.btn-about:hover{
 background-color: var(--button-color);
 color: var(--white-color);
}


.core-icon {
  font-size: 20px;
  color: var(--icons-color);
  background: var(--card-bg-color);
  padding: 12px;
  border-radius: 50%;
}

.number{
  width: 260px;
height: 200px;
border-radius: 12px;
border-width: 1px;
gap: 36px;

opacity: 1;
padding: 16px;
border: 1px solid var(--border-color);
box-shadow: 0px 8px 24px rgba(var(--shadow-color-rgb), 0.15);
}

.number h4{
font-weight: 700;
font-style: Bold;
font-size: 32px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;

}


.number p{
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;
color: var(--description-color);
}

.flavours{

font-weight: 500;
font-style: Medium;
font-size: 18px;
line-height: 100%;
letter-spacing: 0px;


}

.nellore{

font-weight: 600;
font-style: SemiBold;
font-size: 38px;
color: var(--button-color);
line-height: 100%;
letter-spacing: 0px;
}

.certificate{
   width: 260px;
height: 200px;
margin-left: 25px;
border-radius: 12px;
border-width: 1px;
gap: 36px;

opacity: 1;
padding: 16px;
border: 1px solid var(--border-color);
box-shadow: 0px 8px 24px rgba(var(--shadow-color-rgb), 0.15);
}

.certificate h4{

font-weight: 600;
font-style: SemiBold;
font-size: 20px;
line-height: 100%;
letter-spacing: 0px;

}


.certificate p{

font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;
}

.success h5{

font-weight: 600;
font-style: SemiBold;
font-size: 24px;
color: var(--text-color);
line-height: 100%;
letter-spacing: 0px;
text-align: center;

}

.success p{
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 100%;
letter-spacing: 0px;
text-align: center;
color: var(--description-color);
}


/* PEOPLE BEHIND SUCCESS FIX */

.success .card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.success .card-img-top {
  width: 100%;
  height: 332px;        /* same height as your design */
  object-fit: cover;   /* FIX: crop instead of stretch */
}

.success .card-body {
  text-align: center;
}


.contact-section {
  background: linear-gradient(120deg, var(--footer-color), var(--footer-color-end));
  padding: 70px 20px;
    
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  color: var(--white-color);
    
}

/* LEFT SIDE */

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;

}

.contact-info p {
  color: var(--border-color);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
text-align: left;


}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 20px;
}

.info-item i {
  width: 42px;
  height: 42px;
  background: rgba(var(--white-color-rgb),0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.info-item h5 {
  margin: 0;
  font-size: 16px;
  
}

.info-item span {
  font-size: 14px;
  color: var(--border-color);


}

/* SOCIAL ICONS */

.social-icons {
  margin-top: 30px;

}

.social-icons i {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  color: var(--footer-color);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;

}

/* RIGHT FORM CARD */

.contact-form {
  background: rgba(var(--white-color-rgb),0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;

}

.contact-form h3 {
  margin-bottom: 25px;
 
}

/* INPUTS */

.btn-product{
    border-radius: 8px;
    width: 333px;
    height: 57px;
    padding: 10px 16px 10px 16px;
    gap: 10px;
    background-color: var(--button-color);
    color: var(--white-color);

}

.heading-contact h2{
font-weight: 700;
font-style: Bold;
font-size: 38px;
color:var(--button-color) ;
line-height: 100%;
letter-spacing: 0px;
text-align: center;


}

.para{

font-weight: 500;
font-style: Medium;
font-size: 16px;
color:var(--description-color) ;
line-height: 100%;
letter-spacing: 0px;
text-align: center;


}

.detail{
  width: 330px;
height: 250px;
gap: 12px;
opacity: 1;
border-radius: 12px;
border-width: 1px;

padding: 16px;
border: 1px solid var(--border-color);
box-shadow: 0px 8px 24px rgba(var(--shadow-color-rgb), 0.15);
}




.detail h4{
  

font-weight: 600;
font-style: SemiBold;
font-size: 20px;
line-height: 100%;

letter-spacing: 0px;

text-align: center;

}

.detail p{
font-weight: 400;
font-style: Regular;
font-size: 14px;
color: var(--description-color);

text-align: center;

}
.core-icon {
  font-size: 20px;
  color: var(--icons-color);
  background: var(--card-bg-color);
  padding: 12px;
  border-radius: 50%;

}

/* Container/Card styling to match the image border/padding */
.form .card {
    border-radius: 8px;
  
    border: 1px solid var(--border-color);
    padding: 40px !important;
}

.form h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
   
    color: var(--footer-color);
    margin-bottom: 10px;
}

.form p {
    color: var(--description-color);
    font-weight: 500;
    font-size: 14px;

    margin-bottom: 30px;
}

/* Button Styling - Matches the Image Exactly */
.submit-btn {
    background-color: var(--button-color); /* Deep Maroon from image */
    color: var(--white-color) !important;
  
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border-radius: 8px; /* Slightly sharper corners like the image */
    border: none;
    padding: 14px 16px;
    width: 100%; /* Spans the full width of the form container */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--button-hover-color);
    color: var(--white-color) !important;
}

/* Icon adjustment */
.submit-btn i {
    font-size: 18px;
    -webkit-text-stroke: 1px white; /* Makes the chevron look bolder like the image */
}

/* Ensure inputs match the image style */
.form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
}
.timing p{

font-weight: 400;
font-style: Regular;
font-size: 14px;

color:var(--text-color);
opacity: 1;


}

.timing span{

font-weight: 600;
font-style: SemiBold;
font-size: 14px;

justify-content: space-between;
line-height: 100%;
letter-spacing: 0px;
color:var(--button-color) ;
}

.media h5{
  
font-weight: 600;

font-style: SemiBold;
font-size: 20px;
color: var(--text-color);
line-height: 100%;
letter-spacing: 0px;


}


.media p{

font-weight: 400;
font-style: Regular;
font-size: 14px;
color: var(--description-color);
line-height: 100%;
letter-spacing: 0px;


}


.answer h2{
  
font-weight: 600;
font-style: SemiBold;
font-size: 38px;
color: var(--button-color);
line-height: 100%;
letter-spacing: 0px;
text-align: center;



}

.answer h5{

font-weight: 600;
font-style: SemiBold;
font-size: 16px;
color:var(--text-color) ;
line-height: 100%;
letter-spacing: 0px;

}

.answer p{
 color: var(--description-color);
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 20px;
letter-spacing: 0px;


}
.location{
  justify-content: space-between;
  opacity: 1;
  border-radius: 16px;
  border-width: 1px;
  padding-top: 28px;
  padding-right: 60px;
  padding-bottom: 28px;
  padding-left: 60px;
}

.location h2{
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  color:var(--text-color) ;
  line-height: 1.1;
  letter-spacing: 0px;
  margin-bottom: 14px;
}

.location p{
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0px;
  color: var(--description-color);
}

.location h5{
  font-weight: 600;
  color:var(--text-color) ;
  font-size: 16px;
  margin: 0 0 6px;
}

.location span{
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: var(--description-color);
  line-height: 1.45;
  letter-spacing: 0px;
}

.location .text-section {
  text-align: left;
}

.location .text-section > p {
  margin-bottom: 26px;
  max-width: 620px;
}

.location .info-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 26px;
}

.location .info-item i {
  width: 42px;
  height: 42px;
  margin-top: 2px;
}

.location .info-item div {
  min-width: 0;
}

.location .info-item div p,
.location .info-item div a,
.location .info-item div span,
.location .info-item div strong {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-color);
  word-break: break-word;
}

.location .d-grid {
  margin-top: 6px;
}

@media (max-width: 991px) {
  .location {
    padding: 24px 28px;
  }

  .location h2 {
    font-size: 28px;
  }

  .location .text-section > p,
  .location .info-item div p,
  .location .info-item div a,
  .location .info-item div span,
  .location .info-item div strong {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .location {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .location .row {
    row-gap: 24px !important;
  }

  .location h2 {
    font-size: 24px;
    text-align: center;
  }

  .location .text-section > p {
    margin-bottom: 22px;
    font-size: 14px;
    text-align: center;
  }

  .location .info-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .location .info-item i {
    width: 36px;
    height: 36px;
    padding: 8px;
    font-size: 16px;
  }

  .location .info-item h5 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .location .info-item div p,
  .location .info-item div a,
  .location .info-item div span,
  .location .info-item div strong {
    font-size: 14px;
    line-height: 1.45;
  }
}


.core-icon {
  font-size: 20px;
  color: var(--icons-color);
  background: var(--card-bg-color);
  padding: 12px;
  border-radius: 50%;
}

.questions{
height: 320px;
border-radius: 24px;
border-width: 1.6px;
padding-top:38px;

padding-left: 0px;
background-image: linear-gradient(25deg,var(--button-color),var(--icons-color));
opacity: 1;

}

.questions h1{
 
font-weight: 700;
font-style: Bold;
font-size: 36px;
line-height: 54px;
letter-spacing: 0px;
text-align: center;
color:var(--white-color) ;
}

.questions p{

font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 24px;
letter-spacing: 0px;
text-align: center;
color:var(--white-color) ;
}
.btn-question{
  width: 147px;
height: 48px;
border-radius: 8px;
background-color: var(--white-color);
opacity: 1;
color: var(--button-color);
text-align: center;
padding: 10px;

font-weight: 400;
font-style: Regular;
font-size: 16px;

line-height: 24px;
letter-spacing: 0px;
text-align: center;

}


.product-box {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  background: var(--white-color);
}

/* Image */
.product-img {
  border-radius: 16px;
  height: 555px;
  object-fit: cover;
}

/* Title */
.product-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Share button */
.share-btn {
  border: 1px solid var(--border-color);
  background: var(--white-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description */
.product-desc {
  font-size: 14px;
  color: var(--description-color);
  line-height: 1.6;
}

/* Rating */
.rating {
  font-weight: 500;
}

/* Price */
.price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.current-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--price-color);
}

.old-price {
  text-decoration: line-through;
  color: var(--description-color);
}

.discount {
  background: var(--success-color);
  color: var(--success-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* Meta */
.meta {
  font-size: 14px;
  color: var(--text-color);
}

.tax-note {
  font-size: 13px;
  color: var(--description-color);
}

/* Quantity */
.quantity-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 6px 16px;
}

.qty-controls button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

/* Buttons */
.buy-btn {
  background: var(--button-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 12px;
  font-weight: 500;
}

.buy-btn:hover {
  background: var(--button-hover-color);
}

.wishlist-btn {
 width: 337px;
height: 52px;
gap: 10px;
opacity: 1;
border-radius: 8px;
border-width: 1px;
padding-top: 9px;
padding-right: 10px;
padding-bottom: 9px;
padding-left: 10px;

}


        .product-image-box {
  border-radius: 15px;
  overflow: hidden;
}

.product-image-box img {
  height: 680px;
  object-fit: cover;
}

.price-box span {
  margin-right: 10px;
  font-weight: 600;
}

.mrp-price {
  text-decoration: line-through;
  color: var(--description-color);
}

.discount {
  color: var(--price-color);
}

.tabs span {
  margin-right: 20px;
  cursor: pointer;
  font-weight: 500;
}

.active-tab {
  border-bottom: 2px solid var(--button-color);
}

.qty-box {
 border: 1px solid var(--text-color);
  border-radius: 6px;
  overflow: hidden;
  width: 180px;}

.buy-btn {
  background: var(--secondary-button-color);
  color: var(--button-color);
}
.btn-wishlist {
  background: var(--secondary-button-color);
  color: var(--text-color);
  font-weight: 600;
}

.app-btn{
    width: 275px;
    height: 43px;
    border-radius: 8px;
    border: 1px;
    padding: 10px;
    gap: 8px;
    background-color: var(--secondary-button-color);
    border:var(--secondary-button-color) ;
    font-size: 16px;
    font-weight: 500;
    color:var(--button-color) ;
}

.app-btn:hover{
    width: 275px;
    height: 43px;
    border-radius: 8px;
    border: 1px;
    padding: 10px;
    gap: 8px;
    background-color: var(--button-hover-color);
    border:var(--secondary-button-color) ;
    font-size: 16px;
    font-weight: 500;
    color:var(--white-color) ;
}


.cart-btn {
  background: var(--text-color);
  color: var(--white-color);
}


@media (max-width: 768px) {
  .img-box {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .img-box {
    height: 150px;
  }
}

/* Badge Style */

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--button-color);
  color: var(--white-color);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(var(--shadow-color-rgb),0.2);
}

/* Make image responsive */

.price {
  font-size: 16px;
}

.old-price {
  text-decoration: line-through; /* STRIKE LINE */
  color: var(--description-color);
  margin-right: 10px;
  font-size: 14px; /* SPACE BETWEEN PRICES */
}

.new-price {
  font-weight: 600;
  color: var(--price-color);
  font-size: 20px;
}

.card-img-top {
    width: 100%;
  height: 100%;   /* MUST */
  object-fit: contain; /* OR cover */
  display: block;
  transition: 0.4s ease;
}

.card-img-top:hover{
transform: scale(1.08);
}
    .tab-link {
        cursor: pointer;
        padding: 10px 20px;
        display: inline-block;
        border-bottom: 2px solid transparent;
        font-weight: 500;
        color: var(--description-color);
    }
    .active-tab {
        border-bottom: 2px solid var(--button-color); /* Brand Color */
        color: var(--button-color);
    }
    .tab-content {
        padding: 20px 0;
    }
    /* Simple utility to hide content if not using Bootstrap */
    .d-none { display: none; }

/* Heart icon */
.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(var(--shadow-color-rgb),0.15);
  z-index: 2;
}

.wishlist-icon i {
  color: var(--icons-color);
  font-size: 16px;
}

/* Hover effect */
.wishlist-icon:hover {
  background: var(--icons-color);
}

.wishlist-icon:hover i {
  color: var(--white-color);
}

.rating-box {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 12px;
}

.rating-score {
  font-size: 64px;
  font-weight: 700;
  color: var(--button-color);
}

.stars {
  color: var(--star-color);
  font-size: 22px;
}

.review-text {
  color: var(--description-color);
  font-size: 14px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.star-label {
  color: var(--star-color);
  font-size: 18px;
}

.progress {
  flex: 1;
  height: 10px;
  background: var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  background: var(--button-color);
  height: 100%;
  border-radius: 10px;
}

.count {
  width: 15px;
  font-weight: 600;
}

.reviews {
  width: 90px;
  font-size: 13px;
  color: var(--description-color);
}
/* Review Card */
    .review-card {
      background: var(--white-color);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 15px 40px rgba(var(--shadow-color-rgb),0.25);
    }

    /* Avatar */
    .review-avatar {
      width: 48px;
      height: 48px;
      background: var(--icons-color);
      color: var(--white-color);
      font-weight: 700;
      font-size: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Verified badge */
    .verified-badge {
      background: var(--success-color);
      color: var(--success-color);
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* Rating */
    .review-rating i {
      color: var(--star-color);
      font-size: 14px;
    }

    /* Review text */
    .review-text {
      font-size: 15px;
      color: var(--text-color);
      margin-bottom: 14px;
    }

    /* Actions */
    .review-actions span {
      font-size: 14px;
      color: var(--description-color);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .review-actions span:hover {
      color: var(--text-color);
    }




.craving-section {
  margin: 42px auto 56px;
}

.craving-card {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  align-items: center;
  gap: 36px;
  padding: 24px 0;
}

.craving-media {
  width: 100%;
}

.craving-img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 18px 40px rgba(var(--shadow-color-rgb), 0.12);
}

.craving-content {
  text-align: left;
  max-width: 640px;
}

.craving-content h2 {
  margin: 0 0 16px;
  color: var(--text-color);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.craving-content p {
  margin: 0 0 28px;
  color: var(--description-color);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.craving-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--button-color);
  color: var(--white-color);
  border-radius: 14px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(var(--shadow-color-rgb), 0.18);
}

.craving-btn:hover {
  background-color: var(--button-hover-color);
  color: var(--white-color);
}

.craving-btn svg {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .craving-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0;
  }

  .craving-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .craving-section {
    margin: 32px auto 44px;
  }

  .craving-card {
    gap: 18px;
  }

  .craving-img {
    border-radius: 22px;
  }

  .craving-content {
    text-align: center;
  }

  .craving-content h2 {
    line-height: 1;
  }

  .craving-btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
    padding: 16px 22px;
    font-size: 16px;
  }
}

.zip-checker {
  margin: 22px 0 10px;
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: var(--card-bg-color);
}

.zip-checker-top {
  margin-bottom: 12px;
}

.zip-checker-top h5 {
  margin: 0 0 4px;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 700;
}

.zip-checker-top span {
  color: var(--description-color);
  font-size: 13px;
}

.zip-checker-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.zip-checker-input {
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 16px;
  background: var(--white-color);
  color: var(--text-color);
  font-size: 15px;
  outline: none;
}

.zip-checker-input:focus {
  border-color: var(--button-color);
  box-shadow: 0 0 0 3px rgba(var(--button-color-rgb), 0.1);
}

.zip-checker-btn {
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: var(--button-color);
  color: var(--white-color);
  font-weight: 600;
}

.zip-checker-btn:hover {
  background: var(--button-hover-color);
  color: var(--white-color);
}

.zip-checker-help {
  margin: 10px 0 0;
  color: var(--description-color);
  font-size: 12px;
}

.zip-checker-result {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.zip-checker-result.success,
.zip-checker-result.warning,
.zip-checker-result.error {
  display: block;
}

.zip-checker-result.success {
  background: var(--success-color);
  color: var(--price-color);
}

.zip-checker-result.warning {
  background: var(--card-bg-color);
  color: var(--price-color);
}

.zip-checker-result.error {
  background: var(--card-bg-color);
  color: var(--price-color);
}

@media (max-width: 768px) {
  .zip-checker-row {
    flex-direction: column;
    align-items: stretch;
  }

  .zip-checker-btn {
    width: 100%;
  }
}




/*checkout section */
::placeholder{
    font-size:small;
    font-family: sans-serif;
    font-weight: 400;
}
   .input-with-svg {
  position: relative;
}

.input-with-svg svg {
  position: absolute;
  right: 12px;       /* Moves icon to the right */
  top: 50%;
  transform: translateY(-50%);
  color: var(--description-color);
}

.input-with-svg input {
  padding-right: 35px;   /* Add space so text doesn't overlap the icon */
  padding-left: 12px;    /* Normal left padding */
}

.nav-item{
    list-style: none;
    padding: 20px;
}







/* Make form vertical */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Quantity row */
form button[type="button"],
form input#quantity {
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    font-size: 18px;
    color: var(--text-color);
}

/* Quantity container effect */
form button[type="button"] {
    width: 40px;
    cursor: pointer;
}

form input#quantity {
    width: 60px;
    text-align: center;
    font-weight: 600;
    border-left: none;
    border-right: none;
}


.table,
.table th,
.table td,
.table tbody,
.table thead,
.table tr {
  background-color: transparent !important;
}


.table th{
  color: var(--description-color);
  font-weight: 500;
}


/* Dropdown Wrapper */
.custom-dropdown {
  position: relative;
  width: 100%;
}

/* Input Button Look */
.dropdown-btn {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--white-color);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hover + Focus */
.dropdown-btn:hover {
  border-color: var(--button-color);
}

.dropdown-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(var(--shadow-color-rgb), 0.25);
}

/* Dropdown List */
.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;          /* ALWAYS OPEN DOWN */
  left: 0;
  width: 100%;
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(var(--shadow-color-rgb),0.1);
  z-index: 9999;
}

/* Dropdown Items */
.dropdown-list div {
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}

/* Hover Effect */
.dropdown-list div:hover {
  background-color: var(--card-bg-color);
}

/* Scrollbar Styling (Optional) */
.dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 5px;
}

* Custom Dropdown Styling */
    .custom-dropdown { position: relative; width: 100%; }
    .dropdown-btn { 
        padding: 10px; border: 1px solid var(--border-color); border-radius: 6px; 
        background: var(--white-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    }
    .dropdown-list { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        border: 1px solid var(--border-color); background: var(--white-color); z-index: 1000; max-height: 200px; overflow-y: auto; 
    }
    .dropdown-list div { padding: 10px; cursor: pointer; }
    .dropdown-list div:hover { background-color: var(--card-bg-color); }

    /* Icon Positioning */
    .input-with-svg { position: relative; }
    .input-with-svg .form-control { padding-right: 40px; }
    .input-with-svg svg {
        position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
        z-index: 5; pointer-events: none; opacity: 0.5;
    }


/* ============================
   CHECKOUT RESPONSIVE FIXES
=============================== */

/* General Mobile Padding Fix */
@media (max-width: 768px) {

  .container,
  .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  h3, h4, h6 {
    text-align: center;
  }

  /* Breadcrumb wrap */
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 13px;
  }

  /* Form Inputs spacing */
  .form-control {
    font-size: 14px;
  }

  /* Two inputs stack properly */
  .row > .col {
    margin-bottom: 12px;
  }

  /* Payment options alignment */
  .form-check {
    margin-bottom: 10px;
  }

  /* Card input section spacing */
  .card {
    margin-bottom: 15px;
  }

  /* Expiry + CVV stack */
  .col-md-6 {
    width: 100%;
  }

  /* Order Summary Card */
  .order-summary,
  .card-body {
    padding: 15px;
  }

  /* Checkout Button */
  button[type="submit"] {
    font-size: 15px;
    padding: 12px;
  }
}

/* ============================
   CART TABLE MOBILE VIEW
=============================== */

@media (max-width: 576px) {

  /* Make table scrollable */
  .table-responsive {
    overflow-x: auto;
  }

  table {
    font-size: 13px;
  }

  /* Product image smaller */
  table img {
    width: 60px !important;
    height: 60px !important;
  }

  /* Quantity buttons smaller */
  .btn-group button {
    padding: 4px 8px;
    font-size: 13px;
  }

  /* Quantity text */
  .btn-group span {
    padding: 4px 6px;
    font-size: 13px;
  }

  /* Remove button smaller */
  svg.bi-x-circle-fill {
    width: 16px;
    height: 16px;
  }
}

/* ============================
   STATE DROPDOWN MOBILE FIX
=============================== */

@media (max-width: 768px) {

  .custom-dropdown {
    width: 100%;
  }

  .dropdown-btn {
    font-size: 14px;
    padding: 10px;
  }

  .dropdown-list {
    max-height: 180px;
    overflow-y: auto;
  }
}

/* ============================
   INPUT ICON POSITION FIX
=============================== */

.input-with-svg {
  position: relative;
}

.input-with-svg svg {
  width: 16px;
  height: 16px;
}

/* ============================
   ORDER SUMMARY TEXT ALIGN
=============================== */

@media (max-width: 576px) {

  .d-flex.justify-content-between {
    font-size: 14px;
  }

}

.info-item div {
    max-width: 100%;       /* Prevents the text from pushing the container width */
    word-wrap: break-word; /* Forces long words/links to break */
    white-space: normal;   /* Ensures text wraps naturally */
}



/* TAB UI */
.tabs span {
  cursor: pointer;
  padding: 10px 25px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.tabs .active-tab {
  border-bottom: 2px solid black;
}

/* SPEC GRID LIKE VIDEO */

.spec-col {
  flex: 1;
  min-width: 250px;
}

.offer-heading{
  font-size: 38px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
}

.service-box{
  padding: 10px 0;
}

.service-icon{
  font-size: 32px;
  color: var(--icons-color);
}

.service-title{
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
}

.service-desc{
  font-size: 14px;
  color: var(--description-color);
  max-width: 420px;
  margin-bottom: 0;
}

.service-row{
  align-items: flex-start !important;
  gap: 14px;
  height: 100%;
}

.service-icon{
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--card-bg-color);
}

.service-text{
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Contact page responsive cleanup */
@media (max-width: 767.98px) {
  .heading-contact {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .heading-contact h2,
  .answer h2,
  .questions h1,
  .offer-heading {
    font-size: 28px;
    line-height: 1.15;
  }

  .para,
  .answer p,
  .questions p,
  .form p,
  .location .text-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .form .card,
  .timing .card,
  .media.card,
  .answer .card,
  .location {
    padding: 20px 16px !important;
    border-radius: 16px;
  }

  .form h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .submit-btn {
    font-size: 17px;
    min-height: 52px;
  }

  .location {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .location .ratio {
    max-width: 100% !important;
  }

  .location .text-section {
    text-align: left;
  }

  .location .info-item {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .location .info-item i {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .questions {
    padding-inline: 8px;
  }

  .btn-question,
  .location .submit-btn {
    width: 100%;
  }

  .service-row {
    gap: 12px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
    font-size: 26px;
  }

  .service-title {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .service-desc {
    max-width: none;
    line-height: 1.55;
  }
}


/* --- Fix for Specifications (Line by Line) --- */
.spec-container p, 
.spec-container li {
    display: block; /* Forces each item to its own line */
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color); /* Adds the separator line */
    text-align:center; /* Fixes the centering issue */
    margin: 0;
    
}

/* --- Fix for Benefits (Tick Marks) --- */
.benefits-container p, 
.benefits-container li {
    position: relative;
    padding-left: 35px; /* Space for the tick */
    margin-bottom: 15px;
    text-align: center; /* Align left to make ticks look uniform */
    list-style: none;
    display: block;
     
}

/* Automatically add the tick mark icon */
.benefits-container p::before, 
.benefits-container li::before {
    content: "\f00c"; /* FontAwesome Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
 
    left: 0;
    top: 0;
    color: var(--success-color); /* Green color */
    font-size: 18px;
     text-align: center;
}

/* Fallback if you don't use FontAwesome */
/* .benefits-container p::before { content: "✔"; color: green; position: absolute; left: 0; } */

/* Standard quantity control sizing across product, cart, and checkout pages */
button[onclick*="syncProductQty"],
button[onclick*="changeQty"],
.cart-qty-btn,
.checkout-order-qty-btn {
  font-size: 13px !important;
}

input[id^="qty-"][name="quantity"],
#quantity,
.cart-qty-value,
.checkout-order-qty-value {
  font-size: 12px !important;
}

/* Keep the desktop header stable even when many nav links are added from admin. */
@media (min-width: 1200px) {
  .site-navbar-container {
    display: flex !important;
    align-items: center !important;
    max-width: 100% !important;
    gap: 24px;
  }

  .site-navbar-container .navbar-brand,
  .site-navbar-container > .d-flex {
    flex: 0 0 auto;
  }

  .site-navbar-container .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .site-navbar-container .navbar-nav {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: clamp(10px, 1.2vw, 24px);
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-navbar-container .navbar-nav::-webkit-scrollbar {
    display: none;
  }

  .site-navbar-container .navbar-nav .nav-item {
    flex: 0 0 auto !important;
    padding: 0 !important;
  }

  .site-navbar-container .navbar-nav .nav-link {
    display: block;
    min-width: max-content;
    padding: 8px 4px !important;
    white-space: nowrap !important;
    line-height: 1.15;
  }
}




/* ===========================
   FOOTER
=========================== */

.footer-section{
    width:100%;
    color:var(--white-color);
}

/* Main Container */

.footer-container{

    max-width:1320px;
    margin:auto;

    padding:60px 24px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

/* Logo */

.footer-logo{
    width:80px;
    height:auto;
    margin-bottom:18px;
    display:block;
}

.footer-description{

    color:var(--footer-text-color);
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* Column */

.footer-column h5{

    font-size:20px;
    font-weight:600;

    margin-bottom:18px;
}

/* Links */

.footer-links{

    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:var(--footer-text-color);
    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:var(--white-color);
    padding-left:6px;
}

/* Contact */

.footer-contact{

    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{

    display:flex;
    align-items:flex-start;

    gap:12px;

    margin-bottom:14px;

    color:var(--footer-text-color);
}

.footer-contact i{

    margin-top:3px;
    min-width:18px;
}

/* Bottom */

.footer-bottom{

    text-align:center;

    padding:18px 15px;
}

.footer-bottom p{

    margin:0;

    font-size:14px;

    color:var(--white-color);

    opacity:.9;
}


/* ===========================
   Large Screens
=========================== */

@media (min-width:1400px){

.footer-container{

    gap:60px;
}

}


/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

.footer-container{

    grid-template-columns:repeat(2,1fr);

    gap:35px;
}

}


/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

.footer-container{

    grid-template-columns:1fr;

    padding:45px 20px;
}

.footer-brand{

    text-align:center;
}

.footer-logo{

    margin:auto auto 18px;
}

.footer-column{

    text-align:center;
}

.footer-contact li{

    justify-content:center;
}

.footer-links a:hover{

    padding-left:0;
}

}


/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

.footer-container{

    padding:35px 16px;
}

.footer-column h5{

    font-size:18px;
}

.footer-description{

    font-size:14px;
}

.footer-bottom{

    padding:16px;
}

.footer-bottom p{

    font-size:13px;
}

}

/* ===================================================================
   MOBILE + TABLET CARD SYSTEM OVERHAUL
   Goal: a consistent, modern grid across every home-page section —
   4 cards per row on desktop, 2 cards per row on tablet/mobile — plus
   clean 2-line text truncation instead of long paragraphs on small
   screens. Placed last so it wins the cascade without needing !important
   everywhere.
   =================================================================== */

/* ---- 1. Reusable line-clamp utility ---------------------------------- */
.line-clamp-2,
.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- 2. Card polish (applies at every size, makes things feel modern) */
.product-card,
.seller,
.home-collection-card,
.content,
.testimonial-card .card-content,
.number,
.certificate,
.detail {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.seller:hover,
.home-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(var(--shadow-color-rgb), 0.12);
}

/* ---- 3. Section heading rhythm on small screens ----------------------- */
@media (max-width: 991.98px) {
  .shop-category-header,
  .productsection h2,
  .timeline-title,
  section > .container > h2,
  section > .container-fluid > h2 {
    text-align: center;
  }
}

/* ---- 4. Core product / card grids: 4 → 2 → 2 -------------------------- */
/* product-grid-home already matches this pattern (4 / 2 / 2) — kept in sync */
.product-grid-home,
.shop-grid,
.products-row-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 991.98px) {
  .product-grid-home,
  .shop-grid,
  .products-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .product-grid-home,
  .shop-grid,
  .products-row-grid {
    gap: 14px;
  }
}

/* If products are laid out with plain Bootstrap columns instead of the
   grid above (e.g. <div class="row"><div class="col-6 col-md-3">…),
   this keeps them 2-up on phones/tablets and 4-up on desktop without
   needing to touch the template markup. Safe because it only targets
   columns that are direct children of a row carrying .product-row. */
.product-row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 991.98px) {
  .product-row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .product-row > [class*="col-"] {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* ---- 5. Shop category circles: keep at 2-per-row on mobile, no more
   horizontal scroll jank (clearer, easier to tap) --------------------- */
@media (max-width: 575.98px) {
  .shop-category-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    overflow: visible !important;
    padding: 10px 8px 6px !important;
  }

  .shop-category-item {
    width: auto !important;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---- 6. Signature / seller product cards: 4 → 2 on tablet+mobile ----- */
.seller,
.product-grid-home .product-card {
  border-radius: 14px;
}

@media (max-width: 575.98px) {
  .product-main-img,
  .seller .card-img-top {
    height: 150px !important;
  }
}

/* ---- 7. Truncate long descriptive text on small screens -------------- */
@media (max-width: 767.98px) {
  .product-card p,
  .content p,
  .service-desc,
  .craving-content p,
  .card-content p,
  .detail p,
  .certificate p,
  .location p,
  .review-text,
  .about-card .text-section p,
  .text-section p,
  .promise p,
  .premium-card p,
  .heritage p,
  .success p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }

  /* Centered sections keep their centering, just clamp to 2 lines */
  .card-content p,
  .detail p,
  .certificate p,
  .success p,
  .premium-card p {
    text-align: center;
  }
}

/* ---- 8. Home "why choose us" / certificate / detail boxes: 4 → 2 ----- */
.number,
.certificate,
.detail {
  width: 100% !important;
  height: auto !important;
  min-height: 180px;
}

.number-grid,
.certificate-grid,
.detail-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 991.98px) {
  .number-grid,
  .certificate-grid,
  .detail-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .certificate {
    margin-left: 0 !important;
  }
}

/* Bootstrap-column fallback for the same boxes, in case markup uses
   row/col instead of the grid classes above. */
@media (max-width: 991.98px) {
  .why-choose-row > [class*="col-"],
  .certificate-row > [class*="col-"],
  .detail-row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ---- 9. Testimonials: stack cleanly on mobile instead of 3-across ---- */
@media (max-width: 991.98px) {
  .testimonial-slide {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 420px;
    margin: 0;
  }
}

/* ---- 10. Home collection / seller product grid: force 2-up cleanly -- */
@media (max-width: 991.98px) and (min-width: 576px) {
  .home-collection-card,
  .seller {
    max-width: 100%;
  }
}

/* ---- 11. Tighten section spacing on mobile so cards don't feel lost - */
@media (max-width: 575.98px) {
  .productsection,
  .testimonial-section,
  .craving-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .shop-category-header h2,
  .heading-contact h2,
  .questions h1,
  .offer-heading {
    font-size: 24px;
  }
}

/* ===================================================================
   MOBILE PRODUCT CARD — COMPACT REBUILD
   Fixes: oversized empty image box, badge overlapping the wishlist
   heart, oversized title/description eating vertical space, the
   rating row wrapping "No reviews" onto its own line, and price
   getting pushed below the fold. Targets both the generic
   .product-card (shop grid) and the home .product-grid-home cards.
   =================================================================== */

@media (max-width: 575.98px) {

  /* ---- Card shell: tighter, no wasted padding -------------------- */
  .product-card,
  .product-grid-home .product-card {
    border-radius: 12px;
    padding: 0;
  }

  .product-card .card-body,
  .product-grid-home .card-body {
    padding: 5px !important;
  }

  /* ---- Image: fixed, compact, no dead space ---------------------- */
  .product-card .img-box,
  .product-grid-home .img-box,
  .product-card .home-collection-image-wrap {
    height: 100px !important;
    min-height: 100px !important;
    padding: 10px !important;
    border-radius: 12px !important;
  }
  .signature {
    color: var(--button-color);
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    }
    h1{
        font-size: 22px;
        font-weight: 600;
        text-align: center;
    }
    button[type="submit"] {
        font-size: 11px;
        padding: 10px;
    }
    .py-3 {
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important;
    }
    .zip-checker-btn {
        min-height: 30px;
        padding: 0 22px;
        border: none;
        border-radius: 12px;
        background: var(--button-color);
        color: var(--white-color);
        font-weight: 600;
    }
    .zip-checker-input {
        flex: 1;
        min-height: 30px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 0 16px;
        background: var(--white-color);
        color: var(--text-color);
        font-size: 10px;
        outline: none;
    }
    .mt-4 {
        margin-top: 0.5rem !important;
    }
    form button[type="button"], form input#quantity {
        height: 27px;
    }
    .mb-4 {
        margin-bottom: 0.5rem !important;
    }
    h4{
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }
    .footer-links li {
        margin-bottom: 12px;
        font-size: 13px;
    }
    .footer-container {
        gap: 20px;
    }
    .footer-column h5{

        margin-bottom: 5px;
    }
    .premium-card h2 {
        font-weight: 700;
        font-style: Bold;
        font-size: 20px;
        color: var(--white-color);
        line-height: 100%;
        letter-spacing: 0px;
    }
    .premium-card p {
        color: var(--white-color);
        font-weight: 400;
        font-size: 14px;
    }
    p {
        margin-bottom: 0.5rem;
    }
    h4{
        line-height: 1.5;
        font-size: 14px;
    }
    .product-area .filter-top-bar {
        padding: 0.5rem 0;
        gap: 6px !important;
    }
  .product-card .card-img-top,
  .product-grid-home .card-img-top,
  .product-card .signature-card-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
  }

  /* ---- Badge: compact but never truncates "Best Seller" ---------- */
  .product-badge {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 9px;
    letter-spacing: 0.01em;
    border-radius: 5px;
    white-space: nowrap;
  }

  .wishlist-icon {
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
  }

  .wishlist-icon i {
    font-size: 12px;
  }

  /* ---- Title: TWO lines, reserved height so cards line up --------- */
  .product-name,
  .product-card h6,
  .product-card h5,
  .product-card .card-title,
  .product-grid-home h6 {
    font-size: 12.5px !important;
    font-weight: 600;
    line-height: 1.3;
    margin: 8px 0 4px;
    min-height: 1em;         /* reserves space for 2 lines even if text is short */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  /* ---- Description: reliable 2-line clamp, wider selector net ----- */
  .product-card p,
  .product-card .card-body > p,
  .product-card .product-desc,
  .product-card .card-text {
    font-size: 11px !important;
    line-height: 1.35;
    margin-bottom: 6px !important;
    min-height: 2.5em;         /* reserves 2 lines of space so short text doesn't collapse the card */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  /* ---- Rating row: everything shrinks together so it fits one line */
  .rating,
  .stars,
  .product-card .rating-row,
  .product-card [class*="rating"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    font-size: 10px;
    gap: 1px !important;
    overflow: hidden;
    justify-content: center;
  }

  .stars i,
  .rating i,
  .product-card .rating i,
  .product-card i[class*="star"] {
    font-size: 6px !important;
    margin: 0 !important;
    padding: 4px !important;
  }

  /* The "No reviews" / count text: shrink first, then fall back to
     just hiding the word so the star icons themselves never get cut */
  .product-card .reviews,
  .product-card .rating + span,
  .product-card .text-muted.small,
  .product-card .rating ~ span {
    font-size: 12px !important;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .price span {
        font-weight: bold;
        color: var(--icons-color);
        font-size: 11px;
        white-space: nowrap;
    }
  .short-description{
    font-size: 12px !important;
    line-height: 1.4;
    margin-bottom: 6px !important;
    min-height: 2.5em;         /* reserves 2 lines of space so short text doesn't collapse the card */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  /* ---- Price: compact, single line ---------------------------------*/
  .product-card .price,
  .home-collection-card .price {
    font-size: 13px !important;
    gap: 5px !important;
    min-height: auto !important;
    margin-top: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .product-card .old-price,
  .product-card .mrp-price {
    font-size: 11px !important;
  }

  .product-card .new-price,
  .product-card .current-price {
    font-size: 15px !important;
  }
  .mt-auto{
    margin-top: 0 !important;
  }

  /* Hide a stray unit separator ("/") if the unit text after it is
     empty — common when a product has no unit set. Purely cosmetic;
     if a real unit like "/kg" prints, it still shows normally. */
  .product-card .price > span:last-child:empty,
  .product-card .price > small:last-child:empty {
    display: none;
  }

  /* ---- Quantity +/- control: compact, thumb-friendly -------------- */
  .qty-controls,
  .qty-box {
    padding: 3px 8px !important;
    gap: 8px !important;
    height: 32px;
  }

  .qty-controls button,
  form button[type="button"] {
    width: 26px !important;
    /* height: 26px !important; */
    font-size: 14px !important;
  }

  form input#quantity,
  input[id^="qty-"][name="quantity"] {
    width: 32px !important;
    font-size: 12px !important;
  }

  /* ---- Buy / cart / wishlist buttons: compact but tap-friendly ---- */
  .buy-btn,
  .btn-wishlist,
  .cart-btn,
  .whatsapp-btn,
  .app-btn {
    height: 38px !important;
    font-size: 13px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
  }

  .btn-product {
    height: 44px;
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Extra-narrow phones (below ~360px card width): drop the review text
   entirely rather than let it clip mid-word — the stars alone still
   communicate the rating. */
@media (max-width: 359.98px) {
  .product-card .reviews,
  .product-card .rating + span,
  .product-card .rating ~ span {
    display: none !important;
  }
}



/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */

.testimonial-section {
    width: 100%;
    padding: 50px 20px;
    overflow: hidden;
}

.testimonial-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}


/* =========================================================
   MAIN CAROUSEL
   ========================================================= */

.testimonial-carousel {
    position: relative;

    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 20px 55px;

    box-sizing: border-box;
}


/* =========================================================
   VIEWPORT
   ========================================================= */

.testimonial-viewport {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: hidden;

    flex: 1 1 auto;
}


/* =========================================================
   MOVING TRACK
   ========================================================= */

.testimonial-track {
    display: flex;

    width: 100%;

    margin: 0;
    padding: 0;

    transition: transform 0.6s ease-in-out;

    will-change: transform;

    box-sizing: border-box;
}


/* =========================================================
   EACH SLIDE
   ========================================================= */

/*
   DEFAULT
   Desktop = 4 cards
*/

.testimonial-slide {
    flex: 0 0 25% !important;
    width: 25% !important;
    max-width: 25% !important;

    padding: 12px;

    box-sizing: border-box;

    display: flex;

    justify-content: center;
    align-items: stretch;

    min-width: 0;
}


/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

.testimonial-card {
    position: relative;

    width: 100%;
    max-width: 330px;

    min-height: 300px;
    height: 310px;

    margin: 0 auto;

    padding: 18px 20px;

    background: #ffffff;

    border-radius: 25px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   MAROON BACKGROUND SHAPE
   ========================================================= */

.testimonial-card::before {
    content: '';

    position: absolute;

    top: 10px;
    left: -8px;
    right: 8px;
    bottom: -8px;

    background: var(--button-color);

    border-radius:
        30% 70% 70% 30%
        /
        30% 30% 70% 70%;

    z-index: -1;
}


/* =========================================================
   AVATAR
   ========================================================= */

.avatar {
    position: relative;

    width: 70px;
    height: 70px;

    margin-top: 2px;
    margin-bottom: 10px;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-shrink: 0;

    z-index: 5;
}


.avatar img {
    width: 66px;
    height: 66px;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #ffffff;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.card-content {
    position: relative;

    width: 100%;

    z-index: 5;

    text-align: center;
}


.card-content h6 {
    margin: 4px 0 9px;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 600;

    color: #292d32;
}


/* =========================================================
   QUOTE ICON
   ========================================================= */

.quote-icon {
    display: block;

    margin-bottom: 8px;

    color: var(--button-color);

    font-size: 20px;

    line-height: 1;
}


/* =========================================================
   FEEDBACK
   ========================================================= */

.card-content p {
    width: 90%;

    margin: 0 auto;

    font-size: 14px;

    line-height: 1.6;

    color: #555;

    text-align: center;

    display: -webkit-box;

    -webkit-line-clamp: 5;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PREVIOUS / NEXT BUTTONS
   ========================================================= */

.testimonial-control {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: var(--button-color);

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 20;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.testimonial-control:hover {
    background: #000000;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================================
   BUTTON ACTIVE
   ========================================================= */

.testimonial-control:active {
    transform:
        translateY(-50%)
        scale(0.95);
}


/* =========================================================
   BUTTON POSITION
   ========================================================= */

.testimonial-control-prev {
    left: 5px;
}

.testimonial-control-next {
    right: 5px;
}


.testimonial-control i {
    font-size: 16px;
}


/* =========================================================
   DISABLED BUTTON
   ========================================================= */

.testimonial-control:disabled {
    opacity: 0.4;

    cursor: not-allowed;
}


/* =========================================================
   LARGE DESKTOP
   1200px+
   
   4 CARDS
   ========================================================= */

@media (min-width: 1200px) {

    .testimonial-slide {
        flex: 0 0 25% !important;
        width: 25% !important;
        max-width: 25% !important;
    }

}


/* =========================================================
   LAPTOP
   992px - 1199px
   
   4 CARDS
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .testimonial-carousel {
        padding-left: 50px;
        padding-right: 50px;
    }


    .testimonial-slide {
        flex: 0 0 25% !important;
        width: 25% !important;
        max-width: 25% !important;

        padding: 10px;
    }


    .testimonial-card {
        max-width: 280px;

        height: 300px;
        min-height: 300px;

        padding: 17px 15px;
    }


    .avatar {
        width: 66px;
        height: 66px;
    }


    .avatar img {
        width: 62px;
        height: 62px;
    }


    .card-content h6 {
        font-size: 16px;
    }


    .card-content p {
        font-size: 13px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
   
   2 CARDS
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .testimonial-carousel {
        padding-left: 50px;
        padding-right: 50px;
    }


    .testimonial-slide {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;

        padding: 10px;
    }


    .testimonial-card {
        max-width: 330px;

        height: 300px;
        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
   Below 768px
   
   1 CARD
   ========================================================= */

@media (max-width: 767.98px) {

    .testimonial-section {
        padding: 30px 5px;
    }


    .testimonial-container {
        width: 100%;
    }


    .testimonial-carousel {
        width: 100%;

        padding-left: 42px;
        padding-right: 42px;
    }


    .testimonial-viewport {
        width: 100%;

        overflow: hidden;
    }


    .testimonial-track {
        width: 100%;
    }


    .testimonial-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;

        padding: 10px 5px;
    }


    .testimonial-card {
        width: 100%;

        max-width: 360px;

        height: 300px;
        min-height: 300px;

        margin: 0 auto;

        padding: 18px 20px;
    }


    /* Smaller avatar */

    .avatar {
        width: 68px;
        height: 68px;

        margin-bottom: 10px;
    }


    .avatar img {
        width: 64px;
        height: 64px;
    }


    .card-content h6 {
        font-size: 17px;

        margin-bottom: 8px;
    }


    .quote-icon {
        font-size: 19px;

        margin-bottom: 7px;
    }


    .card-content p {
        width: 92%;

        font-size: 13.5px;

        line-height: 1.6;
    }


    /* Mobile buttons */

    .testimonial-control {
        width: 36px;
        height: 36px;
    }


    .testimonial-control-prev {
        left: 2px;
    }


    .testimonial-control-next {
        right: 2px;
    }


    .testimonial-control i {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .testimonial-section {
        padding-left: 3px;
        padding-right: 3px;
    }


    .testimonial-carousel {
        padding-left: 38px;
        padding-right: 38px;
    }


    .testimonial-slide {
        padding-left: 3px;
        padding-right: 3px;
    }


    .testimonial-card {
        max-width: 350px;

        height: 290px;
        min-height: 290px;

        padding: 16px 18px;
    }


    .avatar {
        width: 64px;
        height: 64px;

        margin-bottom: 9px;
    }


    .avatar img {
        width: 60px;
        height: 60px;
    }


    .card-content h6 {
        font-size: 16px;
    }


    .card-content p {
        font-size: 13px;

        line-height: 1.55;
    }


    .testimonial-control {
        width: 34px;
        height: 34px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .testimonial-carousel {
        padding-left: 35px;
        padding-right: 35px;
    }


    .testimonial-card {
        padding: 16px 12px;
    }


    .card-content p {
        font-size: 12px;
    }

}


/* =========================================================
   PREVENT HORIZONTAL PAGE SCROLL
   ========================================================= */

html,
body {
    overflow-x: hidden;
}


.testimonial-section,
.testimonial-container,
.testimonial-carousel,
.testimonial-viewport {
    overflow-x: hidden;
}