
.button-container {
  display: flex;
  justify-content: center;  /* Centers the button horizontally */
  align-items: center;  /* Vertically center if height is defined */
  margin: 0 auto;  /* Optional: to center the container itself */
  width: fit-content;  /* Ensures the container is as wide as the content */
}




.index-h1-box {
    background: #f7f8f9;   /* very light grey, almost white */
    border-radius: 14px;
    padding: 18px 24px;
    margin: 20px auto 15px;
    max-width: 980px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03); /* very soft */
}

.index-h1 {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.index-h1 span {
    color: #66000F; /* brand green */
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .index-h1-box {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .index-h1 {
        font-size: 20px;
        line-height: 1.4;
    }
}


.featured-heading {
    background-color: #fafafa;   /* very light gray */
    padding: 10px 20px;          /* less padding for shorter height */
    text-align: left;            /* left align */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: Georgia, "Times New Roman", serif;  /* Elegant serif font */

    display: flex;               /* use flexbox */
    align-items: flex-end;       /* push text to bottom */
    min-height: 50px;            /* adjust as needed */
}

.featured-heading span {
    font-size: 15px;
    font-weight: 200;
    color: #000;                 /* black text */
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .featured-heading {
        padding: 8px 20px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        min-height: 45px;        /* slightly smaller on mobile */
    }

    .featured-heading span {
        font-size: 16px;
    }
}

.featured-heading {
    background-color: #fafafa;   /* very light gray */
    padding: 10px 20px;          /* less padding for shorter height */
    text-align: left;            /* left align */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: Georgia, "Times New Roman", serif;  /* Elegant serif font */

    display: flex;               /* use flexbox */
    align-items: flex-end;       /* push text to bottom */
    min-height: 50px;            /* adjust as needed */
}

.featured-heading span {
    font-size: 15px;
    font-weight: 200;
    color: #000;                 /* black text */
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .featured-heading {
        padding: 8px 20px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        min-height: 45px;        /* slightly smaller on mobile */
    }

    .featured-heading span {
        font-size: 16px;
    }
}
/* ===== Testimonial Heading ===== */
.testimonial-heading {
    text-align: left;          
    padding-left: 20px;        
    margin-bottom: 10px;       /* reduced gap */
}

.testimonial-heading span {
    font-size: 22px;
    font-weight: 600;
    color: #66000F;
    display: inline-block;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 4px;       /* reduced underline padding */
}

.testimonial-heading span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;                   
    width: 50px;
    height: 3px;
    background-color: #66000F;
    border-radius: 2px;
    opacity: 0.6;
}

/* ===== Testimonial Slider ===== */
.testimonial-slider {
    position: relative;
    padding: 15px 15px;        /* reduced top/bottom padding */
    background: #fcfcfc;
    overflow: hidden;
}

/* Slider track */
.testimonial-track {
    display: flex;
    gap: 15px;                  /* slightly smaller gap between cards */
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;        /* smaller bottom padding */
    scroll-snap-type: x mandatory;
}

/* Testimonial card */
.testimonial-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;              /* reduced padding */
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
}



#productPopupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#productPopupOverlay.active {
  display: flex;
}

#productPopupContainer {
  background: white;
  padding: 40px 20px 20px 20px;
  max-width: 800px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popupCloseBtn {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 34px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  line-height: 1;
}




 .view-icons {
  display: flex;
  justify-content: center; /* Horizontal centering */
  margin: 20px auto; /* Vertical spacing + horizontal centering */
  width: fit-content; /* Contain width to content */
  gap: 12px; /* Space between buttons */
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Optional: Add responsive adjustments */
@media (max-width: 767px) {
  .view-icons {
    gap: 8px;
    padding: 8px 12px;
  }
}

.grid-icon {
  display: flex;
  gap: 3px;
}

.grid-icon span {
  display: block;
  width: 8px;
  height: 15px;
  background-color: #FFD7DD;
  border-radius: 2px;
}

/* Active state */
.view-icons button.active .grid-icon span {
  background-color: #66000F;
}

.button-container {
    text-align: center;
    margin-top: 0px;
    clear: both;
    width: 100%;
    position: relative;
    z-index: 2;
}

button {
    background-color: #F8941D; /* Orange */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    position: relative; /* Needed for positioning the spinner inside the button */
}



button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

    /* Simple CSS for the cart icon and count */
	
  
    /* Push content down to make space for the fixed bar */
    body {
        padding-top: 30px; /* Adjust based on height of your top-bar */
    }

.fixed-top-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Lower than navbar */
    background-color: #198754;
    transition: top 0.3s ease-in-out;
}
.navbar {
  z-index: 1010;
  position: relative;
}

    /* Mobile-specific fixed header */
    @media (max-width: 767px) {
        #mobileHeader {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 9999;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional */
        }
    }
	
	

.scroll-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  z-index: 1020;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  padding: 0px;
  overflow: visible; /* allow dropdowns to overflow out */
}

.scroll-menu.shrink {
  padding: 0px 0px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 13px;
}

/* Ensure dropdowns are scrollable if too tall */
.scroll-menu .dropdown-menu {
  max-height: 300px; /* or whatever height fits your design */
  overflow-y: auto;
  position: absolute; /* ensure it's out of document flow */
  z-index: 1050;
}

@media (max-width: 576px) {
  .scroll-menu {
    width: 95%;         /* or 400px or whatever you prefer */
    margin: 0 auto;      /* center it */
    left: 0;
    right: 0;
  }
}

.scroll-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  z-index: 1020;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  padding: 0px;
  overflow: visible; /* allow dropdowns to overflow out */
}

.scroll-menu.shrink {
  padding: 0px 0px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 13px;
}

/* Ensure dropdowns are scrollable if too tall */
.scroll-menu .dropdown-menu {
  max-height: 300px; /* or whatever height fits your design */
  overflow-y: auto;
  position: absolute; /* ensure it's out of document flow */
  z-index: 1050;
}

@media (max-width: 576px) {
  .scroll-menu {
    width: 95%;         /* or 400px or whatever you prefer */
    margin: 0 auto;      /* center it */
    left: 0;
    right: 0;
  }
}


.featured-heading {
    background-color: #fafafa;   /* very light gray */
    padding: 10px 20px;          /* less padding for shorter height */
    text-align: left;            /* left align */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: Georgia, "Times New Roman", serif;  /* Elegant serif font */

    display: flex;               /* use flexbox */
    align-items: flex-end;       /* push text to bottom */
    min-height: 50px;            /* adjust as needed */
}

.featured-heading span {
    font-size: 15px;
    font-weight: 200;
    color: #000;                 /* black text */
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .featured-heading {
        padding: 8px 20px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        min-height: 45px;        /* slightly smaller on mobile */
    }

    .featured-heading span {
        font-size: 16px;
    }
}
/* ===== Testimonial Heading ===== */
.testimonial-heading {
    text-align: left;          
    padding-left: 20px;        
    margin-bottom: 10px;       /* reduced gap */
}

.testimonial-heading span {
    font-size: 22px;
    font-weight: 600;
    color: #66000F;
    display: inline-block;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 4px;       /* reduced underline padding */
}

.testimonial-heading span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;                   
    width: 50px;
    height: 3px;
    background-color: #66000F;
    border-radius: 2px;
    opacity: 0.6;
}

/* ===== Testimonial Slider ===== */
.testimonial-slider {
    position: relative;
    padding: 15px 15px;        /* reduced top/bottom padding */
    background: #fcfcfc;
    overflow: hidden;
}

/* Slider track */
.testimonial-track {
    display: flex;
    gap: 15px;                  /* slightly smaller gap between cards */
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;        /* smaller bottom padding */
    scroll-snap-type: x mandatory;
}

/* Testimonial card */
.testimonial-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;              /* reduced padding */
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
}



    /* Simple CSS for the cart icon and count */
	
  
    /* Push content down to make space for the fixed bar */
    body {
        padding-top: 40px; /* Adjust based on height of your top-bar */
    }

.fixed-top-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Lower than navbar */
    background-color: #198754;
    transition: top 0.3s ease-in-out;
}
.navbar {
  z-index: 1010;
  position: relative;
}

    /* Mobile-specific fixed header */
    @media (max-width: 767px) {
        #mobileHeader {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 9999;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional */
        }
    }
	
	
