/* ==== GLOBAL FIXES ==== */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    font-family: "Poppins", sans-serif;
    background-color: #F8F4EE;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.page {
    font-family: "Poppins", sans-serif;
}

body.home-main-page {
    padding: 0 75px;
}

/* LAYOUT CSS START */

/* =========================
   Custom Background Colors
   ========================= */
.bg-rose {
    background-color: #B76E79 !important;
}

/* Warm rose */
.bg-peach {
    background-color: #E0BFB8 !important;
}

/* Soft peach */
.bg-olive {
    background-color: #4E6E58 !important;
}

/* Muted green */
.bg-deep-green {
    background-color: #1E3F2F !important;
}

/* Deep forest green */
.bg-cream {
    background-color: #F8F4EE !important;
}

/* Light cream */
.bg-black {
    background-color: #1A1A1A !important;
}

/* Text black tone */
.bg-mint {
    background-color: #C8E2C1 !important;
}

/* Light mint green */

/* =========================
   Custom Text Colors
   ========================= */

.text-black {
    color: #1A1A1A !important;
}

.hover-bg-rose:hover {
    background-color: #dca99d !important;
}

.hover-bg-olive:hover {
    background: #96b8a1 !important;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 40px;
}

p {
    margin-bottom: 1rem;
}

.row-gap-10 {
    row-gap: 10px;
}

.col-gap-10 {
    column-gap: 10px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

[class*="col-"] {
    padding: 0 0.75rem;
    flex: 1;
}

.col-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
}

.col-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.col-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.col-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
}

.col-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive Grid */
@media (max-width: 768px) {
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utilities */
/* Margin */
.m-0 {
    margin: 0 !important;
}

.mt-1 {
    margin-top: .25rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

/* Padding */
.p-0 {
    padding: 0 !important;
}

.pt-1 {
    padding-top: .25rem !important;
}

.pt-2 {
    padding-top: .5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pb-1 {
    padding-bottom: .25rem !important;
}

.pb-2 {
    padding-bottom: .5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

/* Text Alignment */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/* Responsive Text */
@media (max-width: 768px) {
    .text-md-center {
        text-align: center !important;
    }
}

/* Prevent layout overflow */
section,
div,
header,
footer {
    max-width: 100vw;
    /* overflow-x: clip; */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==== CONTAINER ==== */
.container {
    width: 100%;
    max-width: 1734px;
    margin: 0 auto;
    padding: 0 15px;
}

/* LAYOUT CSS END */

/* ==== NAVIGATION BAR ==== */

.navbar {
    padding: 40px 75px;
    background-color: #f8f4ef;
}

.nav_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 134px;
}

.logo img {
    max-width: 100px !important;
    height: 100px !important;
}

.nav-links {
    display: flex;
    gap: 58px;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
    line-height: 28px;
    white-space: nowrap;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 54px;
}

/* .nav-icons.icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
} */

.nav-icons img.icon {
    max-width: 28px !important;
    height: 28px !important;
}

.responsive_nav_wrapper {
    display: none;
}

.mobile-nav-links {
    display: none;
}

form#langForm select {
    font-size: 16px;
    padding: 8px 10px;
    color: #1A1A1A;
    background-color: #F8F4EE;
    border: 2px solid #1A1A1A;
    border-radius: 6px;
    margin: 10px auto 0;
}

.newsletter-form {
    border-radius: 40px !important;
}

form.newsletter-form.footer-newsletter-form {
    background: #C8E2C1;
    border: 3px solid #1A1A1A;
    border-radius: 40px;
}



/* ==== HERO SECTION ==== */
.index-page .hero_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 88px;
    min-height: unset;
}


.index-page .banner-image {
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    background-position-y: 18%;
}

.matcha-menu-banner-image {
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.banner_heading h1 {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 2.4px;
    text-align: center;
    color: #1A1A1A;
    font-weight: 800;
}

.banner_para p {
    font-size: 32px;
    color: #1A1A1A;
    text-align: center;
    line-height: 48px;
}

.hero_content {
    padding-bottom: 34px;
    border-bottom: 1px solid #1A1A1A;
}

/* ==== SHOP SECTION ==== */
.shop-section {
    text-align: center;
    padding-top: 103px;
    display: flex;
    justify-content: center;
}

.shop_section_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid;
    padding-bottom: 71px;
}

.shop-title {
    font-size: 48px;
    color: #1A1A1A;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 3.84px;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.slider-container.arrow {
    width: 45px;
    height: 45px;
    cursor: pointer;
    user-select: none;
}

.slider-wrapper {
    overflow: hidden;
    width: 80%;
}

.slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    gap: 32px;
    padding: 20px 0;
}

.slide {
    flex: 0 0 25%;
    max-width: 310px;
    padding: 24px;
    /* border-radius: 8px;
    transition: all .5s ease-in-out; */
}

/* .slide:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 16px 12px #001b0d0f;
} */

.home-page .product-card img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

/* .slide img:hover {
    transform: scale(1.2);
} */

.view-all-container {
    margin-top: 73px;

}

.primary_button {
    pointer-events: auto;
    cursor: pointer;
    background: #96b8a1;
    border: none;
    padding: 25px 70px;
    margin: 0;
    font-family: inherit;
    font-size: 24px;
    position: relative;
    display: inline-block;
    text-decoration: none;

}

.pink_button {
    background-color: #dca99d !important;
    display: flex;
    justify-content: center;
    max-width: 240px;
    margin-left: 150px;
    margin-top: 30px;
    padding: 25px 48px;

}

.primary_button::before,
.primary_button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button--pan {
    font-weight: 700;
    overflow: hidden;
    color: black;
}

.button--pan span {
    position: relative;
}

.button--pan::before {
    content: '';
    background: #C8E2C1;
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
    transform: translate3d(0, -100%, 0);
}

.pink_button::before {
    content: '';
    background: #E0BFB8C1;
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

/* ==== PRIVATE LABEL SECTION ==== */
.private-label-section {
    padding: 120px 0;
    display: flex;
    justify-content: center;
}

section.private-label-section.second-private-label-section {
    margin-top: -120px;
}

.private_label_wrap {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: left;
    padding-bottom: 80px;
    border-bottom: 1px solid #1A1A1A;
}

.private-label-content {
    flex: 1;
    max-width: 680px;
    margin-top: -40px;
}

.label-title {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 40px;
    color: #1A1A1A;
}

.coming-soon {
    font-size: 48px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 60px;
    letter-spacing: 3.84px;
}

.label-description {
    font-size: 24px;
    line-height: 36px;
    color: #1A1A1A;
    letter-spacing: 1.92px;
}



.private-label-image {
    flex: 1;
    max-width: 460px;
}

.private-label-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==== MATCHA QUALITY SECTION ==== */
.matcha-quality-section {
    display: flex;
    justify-content: center;
}

.matcha_quality_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    padding: 0 75px;
}

.quality-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-item img {
    width: 90px;
}

.matcha-quality-image img {
    width: 100%;
    max-width: 1734px;
}

p.icon-description {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
}

/* ==== NEWSLETTER SECTION ==== */
.newsletter-section {
    text-align: center;
    display: block;
}

.newsletter_wrap {
    display: flex !important;
    justify-content: center;
    padding-bottom: 100px;
    border-bottom: 1px solid #1A1A1A;
    padding: 82px 0 !important;
}

.newsletter-content {
    display: flex !important;
    background: #C8E2C1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 70px;
    width: 100%;
}

.newsletter-title {
    font-weight: 800;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 3.84px;
    color: #1A1A1A;
    margin: 0;
}

.newsletter-subtitle {
    font-size: 32px;
    color: #1A1A1A;
    line-height: 40px;
}

.newsletter-section {
    text-align: center;
    display: block;
    padding: 0 75px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #E0BFB8;
    border-radius: 30px;
    padding: 12px 24px;
    max-width: 460px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.newsletter-form button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
}

.newsletter-form input::placeholder {
    font-size: 16px;
}

.newsletter-form button:hover {
    transform: translateX(2px);
}

img.input-arrow {
    max-width: 24px;
}

/* ==== FOOTER ==== */
.footer-section {
    padding: 140px 15px 30px !important;
    justify-content: center;
}

.footer_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.footer_header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.links-heading {
    margin-top: -110px;
}

h3.footer_header {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;

}

.socials {
    display: flex;
    gap: 40px;
}

.socials img {
    width: 60px;
    height: 60px;
}

.footer-links-wrapper {
    display: flex;
    justify-content: space-around;
}

.footer-links {
    display: flex;
    gap: 150px;

}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 24px;
    line-height: 40px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-newsletter {
    text-align: center;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 48px;
    font-weight: 400;
    text-align: right;
}

.footer-form {
    display: flex;
    align-items: center;
    background-color: #C8E2C1;
    border-radius: 30px;
    padding: 12px 24px;
    min-width: 460px;
    border: 3px solid #1A1A1A;
}

.footer-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.footer-form button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    font-size: 24px;
    line-height: 40px;
    gap: 80px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.footer-bottom span {
    text-decoration: underline;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 100px;
}

.payment-icons img {
    height: 40px;
    margin-left: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
}


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



@media (max-width:1600px) {
    .navbar {
        padding: 40px 30px;
    }

    .nav-icons.icon {
        width: 25px;
        height: 25px;
    }

    .nav_wrapper {
        justify-content: space-around;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 16px;
    }



}


@media (max-width:1200px) {

    /* Header Responsive Css */

    .nav_wrapper {
        display: none;
    }

    .responsive_nav_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        background-color: #f8f4ef;
        position: relative;
        z-index: 999;
    }

    .responsive_nav_wrapper .logo img {
        max-width: 60px !important;
        height: 60px !important;
    }

    .menu-icon img {
        width: 24px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }


    .mobile-nav-links {
        display: none;
        flex-direction: column;
        background-color: #F8F4EE;
        text-align: center;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 30px 0;
        z-index: 998;
    }


    .mobile-nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
        align-items: center;
    }

    .mobile-nav-links a {
        color: #1A1A1A;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 30px;
    }


    .matcha_quality_wrap {
        padding: 0 0;
    }

    .newsletter-section {
        padding: 0;
    }


    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}




@media (max-width: 1024px) {

    .navbar {
        padding: 20px 75px 20px 75px;
    }

    .nav-icons.icon {
        width: 20px;
        height: 20px;
    }


    .slide {
        flex: 0 0 50%;
    }


    .banner_heading h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .banner_para p {
        font-size: 28px;
    }

    .shop-title {
        font-size: 40px;
        line-height: 50px;
    }

    .shop-section {
        padding-top: 40px;
    }


    .slider-wrapper .slide {
        flex: 0 0 100%;
        padding: 24px 24px 0;
    }

    .private_label_wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }


    .private-label-content {
        margin: auto;
    }

    .coming-soon {
        font-size: 40px;
        line-height: 50px;
    }

    .label-title {
        font-size: 28px;
    }

    .private-label-section {
        padding: 60px 0;
    }

    a.primary_button.pink_button.button--pan {
        margin: auto;
    }

    section.private-label-section.second-private-label-section {
        margin-top: -70px;
    }


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

    .private-label-image {
        margin: auto;
    }

    .newsletter-title {
        font-size: 40px;
        line-height: 50px;
    }

    .newsletter-subtitle {
        font-size: 28px;
    }

    .quality-icons {
        gap: 80px;
    }



    /* Footer Section Responsive CSS */


    .footer_header h3 {
        margin-right: auto;
        margin-bottom: 30px;
    }


    .footer-links ul li a,
    .footer-bottom p {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-bottom {
        gap: 20px;
    }

    .socials img {
        width: 40px;
        height: 40px;
    }

    .payment-icons img {
        margin-left: 20px;
    }

    .footer_header {
        gap: 150px;
    }

    .footer-links-wrapper {
        gap: 40px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body.home-main-page {
        padding: 0;
    }

    /* 
    Header Responsive Css */

    .responsive_nav_wrapper {
        padding: 0px 0px;
    }

    .navbar {
        padding: 20px;
        background-color: #f8f4ef;
    }


    .index-page .banner-image {
        height: 40vh;
    }

    .index-page .hero_wrap {
        gap: 28px;
    }

    .shop-section {
        padding-top: 30px;
    }

    section.private-label-section.second-private-label-section {
        margin-top: -50px;
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 1.84px;
    }

    .newsletter-section {
        padding: 0px !important;
    }

    .newsletter-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .newsletter-form {
        display: flex;
        align-items: center;
        background-color: #E0BFB8;
        border-radius: 30px;
        padding: 8px 4px;
    }

    .newsletter-content {
        padding: 40px 20px;
    }

    .private-label-content {
        max-width: 100%;
    }

    .private-label-image {
        max-width: 320px;
    }

    .private_label_wrap {
        gap: 40px;
    }

    .label-title {
        font-size: 24px;
    }

    .coming-soon {
        font-size: 32px;
        line-height: 40px;
        margin: 0;
    }

    .private-label-section {
        padding: 32px 0;
    }

    .banner_para p {
        font-size: 24px;
    }

    .shop-title {
        font-size: 32px;
        line-height: 40px;
    }

    .banner_heading h1 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 1.84px;
    }

    .shop_section_wrap {
        padding-bottom: 50px;
    }

    .slider {
        gap: 10px;
    }


    .view-all-container {
        margin-top: 30px;
    }

    .primary_button {
        padding: 16px 40px;
    }

    .pink_button {
        padding: 16px 10px;
    }

    h1 {
        padding-bottom: 0px !important;
    }

    .quality-icons {
        gap: 40px;
        flex-direction: column;
        flex-wrap: nowrap;
    }


    .matcha-quality-section {
        padding: 20px 0 0;
    }

    .matcha_quality_wrap {
        gap: 40px;
    }

    .newsletter_wrap {
        padding: 62px 0 !important;
    }

    p.icon-description {
        font-size: 24px;
        line-height: 30px;
    }

    .quality-item img {
        width: 60px;
        margin-bottom: -10px;
    }

    .label-description {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0;
    }

    /* .logo {
        width: 80px;
    } */
    .logo img {
        max-width: 80px !important;
        height: 80px !important;
    }


    /* Footer Responsive CSS */

    .footer-links-wrapper {
        gap: 20px;
    }

    .footer-links {
        gap: 0px;
    }

    h3.footer_header {
        font-size: 24px;
        line-height: 46px;
        font-weight: 400;
    }

    .slider-container .arrow {
        width: 24px;
        height: 24px;
    }

    .footer-links ul li a,
    .footer-bottom p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-form {
        min-width: 330px;
    }

    .footer-form input {
        padding: 8px;
        font-size: 16px;
    }

    .footer-newsletter p {
        text-align: center;
    }

    .newsletter-form input {
        font-size: 16px;
    }

    .socials {
        gap: 8px;
    }

    .socials img {
        width: 30px;
        height: 30px;
    }

    .copyright {
        gap: 40px;
    }

    .payment-icons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .p-quantity input,
    .p-price.matcha-product,
    select.form-control.select2 {
        min-width: 280px !important;
    }

    .breadcrumb ul li a {
        font-size: 18px;
    }

    .breadcrumb.mb_30.produtc-breadcums ul li {
        font-size: 18px;
    }

}

.product-info a {
    text-decoration: none;
    color: #1A1A1A;
}


.home-page .product-card {
    position: relative;
    overflow: hidden;
    width: 200px;
}


.home-page .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-page .product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.home-page .add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C8E2C1;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    width: 90%;
}

.home-page .product-card:hover .add-to-cart-btn {
    opacity: 1;
}

.home-page .stock-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(128, 128, 128, 0.8);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    font-size: 14px;
    z-index: 3;
}

.home-page .cart-sidebar {
    position: fixed;
    top: 0;
    right: -800px;
    width: 750px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.home-page .cart-sidebar.open {
    right: 0;
}

.home-page .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.home-page .cart-footer {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

.home-page .you-may-also-like,
.home-page .cart-data {
    margin-top: 40px;
}

.home-page .view-cart-btn {
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    padding: 16px 20px;
    background-color: transparent;
    color: #1A1A1A;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    font-weight: 600;
    border: 1px solid #1A1A1A;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color .5s ease;
}



.home-page #cartItems li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.home-page #cartItems img {
    width: 40px;
    margin-right: 10px;
}

.home-page .suggested-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 10px;
}

.home-page .suggested-item img,
.home-page #cartItems img {
    width: 60px !important;
    margin-right: 10px;
    height: 60px !important;
    object-fit: cover;
}

.home-page .suggested-item button {
    background: transparent;
    color: #1A1A1A;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 0.5px solid #ddd;
}

.home-page .cart_slider_wrape {
    display: flex;
    gap: 30px;
}



.you-may-also-like h4 {
    font-size: 20px;
    font-weight: 600;
}

.cart-header h3,
.you-may-also-like h4 {
    margin-bottom: 40px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
}



ul#cartItems {
    padding: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-footer p {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.cart-footer strong {
    font-size: 20px !important;
    font-weight: 400 !important;
}

span#cartTotal {
    font-weight: 800;
}

.cart-header button {
    background: #ddd;
    color: black;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 15px;
    margin-bottom: 40px;
    font-size: 20px;
    width: 30px;
    height: 30px;
}

.card_item_footer_section {
    display: flex;
    flex-direction: column;
    gap: 450px;
}

.slide.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

button.quanty_btn {
    background: none;
    border: none;
}

.product-info {
    text-align: left;
}




.home-page .view-cart-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #1A1A1A;
    z-index: -1;
    transition: height .5s ease;
}

.home-page .view-cart-btn:hover::before {
    height: 100%;
}

.home-page .view-cart-btn:hover {
    color: white;
}

.button_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.quantity_all {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 4px 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
}

button.remove_item_btn {
    border: none;
    background: none;
    font-size: 20px;
}

.qunatity_remove {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

ul#cartItems .name_item {
    font-size: 16px;
}

.qunatity_remove .price_quantity {
    font-size: 16px;
    font-weight: 700;
}

.cart-data {
    position: fixed;
    max-width: 325px;
    transform: translateX(800px);
}

.cart-sidebar.open .cart-data {
    transform: translateX(365px);
}

.you-may-also-like {
    max-width: 340px;
}

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

.you-may-also-like {
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.home-page .product-card:hover img {
    transform: scale(1.2);
}



.home-page .add-to-cart-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #96b8a1;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.home-page .add-to-cart-btn:hover::after {
    animation: slideFlash 0.80s ease 1;
}

@keyframes slideFlash {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }

    50% {
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: black;
    border: none;
    font-size: 40px;
    font-weight: 800;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev {
    left: 100px;
}

.slider-btn.next {
    right: 100px;
}

@media (max-width:1440px) {
    .slider-btn.prev {
        left: 80px;
    }

    .slider-btn.next {
        right: 80px;
    }
}

@media (max-width:1200px) {
    .slider-btn.prev {
        left: 0px;
    }

    .slider-btn.next {
        right: 0px;
    }
}


/* Cart detail popup section */
@media (max-width:768px) {
    .cart-sidebar.open .cart-data {
        transform: translateX(0px);
    }

    .cart-data {
        position: static;
        max-width: unset !important;
        transform: translateX(0px);
    }

    .you-may-also-like {
        padding-right: 0px;
        border-right: none;
        max-width: unset !important;
    }

    .cart_slider_wrape {
        flex-direction: column;
    }

    .card_item_footer_section {
        gap: 100px;
    }

    ul#cartItems {
        border-bottom: none;
        padding-bottom: 10px;
    }
}