* {
    font-family: "Libre Baskerville";
}


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


.img {
    width: 100%;
    /* height:300px; */
    background-color: #EFEFEF;
 
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    /* overflow: hidden; */
}
.topProductCarousel .img img{
    width: 60px;
    height: 270px;
}


li.nav-item {
    list-style: none;
}

body {
    overflow-x: hidden;
    padding:0px!important;
}

/* Carousel height */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Black overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    margin-top: -40px;
}

.banner_section {
    width: 100%;
    height: 100%;
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    position: relative;
    /* important for ::before */
    background-color: #fae6ce;
    /* <--- apply background here */
}


@media (min-width: 768px) {
    .banner_section {
        flex-direction: row;
    }
}

.list-ser1{
    padding: 4px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    align-items: center;
    list-style: none;
    margin: 0;

}
.color-anchor{
    text-decoration: none;
    color: #593c2c;
}

.banner_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fae6ce;
    background-image: url('../img/bg-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.banner-desc,
.tagline {
    font-size: 20px;
    color: #AE0A09;
    margin-bottom: 10px;
    display: block;
}

.banner-title {
    font-size: 56px;
    color: #482817;
    font-weight: 700;
    line-height: 62px;
}

.banner-desc {
    color: #482817;
}

.btn-explore {
    border: none;
    background: transparent;
    margin-top: 20px;
    padding: 6px 20px;
    font-size: 20px;
    color: #482817;
    font-weight: 600;
    border-top: 2px solid #8B0A1A;
    border-bottom: 2px solid #8B0A1A;
}

.hero_bg_img .banner-img {
    width: 350px;
    margin-top: 50px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: radial-gradient(to left, #000000, #00000000);
    opacity: .9;
    z-index: 999;
}

/* Navbar blur effect */
.navbar {
    display: flex;
    padding: 0;
    align-items: center;
    background: rgb(250 250 250 / 44%) !important;
    backdrop-filter: blur(71px);
    padding: 0px !important;
}

.header_logo {
    width: 100px;
}

.navbar .nav-link {
    font-size: 18px;
    color: black !important;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0;
}

.navbar .nav-link.NavActive {
    color: #AE0A09 !important;
    border-bottom: 2px solid #AE0A09 !important;
}


/* .navbar .nav-link:hover {
    color: #f0c14b !important;
} */
.search_div {
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 26px;
    background: #FDFDFD;
    position: relative;
    z-index: 1001;
}

.search_div input {
    border: none;
    outline: none;
    background: transparent;
}

.search_div .search_img {
    width: 25px;
    height: 25px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99;
}

/* Search Result Dropdown */
.search-results {
    position: absolute;
    top: 80px;
    right: 230px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 280px;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.search-item {
    padding: 4px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-item .search-img {
    background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
    width: 26px;
    padding: 2px;
    border-radius: 4px;
}

.search-item p {
    margin-bottom: 0;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f5f5f5;
}


.navbar-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bag-div {
    position: relative;
}

.bag-div img:first-child {
    /* bag-2.png */
    display: none;
    /* hide mobile bag */
}

.bag-div img:last-child {
    /* bag.png */
    display: inline-block;
    /* show desktop bag */
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* halka black background */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 999999;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hide initially */
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
    /* Slide in */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    /* border-bottom: 1px solid #ddd; */
}

.cart-header h4 {
    size: 26px;
    color: #482817;
    font-weight: 600;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.close-btn {
    cursor: pointer;
}

.cart-item {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #E6E6E6;
}

.cart-item-img {
    background-color: #f9f8f8;
    padding: 6px 20px;
    border-radius: 6px;
}

.cart-item img {
    width: 60px;
    height: auto;
}

.checkout-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.checkout-flex p {
    margin-bottom: 0;
}

.checkout-flex img {
    width: 25px;
    cursor: pointer;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.price-flex {
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
}

.price-flex p {
    font-size: 20px;
    font-weight: 500;
    color: #482817;
}

.price-flex span {
    font-size: 20px;
    font-weight: 600;
    color: #482817;
}

.button_flex {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.button_flex a {
    text-decoration: none;
}

.cart-footer .checkout-btn {
    width: 100%;
    padding: 6px;
    font-size: 20px;
    background: #a00;
    color: #fff;
    font-weight: 600;
    border: none;
    margin-bottom: 15px;
    border-radius: 30px;
}

.cart-footer .viewcart-btn {
    width: 100%;
    padding: 6px;
    font-size: 20px;
    color: #AE0A09;
    font-weight: 600;
    background: #AE0A091A;
    border: none;
    border-radius: 30px;
}

/* Responsive */
@media(max-width: 768px) {
    .cart-sidebar {
        width: 100%;
    }
}


.bag-div .number {
    width: 20px;
    height: 20px;
    background: #AE0A09;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 5px;
}

.login {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #AE0A09;
    padding: 8px 30px;
    border-radius: 6px;
}

.login:hover {
    color: #fff;
    background: #8a0606;
}


/* Hero text */
.carousel-caption {
    position: absolute;
    top: 40%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 54px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 22px;
    margin-top: 20px;
}

.carousel-caption button {
    margin-top: 30px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 20px;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    padding: 10px 40px;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}


/* Section background */
.feature_section {
    background-color: #FFFBF4;
    border-bottom: 2px solid #D1B991;
}

.feature_section .carousel-item {
    height: 10vh;
    width: 100%;
    position: relative;
}

.feature_section .carousel-item::before {
    background: none;
}

.feature_text {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

/* Number styling */
.feature_number {
    font-size: 60px;
    font-family: serif;
    font-weight: 500;
    color: #AE0A09;
    line-height: 1;
    letter-spacing: -3px;
}

/* Title */
.feature_title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #482817;
    margin-bottom: 5px;
}

/* Subtitle */
.feature_subtitle {
    font-style: italic;
    font-size: 18px;
    color: #A87950;
    border-top: 1px solid #a0613b;
    padding-top: 5px;
    margin-bottom: 0;
}


/* about styling start */
.about_section {
  background-color: #FFFBF4;
  overflow: hidden;
  padding-top: 40px;
}

.about_flex {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

@media (max-width:568px) {
    .about_flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* About tag */
.about_tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 2px 10px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    color: #AE0A09;
    letter-spacing: 3px;
}

/* Title */
.about_title {
    margin-bottom: 15px;
    font-size: 42px;
    text-transform: uppercase;
    color: #482817;
    font-weight: 700;
}

/* Description */
.about_desc {
    color: #482817;
    font-size: 16px;
    line-height: 1.6;
}

/* Custom button */
.read-more {
    background-color: #AE0A09;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: none;
}

.read-more:hover {
    background: #960303;
    color: #fff;
}

/* Image size */
.about_img_2 {
    width: 620px;
    height: auto;
    object-fit: cover;
    margin-left: -250px;
}

.about_img {
    width: 620px;
    height: 100%;
    object-fit: cover;
}

.b-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

@media (max-width:468px) {
    .about_img_2 {
        width: 380px;
        height: auto;
        object-fit: cover;
        margin-left: -26px;
    }

    .about_img {
        width: 380px;
        height: auto;
        object-fit: cover;
    }

    .b-footer {
        flex-direction: column;
        justify-content: center;
    }
}

#product2 {
    position: relative;
    background-color: #FFFBF4;
    z-index: 999;
}

.product_bg img {
    position: absolute;
    width: 700px;
    height: 600px;
    top: 0%;
    left: -40%;
    /* display: none; */
    z-index: -9;
}

/* arrival styling start */
.arrival-section {
    background-color: #F5EBDA;
    padding: 50px 0;
    position: relative;
}

.arrival-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.arrival-card {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #efefef;
}

.arrival-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}


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

/* By default arrival-info hidden rehta hai */
.arrival-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    padding: 40px 6px;
    transform: translateY(100%);
     
    transition: transform 0.5s ease-in-out;
    color: #fff;
    text-align: center;
}

 
.arrival-card:hover .arrival-info {
    transform: translateY(0px);
}

 
.arrival-card:first-child .arrival-info {
    transform: translateY(0px);
}

.main_cards_image {
    
    height: 100%;
   
}
 
.main_cards_image img {
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.arrival-info h3 {
    font-size: 20px;
     color: #000 !important;
    margin-bottom: 20px;
    color: #fff;
}

.arrival-info .btn-custom {
    background-color: #AE0A09;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
   text-decoration: none;

}

.arrival-info .btn-custom:hover {
    background-color: #8B0A1A;
}

.arrival-tag {
    color: #AE0A09;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}

.arrival-title {
    font-size: 42px;
    font-weight: 600;
    color: #482817;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.arrival-desc {
    color: #482817;
    font-size: 18px;
    line-height: 24px;
}

@media (max-width: 468px) {
    .arrival-slider {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .arrival-section .arrows.right,
    .arrival-section .arrows.left {
        display: none;
    }

    .product_bg img {
        position: absolute;
        width: 700px;
        height: 600px;
        top: 0%;
        left: -40%;
        display: none;
        z-index: -9;
    }
}


/* category styling start */
.category-section {
    background-color: #FFFBF4;
}

.cate-span {
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    color: #AE0A09;
}

.cate-heading {
    font-size: 42px;
    font-weight: bold;
    color: #482817;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cate-text {
    color: #482817;
    font-size: 16px;
    line-height: 1.6;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.category-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.category-title {
    font-size: 16px;
    font-weight: bold;
    color: #482817;
    text-transform: uppercase;
    margin-top: 10px;
}


/* upcoming events styling */
.upcoming-events {
    width: 100%;
    padding: 50px 0;
    background-color: #F5EBDA;
}

.section-heading span {
    color: #AE0A09;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-style: 42px;
    font-weight: 600;
    color: #482817;
    font-weight: 700;
}

.event-card {
    width: 100%;
    height: 400px!important;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    transition: transform 0.3s;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #AE0A09;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.event-date span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
}

.event-type {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
}


/* Our product styling */
.our-product {
    width: 100%;
    background-color: #FFFBF4;
    padding: 40px 0;
    position: relative;
}

.product-para {
    font-size: 18px;
    color: #482817;
}

.cards img {
    height: 100%;
        border-radius: 8px 8px 0px 0px;
}



.our-cards {
    display: flex;
    gap: 22px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 0 20px;
    /* overflow: hidden; */
}

.cards {
    background-color: #fff;
    border: 2px solid #DEDEDE;
    border-radius: 10px;
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cards:hover {
    transform: scale(1.02);
}



.cards .img .button-flex {
    display: flex;
    justify-content: space-between;
}

.button-flex .best {
    border: none;
    background: #AE0A09;
    padding: 4px 10px;
    border-radius: 30px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.button-flex .best.off {
    background-color: #fff;
    color: #AE0A09;
}

 .cards .img img {

    transition: transform 0.5s ease;
}

  .cards .content {
    padding: 10px 10px;
    height: 125px;
}

  .cards .content h2 {
    font-size: 20px;
    color: #AE0A09;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
margin-bottom: 0 !important;
}

 .cards .content h3 {
    font-size: 18px;
    
    font-weight: bold;
    color: #482817;
    letter-spacing: 1px;
    line-height: 24px;
    margin-top: 10px;
}

 .cards .content .text-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
align-items: baseline;
}

  .cards .content .text-flex p {
    color: #AE0A09;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

  .cards .content .text-flex .item {
    color: #AE0A09;
    font-size: 18px;
    font-weight: 500;
}

.arrows {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrows img {
    width: 10px;
}

.arrows.left {
    position: absolute;
    top: 60%;
    left: 30px;
}

.arrows.right {
    position: absolute;
    top: 60%;
    right: 20px;
}

/* 2 per view on tablet */
@media (max-width: 992px) {
    .cards {
        flex: 0 0 calc((100% - var(--gap)) / 2);
        min-width: calc((100% - var(--gap)) / 2);
    }
}

/* 1 per view on mobile */
@media (max-width: 576px) {
    .cards {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .our-cards .cards .main_cards_image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .our-cards .cards .img img {
        margin-left: 0px;
        margin-top: 10px;
        width: 150px;
        height: 160px;
    }
}

.arrows.left {
    left: 20px;
}

/* fats and web delevery */
.delivery-section {
    width: 100%;
    padding: 50px 0;
    background-color: #F5EBDA;
}

.left-text h6 {
    color: #ae0a09;
    font-weight: 700;
    letter-spacing: 2px;
}

.left-text h2 {
    color: #482817;
    font-weight: 700;
    margin: 15px 0;
}

.left-text p {
    color: #482817;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 18px;
}

.order-form {
    width: 100%;
    margin: auto;
    /* height: 500px; */
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.order-form h3 {
    color: #ae0a09;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
}

.form-control {
    border-radius: 8px;
}

.form-check-label {
    font-size: 14px;
    color: #444;
}

.form-check-input:checked {
    background-color: #C51E1E !important;
    border-color: #C51E1E !important;
    box-shadow: none !important;
}

/* Style the track */
.form-range::-webkit-slider-runnable-track {
    background: #ddd;
    height: 6px;
    border-radius: 4px;
}

.form-range::-moz-range-track {
    background: #ddd;
    height: 6px;
    border-radius: 4px;
}

.form-range::-ms-track {
    background: transparent;
    border-color: transparent;
    color: transparent;
    height: 6px;
}

/* Style the thumb (circle handle) */
.form-range::-webkit-slider-thumb {
    background: #C51E1E !important;
    border: none;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    margin-top: -6px;
    /* aligns thumb to track */
    cursor: pointer;
    -webkit-appearance: none;
}

.form-range::-moz-range-thumb {
    background: #C51E1E !important;
    border: none;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    cursor: pointer;
}

.form-range::-ms-thumb {
    background: #C51E1E !important;
    border: none;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    cursor: pointer;
}

/* Progress color (left side of thumb) */
.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #C51E1E var(--value, 50%), #ddd var(--value, 50%));
}

.btn_danger {
    background: #AE0A09;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: #fff;
    transition: all .03s ease;
}

.btn_danger:hover {
    background: rgb(125, 5, 5);
}


.testimonials-section {
    background-color: #FFFBF4;
    padding: 60px 0;
    position: relative;
}

.testi-heading {
    font-size: 42px;
    color: #482817;
    font-weight: 600;
}

.testimonials-section .carousel-item {
    height: 30vh;
    width: 100%;
    position: relative;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    display: none !important;
}

.testimonials-section .carousel-item::before {
    background: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 15px;
    height: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}



.testimonial_content {
    text-align: left;
}

.testimonial-text {
    font-size: 14px;
    color: #482817;
    margin-top: 8px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
    color: #AE0A09;
}

.testimonial-title {
    font-size: 13px;
    color: #A87950;
    margin-bottom: 5px;
}



/* footer styling start */
footer {
    background-color: #a50000;
    color: white;
    padding: 30px 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.location {
    display: block;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-bg {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #AE0A09;
    border-radius: 50px;
}

.social-icons i {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.span {
    font-size: 18px;
    font-weight: 500;
}

.line-span {
    display: block;
    font-size: 14px;
}

@media (max-width: 991px) {
    .banner_section {
        padding: 40px 50px;
        flex-direction: column;
        text-align: center;
    }

    .banner-title {
        font-size: 40px;
        line-height: 46px;
    }

    .banner-desc,
    .tagline {
        font-size: 18px;
    }

    .hero_bg_img .banner-img {
        width: 280px;
        margin-top: 30px;
    }

    .cart-sidebar {
        width: 100%;
    }

    header {
        background: #fff !important;
        position: fixed;
        opacity: 1;
    }

    .navbar {
        background: #fff !important;
        backdrop-filter: none;
    }

    .navbar .nav-link {
        color: #000 !important;
    }

    .login {
        background: #AE0A09;
        color: #fff !important;
    }

    .search_div {
        background: #cacaca;
        display: none;
    }

    .search-results {
        display: none;
    }

    .bag-div img:first-child {
        /* bag-2.png */
        display: inline-block;
        margin-bottom: 10px;
        /* show mobile bag */
    }

    .bag-div img:last-child {
        /* bag.png */
        display: none;
        /* hide desktop bag */
    }

    .bag-div .number {
        top: 5px;
        right: -5px;
    }

    .carousel-caption h1 {
        font-size: 20px;
    }

    .feature_text {
        display: flex;
        align-items: start;
        justify-content: start;
        text-align: left;
        gap: 20px;
    }

    .testi-heading,
    .arrival-title,
    .about_title {
        font-size: 18px;
        font-weight: bold;
    }

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

    .carousel-caption button {
        padding: 0;
        padding: 4px 10px;
        font-size: 16px;
    }

    .span,
    footer a {
        line-height: 20px;
        font-size: 15px;
    }

    .product-para {
        font-size: 14px;
        color: #482817;
    }
    .our-cards {
    display: flex;
    gap: 50px;
    padding: 0 50px;
}
}

@media (max-width: 767px) {
    .banner_section {
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 30px;
        line-height: 36px;
    }

    .banner-desc,
    .tagline {
        font-size: 16px;
    }

    .btn-explore {
        font-size: 16px;
        padding: 5px 15px;
    }

    .hero_bg_img .banner-img {
        width: 220px;
        margin-top: 20px;
    }
}


/* responsice styling start */
@media (max-width:568px) {
    .carousel-item {
        height: 74vh;
    }

    .banner_text {
        margin-top: 100px;
    }

    .testimonials-section .carousel-item {
        height: 20vh;
        width: 100%;
        position: relative;
    }

    .navbar-nav {
        display: flex;
        gap: 5px;
        align-items: center;
    }
}

/* Extra small mobile (below 480px) */
@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-desc,
    .tagline {
        font-size: 14px;
    }

    .btn-explore {
        font-size: 14px;
        padding: 4px 12px;
        margin-top: 0;
    }

    /* Subtitle */
    .feature_subtitle {
        font-size: 16px;
    }

    .hero_bg_img .banner-img {
        margin-top: 0px;
    }

    .about_desc {
        color: #482817;
        font-size: 14px;
        line-height: 1.6;
        padding-right: 30px;
    }

    .location {
        display: none;
    }

    .feature_number {
        font-size: 40px;
    }

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

    .left-text h2 {
        font-size: 20px;
    }

}