@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


body {
    font-family: "Outfit", sans-serif;
}

.main-product-sec {
    height: 100vh;
    overflow: hidden;
}

.main-product-sec .container,
.main-product-sec .row {
    height: 100%;
}

.main-product-sec .container-fluid {
    height: 100vh
}

.main-product-sec .panel {
    flex: 1;
    height: 100%;
    transition: background-color 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty label {
    color: #fff;
}

.main-product-sec .left {
    background-color: #FFD1DA;
    z-index: 1;
}

.main-product-sec .right {
    background-color: #E6395C;
    z-index: 1;
}

.main-product-sec .text-container {
    padding: 50px;
    text-align: right;
    width: fit-content;
    padding-right: 40%;
}

.main-product-sec h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    color: #333;
    width: fit-content;
    margin: auto;
    margin-right: 0;
    line-height: 70px;
    margin-bottom: 20px;
}

.main-product-sec p#desc {
    width: fit-content;
    margin: auto;
    margin-right: 0;
}

.main-product-sec .product-overlay {
    position: absolute;
    top: 40%;
    left: -45%;
    transform: translateY(-50%);
    z-index: 1;
    right: 0;
    margin: 0;
    width: fit-content;
}

.main-product-sec #main-product {
    /*height: 60vh;*/
    width: 60%;
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.main-product-sec .outer-main-col {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
    z-index: 1;
    margin-left: 5%;
}


.thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    transition: transform 0.3s ease;
}

.thumb.active {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-color: #fff;
}

.thumb.active {
    transform: scale(1.2);
}

.main-product-sec .row {
    display: flex;
    width: 100%;
    position: relative;
}

.product-right-col {
    flex: 1;
    display: flex;
    position: relative;
}

.spacer {
    height: 300px;
    display: block;
}

.cart-icon-box img {
    width: 25px;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-product-sec .container {
    width: 100%;
}

.inner-flavour-col {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.flavour-price h3 {
    font-size: 20px;
}

.flavour-price {
    color: wheat;
}

.flavour-price h3 span {
    color: #fff;
    font-size: 20px;
}

.cart-order-col {
    display: flex;
    gap: 15px;
}

.cart-order-col .cart-icon-box {
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.order-btn-col {
    background: #fff;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 10px 33px;
}

.product-right-col .same-dots {
    width: 15px;
    height: 15px;
    border-radius: 100px;
    background: #fff;
    opacity: 0.2;
    transition: 0.5s;
}

.dots-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7%;
    z-index: 1;
}

.product-right-col .same-dots::after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0.2;
    transition: 0.5s;
}

.order-btn-col a {
    color: #000;
    text-decoration: none;
}

.flavor-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7%;
    z-index: 1;
}

.product-right-col .same-dots.active {
    opacity: 1;
}

.header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-col ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 50px;
}

.menu-col ul li a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-col ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {

    .row {
        flex-direction: column;
    }

    .panel.left,
    .product-right-col {
        width: 100%;
        min-height: 50vh;
    }

    #title {
        font-size: 48px;
    }

    #desc {
        font-size: 16px;
    }

    .flavor-nav {
        right: 20px;
        bottom: 20px;
    }

}


/* ================= MOBILE ================= */
/* Below 768px */

@media (max-width: 768px) {

    .main-product-sec {
        min-height: auto;
    }

    .row {
        flex-direction: column;
        padding: 0px 0;
    }

    .site-header .row {
        flex-direction: row;
    }

    /* Left Panel */

    .panel.left {
        width: 100%;
        min-height: auto;
        text-align: center;
        padding: 40px 20px;
    }


    /* Right Panel */

    .product-right-col {
        width: 100%;
        min-height: auto;
        padding-bottom: 40px;
    }


    /* Title */

    #title {
        font-size: 36px;
    }

    #desc {
        font-size: 15px;
        margin: auto;
    }


    /* Image */

    .product-overlay {
        position: relative;
        margin: 30px 0;
        text-align: center;
    }

    .product-overlay img {
        max-width: 260px;
    }


    /* Flavour Box */

    .flavor-nav {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        text-align: center;
    }


    .inner-flavour-col {
        display: flex;
        justify-content: center;
        gap: 10px;
    }


    /* Cart / Price */

    .animate-right-col {
        margin-top: 15px;
        text-align: center;
    }


    /* Dots */

    .dots-col {
        display: none;
        /* hide on mobile */
    }

}


/* ================= SMALL MOBILE ================= */
/* Below 480px */

@media (max-width: 480px) {

    #title {
        font-size: 30px;
    }

    #desc {
        font-size: 14px;
    }

    .product-overlay img {
        max-width: 220px;
    }

    .flavor-nav h4 {
        font-size: 16px;
    }

    .headerbg {
        padding-top: 100px;
        padding-bottom: 100px;
        background-size: cover;
        background-position: center center;
    }

}