/* New Css */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.bread-container {
  max-width: 1200px;
  margin: auto;
}

.bd-detailed {
  margin-top:90px;
}

.cust-indicator {
  margin-bottom: 19px !important;
}

#checkout-cart {
  padding-top:150px;
}

/* #content {
  padding-top:56px;
} */

.p-detailed-thumb {
  border-radius: 4px;
}

.small-thumb {
  width: 90px;
  height: auto;
}


/* Product detail page styling --------------------------------------------------------------------------------*/

.Product-Container {
    padding-top: 40px;
    background-color: #FAFAFA;
}

.Related-Products h3 {
    font-family: archivo;
    font-weight: 600;
    font-size: 32px;
    color: #291C2B;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0px;
}

.Related-Products-Title {
    font-family: archivo;
    font-weight: 600;
    font-size: 32px;
    color: #7E1416;
}

.cust-review-icon {
  width:22px;
}


.breadcrumb-p-detailed > breadcrumb-detailed > a {
text-decoration: none;
    color: #363636;
    font-weight: 600;
    font-size: 16px;
}

/* breadcrumb styling */
.Product-Herbal {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    gap: 14px;
    padding-left: 36px;
}
.Product-Herbal-Title {
    font-weight: 600;
    font-family: archivo;
    font-size: 16px;
    color: #2D3134;
}
.Product-Herbal-Page {
    font-family: archivo;
    font-weight: 600;
    font-size: 16px;
    color: #7E1416;
}


/* Related Products */

.Related-Products {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Related-Products h3 {
    font-family: archivo;
    font-weight: 600;
    font-size: 32px;
    color: #291C2B;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0px;
}

.Related-Products-Title {
    font-family: archivo;
    font-weight: 600;
    font-size: 32px;
    color: #7E1416;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 86px;
    padding-right: 86px;
}

/* Product Card */
.product-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 5px 5px;
    max-width: 242px;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Product Image */
.product-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
    color: #777;
}

.wishlist-btn.active svg {
    color: #7E1416;
    fill: #7E1416;
}

/* Product Info */
.product-info {
    padding-left: 10px;
    padding-right: 10px;
}

.product-info h4 {
    font-size: 16px;
    color: #333 !important;
    font-family: 'archivo', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info h3 {
    font-family: archivo;
    font-weight: 600;
    font-size: 16px;
    color: #291C2B;
    margin-top: 16px;
    margin-bottom: 6px;
    text-align: left;
}

/* Price and Rating */
.product-price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-weight: 600;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    color: #FFD700;
    margin-right: 5px;
}

.rating-text {
    font-size: 14px;
    color: #777;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #2D3134;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.add-to-cart-btn.active {
    background-color: #7E1416;
    color: #fff;
    border-color: #7E1416;
}

.add-to-cart-btn.active svg {
    color: #fff;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: none;
    border: none;
    width: 40px;
    height: 38px;
    font-size: 18px;
    cursor: pointer;
    /* background-color: #F5F5F5; */
}

.quantity-value {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid #7E1416;
    color: #7E1416;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    transition: all 0.3s ease;
}

.view-more-btn svg {
    width: 16px;
    height: 16px;
    transform: rotate(1deg);
}

.view-more-btn:hover {
    background-color: #7E141610;
    transform: translateY(-5px);
}

.Related-Products-Button {
    display: flex;
    justify-content: center;
}

.Related-Products-Button a {
    color: #7E1416;
    text-decoration: none;
}

.Related-Products-Image {
    position: absolute;
    top: 0;
    right: -40px;
    width: 129px;
    height: 163px;
}

.Related-Products-Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Related-Products {
    position: relative;
    margin-top: 60px;
    padding-bottom: 60px;
}

.Related-Products-Tree {
    position: absolute;
    bottom: 0;
    left: -41px;
    max-width: 120px;
    height: 214px;
}

.Related-Products-Tree img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End Related Products */


/* -------------------------------------------------------------------- */

/* Product-Images */

.p-detailed {
  margin-bottom: 0px;
}

.Product-Images {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    margin-top: 40px;
    /* padding-left: 36px; */
    padding-right: 36px;
}

.Product-Images-Description {
    max-width: 551px;
    position: relative;
}

.Herbal-Tree {
    position: absolute;
    top: 80px;
    right: -35px;
    width: 69px;
    height: 123px;
    z-index: 1;
}

.Herbal-Tree img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.Product-Images-Button {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}


.Product-Images-Add {
    border-radius: 6px;
    border: 1px solid #7E1416;
    color: #7E1416;
    font-family: archivo;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 16px 56px;
    background-color: transparent;
    cursor: pointer;
    width: 267px;
    height: 56px;
}

.Product-Images-Add:hover {
    background-color: #7E141610;
}

.Product-Images-Buy {
    border-radius: 6px;
    border: 1px solid #7E1416;
    color: white;
    font-family: archivo;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 16px 31px;
    background-color: #7E1416;
    cursor: pointer;
    width: 154px;
    height: 56px;
}

.Product-Images-Buy:hover {
    background-color: #4d0809;
    color:#fff;
}

.Product-Images-Size {
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: #2D3134;
}

.Product-Images-Value {
    display: flex;
    gap: 10px;
}

.Product-Images-Quantitiy {
    margin-top: 20px;
}

.Product-Images-Quantitiy p {
    margin-bottom: 5px;
}

.Product-Images-Quantitiy select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.Product-Images-Selected {
    position: relative;
}

.Product-Images-Selected::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("PanchnadaImages/selectoption.svg");
    width: 11px;
    height: 6px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}


.Product-Images-Size p {
    margin-bottom: 5px;
}

.Product-Image-Container {
    border-radius: 10px;
    border: 1px solid #2D31344D;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
}

.Product-Image-Container:hover {
    background-color: #7E14160D;
    border: 1px solid #7E1416;
}

.Product-Images-Dil {
    background-color: #7E14160D;
    border-radius: 50%;
    cursor: pointer;
}

.Product-Images-Options {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #2D31344D;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    background: transparent;
    cursor: pointer;
}

.Product-Images-Options:focus {
    outline: none;
}

.Product-Images-Tag {
    color: #2D313466;
    font-family: archivo;
    font-weight: 400;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.Product-Images-Rate {
    color: #2D3134;
    font-family: archivo;
    font-weight: 600;
    font-size: 24px;
    margin: 0px;
}

.Product-Images-Rate .Prduct-Images-Rupees {
    text-decoration: line-through;
    color: #2D313480;
    font-weight: 500;
    font-size: 24px;
    margin-left: 12px;
}

.Product-Images-Off {
    color: #2D3134;
    margin-left: 12px;
    font-size: 16px;
    font-weight: 400;
}

.Prduct-Images-Title h1 {
    font-family: archivo;
    font-weight: 600;
    font-size: 32px;
    color: #2D3134;
}

.Product-Images-View {
    max-width: 536px;
    display: flex;
    gap: 10px;
    position: relative;
}

.Product-Images-Shampoo {
    width: 100%;
    height: 440px;
    border-radius: 4px;
}

.Product-Images-Shampoo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.Product-Images-Clips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 112px;
}

.Product-Images-Clips img {
    width: 100%;
}

.Product-Images-Container {
    width: 112px;
    height: 102px;
}

.Product-Images-Rating {
    display: flex;
    margin-top: 10px;
    margin-bottom: 8px;
}

.Product-Images-Rating-Number {
    font-family: archivo;
    font-weight: 500;
    font-size: 14px;
    color: #2D313499;
    border-left: 1px solid #2D313480;
    border-right: 1px solid #2D313480;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: 16px;
}

.Product-Images-Rating-Desc {
    font-family: archivo;
    font-weight: 500;
    font-size: 14px;
    text-decoration: underline;
    color: #2D313499;
}

.Product-Images-Rating-Value {
    font-family: archivo;
    font-weight: 500;
    font-size: 14px;
    color: #2D313499;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product-Images-Rating-Value img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.Product-Images-Rating-Star {
    margin-top: 20px;
    padding-top: 16px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #7E14160A;
    border-radius: 6px;
    color: #7E1416;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.Product-Images-Delivery {
    margin-top: 20px;
}

.Product-Images-Delivery button {
    width: 136px;
    height: 56px;
    background-color: #7E1416;
    border: none;
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: white;
}

.Product-Images-Delivery button:hover {
    background-color: #4d0809;
}

.Product-Images-Delivery p {
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: #2D3134;
}

.Product-Images-Delivery input {
    width: 399px;
    border: 1px solid #2D31344D;
    height: 56px;
}

.Product-Images-Delivery input:focus {
    outline: none;
    box-shadow: none;
}

.Product-Images-Stock {
    display: flex;
    gap: 17px;
    margin-top: 30px;
}

.Product-Images-Stock h4 {
    font-family: archivo;
    font-weight: 400;
    font-size: 14px;
    color: #717171;
}

.Product-Images-House {
    background-color: #F4F4F4;
    border-radius: 11px;
    padding: 24px;
}

.Product-Images-Truck {
    background-color: #F4F4F4;
    border-radius: 11px;
    padding: 24px;
}

.Product-Images-Tick {
    background-color: #F4F4F4;
    border-radius: 11px;
    padding: 24px;
}

.Product-Oil-Image {
    max-width: 173px;
    height: 309px;
    position: absolute;
    bottom: 0px;
    left: -75px;
}

.Product-Oil-Image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* End Product Images */

/* -------------------------------------------------------------------------- */

/* Product Review */

.Product-Review {
    max-width: 1200px;
    margin-top: 40px;
    margin: auto;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    border-radius: 10px;
}

.Product-Review-Title {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 20px;
    margin-bottom: 20px;
}

.Product-Review-Description {
    font-family: 'archivo';
    font-weight: 400;
    font-size: 16px;
    color: #2D3134;
}

.Product-Review-Description a {
    color: #2D3134;
}

.Product-Review-No {
    font-family: archivo;
    font-weight: 600;
    font-size: 16px;
    color: #7E1416;
    border-bottom: 2px solid #7E1416;
    padding-bottom: 10px;
}

.Product-Review-Data {
    border-bottom: 1px solid #2D31341A;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.Product-Review-Data h3 {
    font-family: archivo;
    font-weight: 600;
    font-size: 18px;
    color: #2D3134;
    margin-bottom: 16px;
}

.Product-Review-Data p {
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: #2D3134;

}

.Product-Review-Star {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.Product-Review-Link {
    display: flex;
    justify-content: center;
}

.Product-Review-Link a {
    text-decoration: none;
    color: #7E1416;
    font-weight: 600;
    font-size: 16px;
    font-family: archivo;
}

.Product-Review-button {
    background-color: #7E1416;
    width: 105px;
    height: 44px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    font-family: archivo;
    color: white;
    margin-top: 20px;
}

.Product-Review-button:hover {
    background-color: #4d0809;
}

.Product-Review-Form svg {
    margin-right: 10px;
}

.Product-Review h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.Product-Review-Form form h3 {
    margin-top: 10px;
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: #2D3134;
}

.Product-Review-Form-input {
    font-weight: 400;
    font-family: archivo;
    font-size: 16px;
    color: #2D313466;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 14px;
    padding-right: 14px;
    border: 1px solid #2D313433;
    margin-bottom: 10px;
}

.Product-Review-Form input::placeholder {
    color: #2D313466;
    font-weight: 400;
    font-size: 16px;
    font-family: archivo;
}

.Product-Review-Form input:focus {
    outline: none;
    box-shadow: none;
}

.Product-Review-Form textarea {
    height: 110px;
    border: 1px solid #2D313433;
    resize: none;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 14px;
    padding-right: 14px;
    font-family: archivo;
    font-weight: 400;
    font-size: 16px;
    color: #2D313466;
}

.Product-Review-Form textarea:focus {
    outline: none;
    box-shadow: none;
}

.Product-Review-Form textarea::placeholder {
    color: #2D313466;
    font-weight: 400;
    font-size: 16px;
    font-family: archivo;
}

/* End Product Review */





/* Product detail page ends here --------------------------------------------------------------------------------*/




/* Category page wishlist */
.row .wishlist-btn {
  top:-9px;
  right: 18px;
}

/* Home page product wishlist */
.product-grid .wishlist-btn {
  top: 10px;
    right: 10px;
}

/* Category section font styling */
.list-group-item {
  font-family: 'archivo';
  font-size:16px;
}


.cust-detailed-page-thumb {
  position: relative;
}

.product-label{
  position: absolute;
    top: 6%;
    left: 7%;
    background-color: #fff;
    padding: 8px 15px;
    font-size: 10px;
    border-radius: 20px;
}



/* --------------------------------------------------------------------------- */

/* Responsive  */

@media (max-width: 992px) {

    .Product-Images {
        flex-direction: column;
    }

    .product-grid {
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(3, 1fr);
    }

    .Related-Products-Image {
        top: 0;
        right: 0px;
        max-width: 100px;
        height: 140px;
    }

    .Related-Products-Tree {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100px;
        height: 130px;
    }

    .Product-Images-View {
        max-width: 100%;
    }

    .Product-Images-Description {
        max-width: 100%;
    }

    .Product-Oil-Image {
        display: none;
    }
}

@media (max-width: 768px) {

    .Product-Images {
        flex-direction: column;
        padding-left:33px;
        padding-right: 33px;
    }

    .Related-Products {
      padding-left: 33px;
    }

    .Related-Products-Image {
        top: 0;
        right: 0px;
        top: 0;
        right: 0px;
    }

    .Product-Images-View {
        max-width: 100%;
    }

    .Product-Images-Description {
        max-width: 100%;
    }

    .Product-Images-Dil {
        padding: 15px;
    }

    .product-grid {
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(3, 1fr);
    }


    .Related-Products-Tree {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 97px;
        height: 120px;
    }

    .Product-Oil-Image {
        display: none;
    }
}

@media (max-width: 576px) {
    .Product-Images-Stock {
        flex-wrap: wrap;
    }

    .Related-Products-Image {
        top: 0;
        right: 0px;
    }

    .Product-Images-Description .Prduct-Images-Title div {
        align-items: center;
    }

    .Product-Images-Dil {
        padding: 15px;
    }

    .product-grid {
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .Related-Products-Image {
        max-width: 110px;
        height: 130px;
        top: 0;
        right: 0px;
    }

    .Related-Products-Tree {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100px;
        height: 130px;
    }

    .Product-Oil-Image {
        display: none;
    }
}

@media (max-width: 480px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .Product-Images-Stock {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .Product-Images-Stock div {
        gap: 5px;
    }

    .Product-Images-Stock .Product-Images-Truck {
        padding: 10px;
        width: 45px;
        height: 44px;
    }

    .Product-Images-Stock .Product-Images-House {
        padding: 10px;
        width: 45px;
        height: 44px;
    }

    .Product-Images-Stock .Product-Images-Tick {
        padding: 10px;
        width: 45px;
        height: 44px;
    }

    .Product-Images-View {
        flex-direction: column-reverse;
    }

    .Product-Images-Clips {
        flex-direction: row;
        width: 100%;
    }

    .Product-Images-Add {
        padding: 0px;
    }

    .Product-Images-Buy {
        padding: 0px;
    }

    .Product-Images-Delivery div {
        flex-direction: column;
    }

    .Product-Images input {
        width: 100%;
        margin-bottom: 10px;
    }

    .Product-Images-Description .Prduct-Images-Title div {
        align-items: center;
    }

    .Product-Images-Description h2 {
        font-size: 26px;
    }

    .Product-Images-Dil {
        padding: 15px;
    }

    .Related-Products-Image {
        max-width: 74px;
        height: 82px;
        top: 0;
        right: 0px;
    }

    .Related-Products-Tree {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100px;
        height: 110px;
    }

    .Product-Oil-Image {
        display: none;
    }
}



















/* header styling --------------------------------------------------------------------------------*/



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter';
  }

.cust-dd-menu {
  width: 500px;
}

.dp-c-login {
  margin-top:17px !important;
}

  .h3-cust{
    font-size:32px;
    font-family: archivo;
    font-weight: 600;
  }

  .cust-search {
    background-color:#7E1416;
    color:#fff;
  }

  .cust-search:hover{
    background-color:#4d090a !important;
  }

  .cust-arrow-down {
    color: #000;
  }

  .h3-cust span {
    color: rgb(126, 20, 22);
    font-size:32px !important;
    font-family: inter;
}

  .cust-container {
    width:100%;
    position:relative;
    overflow: hidden;
  }


  .hero-section-content {
    width:100%;  
  }

  
.h-user {
  background-color: #7E1416;
  font-size: 20px;
  color:#fff;
  padding:12px 13px;
  border-radius: 21px;
}

.btn-cst-head {
  border: 1.5px solid #000;
  margin: 0px 15px;
}

.btn-cst-head .dropdown-menu.show {
  width: 470px;
}

.s-input {
  width:47%;
}

.btn-cst-head:hover {
  border: 1.5px solid #000;
  background-color: #7E141610;
  margin: 0px 15px;
}

  .header {
    padding: 15px 51px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 30px 30px;
    /* margin: 0px 50px; */
    position:fixed;
    z-index:99;
    width:100%;

  }
  
  .logo img {
    max-width: 180px;
    height: auto;
  }
  
  .desktop-nav {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
    margin-bottom: 0px;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #2D3134;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
    font-family: 'archivo';
  }
  
  .nav-links a:hover {
    color: #8b1a1a;
  }
  
  .right-menu {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .sub-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }

  .cart {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cart-count {
    position: absolute;
    top: 14px;
    right: 10px;
    font-size: 8px;
    font-weight: bold;
    color: white;
    background-color: #7E1416;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign-up-btn {
    background-color: #8b1a1a;
    color: white;
    border: none;
    padding: 4px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    height: 39px;
    min-width: 98px;
  }
  
  .sign-up-btn:hover {
    background-color: #6a1414;
  }
  
  /* Hamburger Menu - Keeping original functionality */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
  }
  
  /* Mobile Navigation - Keeping original functionality */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
  }
  
  .mobile-nav.active {
    transform: translateX(0);
  }
  
  .close-btn {
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }
  
  .mobile-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-top: 20px;
  }
  
  .mobile-links li {
    margin: 15px 0;
  }
  
  .mobile-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
  }
  


  @media (max-width: 1200px) {

    
    
    .nav-links li {
      margin: 0 10px;
    }
  }
  

  @media (max-width: 1024px) {
    body {
      padding: 0 0px;
    }
    
    .desktop-nav {
      display: none;
    }
  
    .right-menu {
      display: none; 
    }
  
    .hamburger {
      display: flex;
    }
  
    .mobile-nav {
      display: block;
    }

    .header {
      width:100%;
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 12px 50px;
    }
  
    .logo img {
      max-width: 140px;
    }
  }
  
  @media (max-width: 576px) {
    body {
      padding: 0 0px;
    }
    
    .header {
      padding: 12px 33px;
      border-radius: 0 0 20px 20px;
    }
    
    .logo img {
      max-width: 120px;
    }
  }
  

  @media (max-width: 375px) {
    .logo img {
      max-width: 100px;
    }
    
    .hamburger {
      margin-left: auto;
    }
  }


/* Ends here --------------------------------------------------------------------------------*/



/* testimonial styling -----------------------------------------------------------------------------------------*/

    .btn-slides {
      background-color: #7E1416 !important;
    }

    .carousel-indicators button {
      background-color:#7e1416;
    }

      .bg-leaf {
        position: relative;
        padding-top:38px;
      }

    

      .bg-leaf::before {
        content: "";
        position: absolute;
        bottom: -50px;
        right: 0;
        width: 150px;
        height: 150px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 Q70,30 90,50 T50,90 Q30,70 10,50 T50,10" fill="%23F5EFE8" /></svg>');
        background-repeat: no-repeat;
        background-size: contain;
        opacity: 0.6;
        z-index: -1;
      }

      .section-heading {
        text-align: center;
        margin-bottom: 2.5rem;
        padding-top: 3rem;
      }

      .section-heading h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .section-heading h1 span {
        color: var(--primary-color);
      }

      .section-heading p {
        font-size: 1rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        font-family: 'archivo';
      }

      .testimonial-carousel {
        position: relative;
        padding: 2rem 0 4rem;
      }

      /* Added proper spacing between carousel items */
      .carousel-item .col-md-4 {
        padding: 0 10px; /* Increased padding for better gaps */
        box-shadow: 10px 32px 50px rgba(3, 7, 18, 0.06);
      }

      /* Added this to create space between the items */
      .carousel-item .col-md-4 > div {
        margin: 10px;
        border-radius: 12px;
        background-color: white;
      }

      .testimonial-profile {
        display: flex;
        align-items: center;
        padding: 1rem;
        gap: 0.5rem;
      }

      .testimonial-profile img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
      }

      .testimonial-profile .info {
        flex: 1;
      }

      .testimonial-profile .name {
        font-weight: 600;
        margin: 0;
      }

      .testimonial-profile .position {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
      }

      .testimonial-content {
        padding: 0 1rem 1rem;
        min-height: 160px; /* Adjust this value to match your video card height */
        display: flex;
        align-items: center;
      }

      /* Optional - ensure consistent padding around content */
      .testimonial-content p {
        font-size: 14px;
        margin: 0;
      }

      .testimonial-video {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 1rem;
      }

      .testimonial-video img {
        width: 100%;
        height: auto;
        padding: 20px;
        object-fit: cover;
        border-radius: 8px;
      }

      .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: #ffffff80;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .play-button:hover {
        background-color: #ffffff80;
      }

      .play-button i {
        color: var(--primary-color);
        font-size: 1.5rem;
      }

      .card {
        background-color: rebeccapurple;
      }
      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
        /* background-color: var(--primary-color); */
        border-radius: 50%;
        top: 55%;
        transform: translateY(-50%);
        opacity: 1;
      }

      .carousel-control-prev {
        left: -30px;
      }

      .carousel-control-next {
        right: -30px;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 20px;
        height: 20px;
      }

      .carousel-indicators {
        display: flex;
        justify-content: center;
        margin-bottom: -20px;
      }

      .carousel-indicators button {
        width: 12px;
        height: 12px;
        /* border-radius: 50%; */
        margin: 0 5px;
        /* background-color: #7e141633 !important; */
        opacity: 0.7;
        border: none;
      }

      .carousel-indicators button.active {
        /* background-color: #fff !important; */
        width: 20px;
        /* border-radius: 10px; */
        opacity: 1;
      }

      /* Responsive styles - maintain original design */
      @media (max-width: 991px) {
        .carousel-item .row {
          margin: 0 -5px;
        }
        .carousel-item .col-md-4 {
          padding: 0 5px;
        }
      }

      @media (max-width: 768px) {
        .carousel-control-prev {
          left: 10px;
        }

        .carousel-control-next {
          right: 10px;
        }

        .section-heading h1 {
          font-size: 2rem;
        }

        .section-heading p {
          font-size: 0.9rem;
          padding: 0 1rem;
        }

        /* Responsive columns for medium screens */
        .carousel-item .col-md-4 {
          flex: 0 0 50%;
          max-width: 50%;
          margin-bottom: 15px;
        }
      }

      @media (max-width: 576px) {
        .section-heading h1 {
          font-size: 1.8rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
          width: 30px;
          height: 30px;
        }

        /* Single column on small screens */
        .carousel-item .col-md-4 {
          flex: 0 0 100%;
          max-width: 100%;
          margin-bottom: 15px;
        }
      }

/* Ends here --------------------------------------------------------------------------------*/




/* hero section styling -----------------------------------------------------------------------------------------*/

html, body {
    overflow-x: hidden !important;
    width: 100%;
}

.container {
    /* max-width: auto; */
    margin: 0 auto;
    position: relative;
    padding-top: 60px;
}

/* Add top-right logo/image */
.top-right-image {
    position: absolute;
    top: 20px;
    right: 0px;
    max-width: 120px;
    height: auto;
    z-index: 2;
}

.hero-section {
    background-image: url('https://panchnada.ellocentlabs.com/image/catalog/assets/hero-main-bg.jpg');
    width:100%;
    text-align: center;
    padding: 140px 20px 20px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-title {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-highlight {
    color: #7a1515;
    font-size: 48px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.hero-description {
    max-width: 720px;
    font-family: 'archivo';
    margin: 20px auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-shop-button {
    background-color: #7a1515;
    color: white;
    padding: 7px 30px;
    height: 44px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.hero-shop-button {
    color: white;
    text-decoration: none;
}
  
.hero-shop-button:hover {
    color: white !important;
    transform: translateY(-5px);
    transition: 0.3s;
}
  
/* Carousel Styling */

.carousel {
  border: none !important;
}

.shipping-banner {
    margin: 1px auto 40px;
    max-width: 764px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
}

.highlighted-text-carousel {
    font-size: 28px;
    font-weight: 500;
    color:#fff;
    font-family: Archivo;
}

/* Fix for carousel height on mobile */
.carousel-item img {
    /* width: 100%;
    min-height: 241px;
    height: auto; */
    object-fit: cover;
}

.carousel-caption {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.carousel-caption h5 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-family: Archivo;
}

.price-carousel {
  color: #C2FA68;
  font-weight: 600;
  text-decoration:underline;
  font-family: 'Archivo', sans-serif;
} 


.carousel-caption p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Fixed positioning for carousel indicators */
.carousel-indicators {
    bottom: 9px !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

/* Preserve Bootstrap's default indicator style */
.carousel-indicators button {
    margin-right: 3px !important;
    margin-left: 3px !important;
}

.decoration {
    position: absolute;
    z-index: 1;
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

/* Original positioning for 1440px and above */
.cinnamon {
    top: 200px;
    left: 80px;
    width: auto;
    max-width: 154px;
    opacity: 0.9;
    transform: rotate(-30deg);
}

.leaf-right-main {
    top: 170px;
    right: 90px;
    width: auto;
    opacity: 0.9;
    transform: rotate(15deg);
}

.red-leaf {
    bottom: 30px;
    left: -60px;
    width: auto;
    opacity: 0.8;
    transform: rotate(-15deg);
}

.green-leaf {
    bottom: 30px;
    right: -60px;
    width: auto;
    opacity: 0.8;
    transform: rotate(5deg);
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatAnimationtwo {
    0% {
        transform: translatex(0);
    }
    50% {
        transform: translatex(-15px);
    }
    100% {
        transform: translatex(0);
    }
}

.cinnamon,
.leaf-right-main {
    animation: floatAnimationtwo 6s ease-in-out infinite;
}

.red-leaf,
.green-leaf {
    animation: floatAnimation 6s ease-in-out infinite;
}

/* Only apply responsive adjustments for screens smaller than 1440px */
@media (max-width: 1440px) {
    .top-right-image {
        max-width: 100px;
    }
    
    .cinnamon {
        top: 300px;
        left: 120px;
        width: auto;
    }
    
    .leaf-right-main {
        top: 300px;
        right: 145px;
        width: auto;
    }
    
    .red-leaf {
        bottom: 40px;
        left: 33px;
        width: auto;
    }
    
    .green-leaf {
        bottom: 40px;
        right: 50px;
        width: auto;
    }
}

@media (max-width: 1280px) {
    .top-right-image {
        max-width: 90px;
    }
    
    .cinnamon {
        top: 150px;
        left: -20px;
        width: 100px;
    }
    
    .leaf-right {
        top: 130px;
        right: -20px;
        width: 90px;
    }
    
    .red-leaf {
        bottom: 80px;
        left: -55px;
        width: 140px;
    }
    
    .green-leaf {
        bottom: 80px;
        right: -55px;
        width: 140px;
    }
}

@media (max-width: 1024px) {
    .top-right-image {
        max-width: 80px;
        top: 15px;
        right: 15px;
    }
    
    .cinnamon {
        top: 150px;
        left: -20px;
        width: 100px;
    }
    
    .leaf-right {
        top: 130px;
        right: -20px;
        width: 90px;
    }
    
    .red-leaf {
        bottom: 100px;
        left: -95px;
        width: 100px;
    }
    
    .green-leaf {
        bottom: 100px;
        right: -79px;
        width: 100px;
    }

    .carousel-caption h5 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-right-image {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
    
    
    .hero-highlight {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 20px;
        max-width: 600px;
        text-align: center;
    }

    .shipping-banner {
        margin: 20px auto 40px;
        max-width: 90%;
    }
    
    .carousel-caption h5 {
        font-size: 22px;
    }
    
    .carousel-caption p {
        font-size: 13px;
    }

    .leaf-right-main {
      display: none;
    }

    .cinnamon {
        display: none;
    }

    .leaf-right {
        display: none;
    }
    
    .red-leaf {
        display: none;
    }
    
    .green-leaf {
        display: none;
    }
    
    /* Fix carousel height on tablets */
    .carousel-item {
        min-height: 120px;
    }
}

@media (max-width: 576px) {
    .top-right-image {
        max-width: 60px;
        top: 10px;
        right: 10px;
    }
    
    .cinnamon {
        top: 120px;
        left: -10px;
        width: 60px;
    }

    .leaf-right {
        top: 110px;
        right: -10px;
        width: 50px;
    }
    
    .red-leaf {
        bottom: 150px;
        left: -23px;
        width: 60px;
    }
    
    .green-leaf {
        bottom: 150px;
        right: -20px;
        width: 60px;
    }
    
    /* Fix carousel height on mobile */
    .carousel-item {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .top-right-image {
        display: none;
    }
    
    .hero-title {
        font-size: 30px;
        text-align: center;
    }
    
    .hero-highlight {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
        text-align: center;
    }

    .hero-section {
        padding: 120px 20px 20px;
        font-size: 30px;
    }

    .hero-shop-button {
        padding: 10px 30px;
        font-size: 16px;
    }

    .shipping-banner {
        margin: 20px auto 30px;
        max-width: 95%;
    }
    
    .carousel-caption {
        padding: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .carousel-caption p {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Ensure indicators stay at bottom on mobile */
    .carousel-indicators {
        bottom: 5px !important;
    }

    .cinnamon {
        display:none;
    }

    .leaf-right {
      display: none;
    }

    .leaf-right-main {
      display: none;
    }
    
    .red-leaf {
         display: none;
    }
    
    .green-leaf {
       display: none;
    }
    
    /* Fix carousel height on small mobile */
    .carousel-item {
        min-height: 80px;
    }
}

@media (max-width: 375px) {
    .top-right-image {
        max-width: 45px;
        top: 5px;
        right: 5px;
    }
    
    .cinnamon {
        top: 90px;
        left: -3px;
        width: 70px;
    }

    .leaf-right {
        top: 90px;
        right: -3px;
        width: 55px;
    }
    
    .red-leaf {
        bottom: 130px;
        left: -25px;
        width: 50px;
    }
    
    .green-leaf {
        bottom: 130px;
        right: -25px;
        width: 50px;
    }
    .hero-description{
        text-align: left;
    }
    
    /* Fix carousel height on extra small mobile */
    .carousel-item {
        min-height: 70px;
    }
}


/* Ends here ----------------------------------------------------------------------------------------- */





/* Shop By category & Top ayurvedic picks ----------------------------------------------------------------------- */

.heart-wishlist {
  color: #8b1a1a;
}

.description h4 a {
  color: #291C2B;
}

.add-to-cart-btn:hover {
background-color: #7E141610;
    /* transform: translateY(-5px); */
}

.category-title:hover {
    color: #8b1a1a;
  }


/* Leaf decorations */
.leaf-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.leaf-bottom-right {
  position: absolute;
  bottom: -14px;
  right: 0;
  width: 130px;
  height: 130px;
}

/* Main container */
.fp-p-container {
  max-width: auto;
  margin: 0 auto;
  padding: 40px 44px;
  position: relative;
  z-index: 1;
}
.first{
    position: relative;
    z-index: 2;
}

/* Heading shop by */
.shop-by-heading {
  text-align: center;
  margin-bottom: 50px;
}

.shop-by-heading h1 {
  font-size: 32px;
  font-weight: 600;

}

.shop-by-heading h1 span {
  color: #7e1416;
}

/* Categories grid */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  margin: 0 auto;
}

/* Category item */
.category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
}

/* Category image container */
.category-image {
  max-width: 150px;
  min-width: 150px;
  width: 100%;
  height: 204px;
  border-radius: 85px 85px 85px 85px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

/* Skin & Hair Care */
.skin-hair .category-image {
  background-color: #e0e0e0;
}

/* Weight Management */
.weight-management .category-image {
  background-color: #f5e5c5;
}

/* Women's Health */
.womens-health .category-image {
  background-color: #c17878;
}

/* Men's Health */
.mens-health .category-image {
  background-color: #e0e0e0;
}

/* Herbal Supplements */
.herbal-supplements .category-image {
  background-color: #222;
}

/* Pain Relief */
.pain-relief .category-image {
  background-color: #e0e0e0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visit text overlay */
.visit-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  display: none;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.category-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004d;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 85px;
  z-index: 1;
}
.category-image:hover .visit-text {
  display: block;
}

.category-image:hover::before {
  opacity: 1;
}

/* Category title */
.category-title {
  font-size: 16px;
  color: #2d3134;
  font-weight: 400;
  margin-top: 5px;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.leaf-top-left,
.leaf-bottom-right {
  animation: floatAnimation 8s ease-in-out infinite;
}

/* Ayurvedic Section Styles */
.second {
    padding: 60px 120px;
    position: relative;
    overflow: hidden;
  }

  .ayurvedic-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .ayurvedic-leaf-top-left {
    position: absolute;
    top: 0;
    left: 73px;
    width: 100px;
    height: auto;
    z-index: 1;
  }
  
  .ayurvedic-leaf-bottom-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: auto;
    z-index: 1;
  }
  
  .ayurvedic-section {
    position: relative;
    z-index: 2;
  }
  
  .ayurvedic-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ayurvedic-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .ayurvedic-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #7E1416;
  }
  
  .ayurvedic-header p {
    font-family: 'archivo';
    max-width: 800px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto;
    color: #2D3134;
    line-height: 1.6;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  /* Product Card */
  .product-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 5px 5px;
    max-width: 242px;

  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  /* Product Image */
  .product-image {
    position: relative;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Wishlist Button */
  .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .wishlist-btn svg {
    width: 16px;
    height: 16px;
    color: #777;
  }
  
  .wishlist-btn.active svg {
    color: #7E1416;
    fill: #7E1416;
  }
  
  /* Product Info */
  .product-info {
    padding: 15px;
  }
  
  .product-info h4 {
    font-size: 16px;
    color: #333 !important;
    font-family: 'archivo', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  /* Price and Rating */
  .product-price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .price {
    font-weight: 600;
    color: #333;
  }
  
  .rating {
    display: flex;
    align-items: center;
  }
  
  .stars {
    color: #FFD700;
    margin-right: 5px;
  }
  
  .rating-text {
    font-size: 14px;
    color: #777;
  }
  
  /* Add to Cart Button */
  .add-to-cart-btn {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #2D3134;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .add-to-cart-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  
  .add-to-cart-btn.active {
    background-color: #7E1416;
    color: #fff;
    border-color: #7E1416;
  }
  
  .add-to-cart-btn.active svg {
    color: #fff;
  }
  
  /* Quantity Selector */
  .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .quantity-btn {
    background: none;
    border: none;
    width: 40px;
    height: 38px;
    font-size: 18px;
    cursor: pointer;
    /* background-color: #f5f5f5; */
  }
  
  .quantity-value {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
  }
  
  /* View More Button */
  .view-more-container {
    text-align: center;
    margin-top: 20px;
  }
  
  .view-more-btn {
    display: inline-flex;
    font-family: 'archivo';
    align-items: center;
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid #7E1416;
    color: #7E1416;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    gap: 10px   ;
    transition: all 0.3s ease;
  }
  
  .view-more-btn svg {
    width: 16px;
    height: 16px;
    transform: rotate(1deg);
  }
  
  .view-more-btn:hover {
    background-color: #7E141610;
    transform: translateY(-5px);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .second {
      padding: 50px 80px;
    }
  }
  
  @media (max-width: 900px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .second {
      padding: 40px 60px;
    }
  }
  @media (max-width: 900px) {
    .ayurvedic-leaf-top-left,
    .ayurvedic-leaf-bottom-right {
      display: none;
    }
  }
  
  
  @media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card{
        width: 100% !important;
    }
    
    .second {
      padding: 30px 20px;
    }
    
    .ayurvedic-header h2 {
      font-size: 24px;
    }
  }
  @media (max-width: 500px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card{
        width: 100%;
    }
    
    .second {
      padding: 30px 20px;
    }
    
    .ayurvedic-header h2 {
      font-size: 24px;
    }
  }


/* Responsive styles */
@media (max-width: 1440px) {
  .categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    gap: 20px;
  }

  .shop-by-heading h1 {
    font-size: 24px;
    text-align: center;
  }
}



/* Ends here ----------------------------------------------------------------------------------------- */



/* benefits section styling -----------------------------------------------------------------------------------------*/

        .leaf-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: -1;
        }
        
        .leaf-right {
            position: absolute;
            top: 0;
            right: 20px;
            width: 250px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="https://panchnada.ellocentlabs.com/image/catalog/assets/left.png" viewBox="0 0 100 100"><path d="M10,90 Q30,70 50,50 Q70,30 90,10" stroke="%23f0e9e9" fill="none" stroke-width="2"/><path d="M20,90 Q40,70 60,50 Q80,30 100,10" stroke="%23f0e9e9" fill="none" stroke-width="2"/><path d="M30,90 Q50,70 70,50 Q90,30 110,10" stroke="%23f0e9e9" fill="none" stroke-width="2"/></svg>');
            background-repeat: no-repeat;
            
        }
        
        .leaf-left {
            position: absolute;
            top: 130px;
            left: -40px;
            width: 200px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="https://panchnada.ellocentlabs.com/image/catalog/assets/left.png" viewBox="0 0 100 100"><path d="M90,10 Q70,30 50,50 Q30,70 10,90" stroke="%23f0e9e9" fill="none" stroke-width="2"/><path d="M80,10 Q60,30 40,50 Q20,70 0,90" stroke="%23f0e9e9" fill="none" stroke-width="2"/><path d="M70,10 Q50,30 30,50 Q10,70 -10,90" stroke="%23f0e9e9" fill="none" stroke-width="2"/></svg>');
            background-repeat: no-repeat;
            
        }
        
        .container-main {
            max-width:80%;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
            z-index: 10;
        }
        
        .header-benefits {
            margin-bottom: 50px;
            padding-top: 30px;
        }
        .header-benefits p{
            font-size: 16px;
            font-weight: 400;
            font-family: 'archivo';
        }
        
        h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        h1 span {
            color: #8b2323;
        }
        
        .subtitle {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            color: #444;
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            z-index: 20;
        }
        .benefit-text{
            font-size: 16px;
            font-weight: 400;
        }
        .benefit-number{
          font-size: 50px;
          font-weight: 700;
        }
        
        .center-image-container {
            grid-column: 2;
            grid-row: 1 / span 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .center-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: #7E141608;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .center-image img {
            width: 220px;
            height: auto;
        }
        
        .benefit {
            display: flex;
            align-items: center;
            padding: 10px;
            text-align: left;
        }
        
        .benefit-number {
            font-size: 40px;
            font-weight: bold;
            color: #8b2323;
            min-width: 40px;
        }
        
        .benefit-text {
            font-size: 16px;
        }
        
        .benefit-1 {
            grid-column: 1;
            grid-row: 1;
            justify-content: flex-end;
        }
        
        .benefit-2 {
            grid-column: 3;
            grid-row: 1;
            justify-content: flex-start;
        }
        
        .benefit-3 {
            grid-column: 1;
            grid-row: 2;
            justify-content: flex-end;
        }
        
        .benefit-4 {
            grid-column: 3;
            grid-row: 2;
            justify-content: flex-start;
        }
        
        .bottom-benefit {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .bottom-benefit .benefit-number {
            font-size: 40px;
        }
        
        .bottom-benefit .benefit-text {
            text-align: left;
            line-height: 24px;
            font-size: 16px;
            max-width: 300px;
        }
        
        @media (max-width: 900px) {
            .container-main{
                width: 90%;
                padding: 10px;
            }

            .bottom-benefit .benefit-text {
                   max-width: 448px;
            }

            .leaf-right,.leaf-left{
               display: none;
            }
            /* h1{
                text-align: left;
            } */
            p{
                text-align: left;
            }
            .benefits-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            
            .center-image-container {
                grid-column: 1;
                grid-row: 1;
                margin: 30px 0;
            }
            
            .benefit-1, .benefit-2, .benefit-3, .benefit-4 {
                grid-column: 1;
                justify-content: center;
            }
            
            .benefit-1 {
                grid-row: 2;
            }
            
            .benefit-2 {
                grid-row: 3;
            }
            
            .benefit-3 {
                grid-row: 4;
            }
            
            .benefit-4 {
                grid-row: 5;
            }
            
            .benefit {
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 480px) {
            .container-main {
                width: 90%;
                padding: 10px;
            }

            h1 {
                font-size: 28px;
                text-align: left;
            }
            p{
                text-align: left;
            }
            
            .subtitle {
                font-size: 16px;
            }
            
            .center-image {
                width: 250px;
                height: 250px;
            }
            
            .center-image img {
                width: 180px;
            }
            
            .benefit-number {
                font-size: 34px;
            }
            
            .benefit-text {
                font-size: 14px;
            }

            .bottom-benefit .benefit-text {
                font-size: 14px;
            }
        }

/* Ends here ----------------------------------------------------------------------------------------- */





/* Why choose us section styling -----------------------------------------------------------------------------------------*/

.blog-full {
  position: relative;
  background-color: #7E141605;
  margin-bottom: 50px;
}

.main-why {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 60px 100px;
    }
    
    /* Decorative elements */
    .top-left-decoration {
      position: absolute;
      top: -50px;
      left: -50px;
      width: 250px;
      height: 200px;
      background-image: url('https://panchnada.ellocentlabs.com/image/catalog/assets/left-top.png');
      background-size: contain;
      background-repeat: no-repeat;
      z-index: 0;
    }
    
    .bottom-right-decoration {
      position: absolute;
      bottom: -69px;
      right: -174px;
      width: 250px;
      height: 250px;
      background-image: url('https://panchnada.ellocentlabs.com/image/catalog/assets/right-bottom.png');
      background-size: contain;
      background-repeat: no-repeat;
      z-index: 0;
    }
    
    .container-why {
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    
    /* Main Section Styling */
    .why-choose-us {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      padding: 40px 0;
      width: 100%;
      gap: 30px;
    }
    
    /* Left Side with Text Content */
    .left-side-why {
      flex: 1;
      position: relative;
      max-width: 600px;
    }
    
    .left-decoration {
      position: absolute;
      top: -50px;
      left: -80px;
      width: 200px;
      height: 200px;
      background-image: url('/api/placeholder/200/200');
      background-size: contain;
      background-repeat: no-repeat;
      z-index: -1;
    }
    
    .text-content {
      padding-top: 10px;
    }
    
    /* Headings */
    h2 {
      font-size: clamp(1.8rem, 4vw, 2.3rem);
      margin-bottom: 20px;
      color: #333;
      font-weight: 600;
    }
    
    .text-content h2 {
      font-size: clamp(1.5rem, 3vw, 32px);
      font-weight: 600;
    }
    
    .text-content p {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 20px;
      font-family: 'archivo';
    }
    
    .text-content h3 {
      font-size: clamp(16px, 2vw, 18px);
      font-weight: 600;
      margin: 25px 0 15px;
    }
    
    .promise-list li span {
      font-size: clamp(14px, 2vw, 16px);
      font-weight: 400;
    }
    
    .accent-text {
      color: #8B0000; /* Deep red color for 'Choose Us' */
    }
    
    /* Promise List Styling */
    .promise-list {
      list-style: none;
    }
    
    .promise-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    
    .promise-list li img {
      width: 20px;
      height: 20px;
    }
    
    /* Right Side with Image and Stats */
    .right-side-why {
      flex: 1;
      max-width: 600px;
    }
    
    .image-content {
      width: 100%;
      margin-bottom: 10px;
    }
    
    .image-content img {
      width: 100%;
      height: auto;
      max-height: 333px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Stats Section */
    .stats-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 0 50spx;
  gap: 5px;
}

.stat-item {
  /* flex: 1; */
  padding: 10px 15px; /* Add padding inside each stat item */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-item h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: #8B0000;
  margin-bottom: 1px; /* Increase spacing between number and text */
}

.stat-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2; /* Improve line height for better readability */
}

.separator {
  width: 1px;
  height: 63px;
  background-color: #7E1416;
  flex-shrink: 0; /* Prevent separator from shrinking */
}
    
    @keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.top-left-decoration,
.bottom-right-decoration {
  animation: moveUpDown 8s infinite ease-in-out;
}

    /* Responsive Design */
    @media (max-width: 1200px) {
        .main-why {
        padding: 80px 80px;
      }
      .container-why {
        padding: 0 40px;
      }
    }
    
    @media (max-width: 992px) {
        .main-why {
        padding: 40px 40px;
      }
      .top-left-decoration {
        width: 150px;
        height: 150px;
        top: -30px;
        left: -30px;
      }
      
      .why-choose-us {
        flex-direction: column;
        align-items: center;
      }
      
      .left-side-why, .right-side-why {
        max-width: 100%;
      }
      
      .text-content {
        padding-top: 20px;
      }
      
      .image-content {
        max-width: 500px;
        margin: 0 auto 20px;
      }
    }

    
    @media (max-width: 768px) {
        .main-why {
        padding: 40px 40px;
      }
      .container-why {
        padding: 0 20px;
      }
      
       .stats-container {
    flex-direction: column;
    gap: 25px; /* Increase gap when in column layout */
  }
  
  .separator {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }
  
  .stat-item {
    width: 100%;
    padding: 15px 0;
  }
      
      .top-left-decoration {
        width: 150px;
        height: 150px;
        top: -30px;
        left: -30px;
      }
      
      .bottom-right-decoration {
        width: 180px;
        height: 180px;
        bottom: -45px;
        right: -65px;
      }
    }
    
    @media (max-width: 480px) {
        .main-why {
        padding: 40px 20px;
      }
      /* .top-left-decoration, .bottom-right-decoration {
        opacity: 0.4;
      } */
      
      .container-why {
        padding: 0 15px;
      }
      
      .why-choose-us {
        padding: 30px 0;
      }
      
      .left-decoration {
        display: none;
      }
      
      .promise-list li img {
        width: 16px;
        height: 16px;
      }
    }



/* Ends here ----------------------------------------------------------------------------------------- */



/* Blogs styling --------------------------------------------------------------------------------*/

      /* Main container */
      .container-blogs {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
        margin-bottom: -50px;

      }

      /* Header section */
      .blogs-header {
        text-align: center;
        padding: 30px 20px;
        position: relative;
        z-index: 1;
      }

      .blogs-header h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
      }

      .blogs-header h1 span {
        color: #800020;
      }

      .blogs-header p {
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.5;
        font-size: 1.1rem;
        font-family: 'archivo';
      }

      /* Blog posts grid */
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin: 40px 0;
      }

      /* Blog card */
      .blog-card {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        padding: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        transition: transform 0.3s ease;
        height: 100%;
      }

      .blog-card:hover {
        transform: translateY(-5px);
      }

      .blog-image {
        width: 100%;
        height: 200px;
        border-radius: 6px;
        object-fit: cover;
      }

      .blog-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .blog-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
      }

      .blog-excerpt {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
      }

      .read-more {
        color: #800020;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        margin-top: auto;
      }

      .read-more:hover {
        text-decoration: underline;
      }

      /* Blog info section with author */
      .blog-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        /* border-top: 1px solid #eee; */
      }

      .author {
        display: flex;
        align-items: center;
      }

      .author-img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 10px;
      }

      .author-name {
        font-size: 0.9rem;
        font-weight: 500;
      }

      .blog-date {
        font-size: 0.85rem;
        color: #777;
      }

      /* Sidebar blogs container */
      .sidebar-blogs {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
      }

      /* Smaller blog card style */
      .small-blog-card {
        display: flex;
        width: 100%;
        flex-direction: column;
        padding: 10px;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        flex: 1;
      }
      
      .sub-section {
        display: flex;
      }

      .small-blog-image {
        width: 120px;
        height: 110px;
        object-fit: cover;
        border-radius: 6px;
      }

      .small-blog-content {
        flex: 1;
        padding: 0 10px 10px;
        display: flex;
        flex-direction: column;
      }

      .small-blog-content .blog-title {
        font-size: 1rem;
      }

      .small-blog-content .blog-excerpt {
        font-size: 0.85rem;
        margin-bottom: 5px;
      }

      /* Explore more button */
      .explore-more-container {
        text-align: center;
        margin: 40px 0;
      }

      .explore-more {
        display: inline-flex;
        font-family: 'archivo';
        align-items: center;
        padding: 10px 12px;
        border: 1px solid #7E14164D;
        border-radius: 6px;
        color: #800020;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 16px;
      }

      .explore-more:hover {
        background-color: #7E141610;
      }

      .explore-more svg {
        margin-left: 8px;
      }

      /* Decorative elements */
      .leaf-decoration-left {
        position: absolute;
        left: 0;
        bottom: 0;
        top: 700px;
        width: 178px;
        z-index: 0;
        /* opacity: 0.8; */
      }

      .palm-decoration-right {
        position: absolute;
        right: 0;
        top: 0;
        width: 349px;
        z-index: 0;
        /* opacity: 0.8; */
      }
      
      /* Responsive styles */
      @media (max-width: 1024px) {
        .blog-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .palm-decoration-right {
          width: 150px;
        }

        .leaf-decoration-left {
          width: 120px;
        }
      }

      @media (max-width: 768px) {
        .blogs-header h1 {
          font-size: 2.2rem;
        }
        .blogs-header p {
          font-size: 1rem;
        }

        .palm-decoration-right {
          width: 120px;
        }

        .leaf-decoration-left {
          width: 100px;
        }
      }

      @media (max-width: 640px) {
        .blog-grid {
          grid-template-columns: 1fr;
        }

        .blogs-header h1 {
          font-size: 1.8rem;
        }

        .palm-decoration-right {
          width: 100px;
          opacity: 0.5;
        }

        .leaf-decoration-left {
          width: 80px;
          opacity: 0.5;
        }
      }

/*Ends here --------------------------------------------------------------------------------*/




/* Footer styling --------------------------------------------------------------------------------*/

.footer-maindiv {
    position: relative;
    background-image: url('https://panchnada.ellocentlabs.com/image/catalog/assets/bg-footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* padding-left: 120px; */
    /* padding-right: 120px; */
    padding-top: 30px;
    /* padding-bottom: 30px; */
}

.footer-logo img {
    height: 91.94px;
}


.footer-logo p {
    font-weight: 400;
    margin-top: 16px;;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    font-family: archivo;
}

.img-style {
    width: 120.69px;
    height: 111.94px;
    border-radius: 14px;
    padding: 10px 12px;
    background-color: #FFFFFF;
}

.footer-maindiv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    gap: 138px;
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 286px;
}

.footer-second {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* border: 2px solid red; */
    /* border-bottom: 2px solid red; */
}

.footer-second ul a {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.footer-second ul {
    padding-left: 0px;
    list-style: none;
}

.footer-second ul li {
    margin-bottom: 10px;
    transform: translateY(-5px);
}

.footer-second h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.social-icons {
    margin-top: 16px;
    height: 40px;
    gap: 16px;
    display: flex;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background-color: #7E1416;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-icon i {
    font-size: 18px;
}

.footer-contact {
    /* background-color: rgb(58, 55, 55); */
    margin-bottom: 10px;
    /* padding: 10px; */
    border-radius: 10px;
}

.footer-contact a {
    color: white;
    font-family: archivo;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    font-weight: 600;
    margin-top:18px;
    font-size: 16px;
    font-family: archivo;
    color: white;
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        /* background-color: blue; */
        gap: 40px;
        padding: 36px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        /* background-color: blue; */
        gap: 40px;
        padding: 36px;
    }
}

@media (max-width: 678px) {
    .footer-container {
        flex-direction: column;
        /* background-color: blue; */
        gap: 40px;
        padding: 16px;
    }

    .footer-second {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 16px;
        /* background-color: aqua; */
    }

    .footer-second {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .footer-second {
        width: 100%;
        grid-template-columns: 1fr;
        
    }

    .ft-mr {
  margin-top:16px;
}

}


/*Ends here --------------------------------------------------------------------------------*/




/* Category Page styling --------------------------------------------------------------------------------*/

/* category Hero Section */


.h1-bread {
  font-size: 54px;
  font-family: 'archivo';
  font-weight: 700px;
  text-align: center;
}


.Panchnada-hero-section {
    position: relative;
    background-image: url("https://panchnada.ellocentlabs.com/image/catalog/assets/breadcrumb-bg.png");
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 85px;
    margin-top:80px;
}

.Panchnada-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.Panchnada-hero-section>* {
    position: relative;
    z-index: 2;
}

.Panchnada-hero-section-description {
    font-family: 'archivo';
    font-weight: 600;
    font-size: 19px;
}

.cust-ar-hm {
  width:24px;
  height:24px;
  margin: 0px 4px;
}

.cust-ar {
    width: 16px;
    height: 16px;
    margin: 0px 4px;
}

/* Panchnada Pagination */

.Panchnada-Pagination {
    max-width: 1200px;
    padding-left: 36px;
    padding-right: 36px;
    margin: auto;
    margin-top: 10px;
    display: flex;
    gap: 20px;
    /* align-items: baseline; */
}

.Panchnada-Pagination-Container {
    width: 100%;
}

.Panchnada-Pagination-Categories {
    min-width: 341px;
    max-height: 355px;
    padding: 16px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Panchnada-Pagination-Categories ul li {
    font-size: 16px;
    font-weight: 400;
    font-family: archivo;
    border-radius: 8px;
}

.Panchnada-Pagination-Categories a {
    display: inline-block;
    color: #2D3134;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.Panchnada-Pagination-Categories a:hover {
    color: #7E1416;
}

.Panchnada-Pagination-Categories a:active {
    background-color: #7E141608;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
}

.Panchnada-Pagination-Button {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.Panchnada-Pagination-Input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #2D31341A;
    padding-left: 10px;
    background-color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: archivo;
    line-height: 24px;
    max-width: 100%;
}

.Panchnada-Pagination-Input input {
    border: none;
}

.Panchnada-Pagination-Input input:focus,
input:active {
    outline: none;
    box-shadow: none;
}

.Panchnada-Pagination-Link {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 17.5px;
    padding-right: 17.5px;
    width: 80px;
    height: 40px;
    border-radius: 6px;
    background-color: #7E1416;
    font-weight: 400;
    font-size: 14px;
    font-family: archivo;
    color: white;
    border: none;
}

.Panchnada-Pagination-Link:hover {
    background-color: #4d0809;
}



/* Categories Product grid */
.product-grid-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .product-grid-category {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .Panchnada-Pagination {
        flex-direction: column;
    }

    .Panchnada-Pagination-Categories {
        margin: auto;
        min-width: 400px;
    }

    .Panchnada-Pagination-Button {
        flex-direction: row;
        gap: 15px;
    }

    .Panchnada-Pagination-Link {
        margin: auto;
    }

    .product-grid-category {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 10px;
    }

    .Panchnada-Pagination-Container {
        width: 100%;
        margin: auto;
    }

    .Panchnada-Pagination-Input {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .Panchnada-hero-section h1 {
        font-size: 48px;
    }

    .Panchnada-hero-section-description {
        font-size: 14px;
    }

    .Panchnada-hero-section-ProductImage {
        width: 18px;
        height: 18px;
    }

    .Panchnada-Pagination {
        flex-direction: column;
    }

    .Panchnada-Pagination-Categories {
        margin: auto;
        min-width: 100%;
    }

    .product-grid-category {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 20px;
    }

    .Panchnada-Pagination-Button {
        flex-direction: row;
        gap: 15px;
    }

    .Panchnada-Pagination-Link {
        margin: auto;
    }

    .Panchnada-Pagination-Container {
        width: 100%;
    }

    .wishlist-btn {
        width: 25px;
        height: 25px;
        transform: translate(5px, 15px);
    }

    .wishlist-btn svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 350px) {
    .product-grid-category {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        gap: 10px;
    }
}


/* font properties */
.font-bold {
    font-weight: 700;
}

.font-semi-bold {
    font-weight: 600;
    font-family: 'archivo';
    font-size: 24px;
}

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

.font-normal {
    font-weight: 400;
}

/* End font properties */


/* margin properties */

.margin-top-16 {
    margin-top: 16px;
}



/* Ends here --------------------------------------------------------------------------------*/

































/* Old css ---------------------------------------------------------------------------------------------------------------- */
/* body {
  width: 100%;
  height: 100%;
} */

/* h1, h2, h3, h4, h5, h6 {
  color: #444;
} */

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}
/* content */
/* #content, #column-left, #column-right {
  padding-bottom: 730px;
} */
@media (min-width: 576px) {
  #content, #column-left, #column-right {
    /* padding-bottom: 400px; */
  }
}
#alert {
  z-index: 9999;
  position: fixed;
  top: 17%;
  right: 5%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: var(--bs-gray-600);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}
/* logo */
#logo {
  text-align: center;
  margin: 7px 0 7px 0;
}
#logo img {
  max-width: 200px;
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
#search {
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}
/* cart */
#cart .img-thumbnail {
  min-width: 100px;
}
#cart .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 14px 35px;
}
#cart .dropdown-menu {
  background: #eee;
}

@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}
/* menu */
#menu {
  background-color: #7e1416;
  /* background-image: linear-gradient(to bottom, #23a1d1, #1f90bb); */
  background-repeat: repeat-x;
  /* border: 1px solid #1f90bb; */
  border-color: #1f90bb #1f90bb #145e7a;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 1rem;
  margin-bottom: 20px;
}
#menu .navbar-nav > li > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  background-color: transparent;
}
#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-top:45px;
  margin-bottom: 30px;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  border: 1px solid #000000;
  position: absolute;
  bottom: -1px;
  width: 100%;
  padding-top: 30px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
/* footer a {
  color: #ccc;
  text-decoration: none;
} */
footer a:hover {
  font-weight: bold;
  transition: 0.3s;
  transform: translateY(-5px);
}
footer h5 {
  /* font-family: "Open Sans", sans-serif; */
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 22px;
  padding: 8px 0;
  /* border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg); */
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  /* text-shadow: 0 1px 0 #FFF; */
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: #741416;
  font-weight: 600;
  font-size: 16px;
  font-family: 'archivo';
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: -5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #741416;
  border-bottom: 2px solid #741416;
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
.product-thumb {
  position: relative;
  height: 100%;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .description {
  padding: 5px 0px 0px 0px;
  margin-bottom: 5px;
}
.product-thumb .description h4 {
  font-weight: bold;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}
.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% -  15px);
    margin-left: 15px;
  }
}
.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #E69500;
}
/* product list */
.price {
  color: #444;
}
.price-new {
  font-weight: 600;
  margin-right:5px;
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
