@font-face {
    font-family: 'GeneralSansRegular';
    src: url(/assets/fonts/GeneralSans-Regular.woff2);
}

@font-face {
    font-family: 'GeneralSansRegularItalic';
    src: url(/assets/fonts/GeneralSans-RegularItalic.woff2);
}

@font-face {
    font-family: 'GeneralSansLight';
    src: url(/assets/fonts/GeneralSans-Light.woff2);
}

@font-face {
    font-family: 'BoskaLight';
    src: url(/assets/fonts/Boska-Light.woff2);
}

@font-face {
    font-family: 'BoskaItalicLight';
    src: url(/assets/fonts/Boska-LightItalic.woff2);
}

@font-face {
    font-family: 'BoskaItalicRegular';
    src: url(/assets/fonts/Boska-MediumItalic.woff2);
}

@font-face {
    font-family: 'GeneralSansSemiBold';
    src: url(/assets/fonts/GeneralSans-Semibold.woff2)
}

* {
    cursor: url('/storage/Artboard3.png'), auto !important;

}

body {

    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
    cursor: url('/storage/Artboard2.png'), auto !important;
}

.bg-green-gleambeam {
    background-color: #d3ff6a !important;
}

.slider {
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* background-repeat: no-repeat;
    background-position: center; */
    /* background-size: cover; */
    object-fit: cover;
    overflow: hidden;
    position: relative;
    margin: auto;
    aspect-ratio: 9 / 2;
}

.slider .list {
    position: relative;
    width: 100%;
    height: 100%;
    /* Use 100% to inherit the height from parent */
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.slider .list img {
    aspect-ratio: 9 / 2;
    width: auto;
    /* Keep the original width of the image */
    height: 100%;
    /* Make the height match the parent's height */
    object-fit: cover;
    /* Ensure the image scales within its container without being cropped */
}



.slider .list .item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .buttons {
    position: absolute;
    top: 45%;
    /* Vertically centered */
    left: 5%;
    /* Button container starts at 5% of the slider width */
    width: 90%;
    /* Takes up 90% of the slider width */
    display: flex;
    justify-content: space-between;
}

/* Styling for Buttons */
.slider .buttons button {
    width: 50px;
    /* Button size */
    height: 50px;
    border-radius: 50%;
    /* Circular buttons */
    background-color: rgba(255, 255, 255, 0.3);
    /* Semi-transparent background */
    color: #fff;
    /* White color for text/icons */
    border: none;
    font-size: 24px;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
}

.slider .dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li {
    list-style: none;
    width: 8px;
    height: 8px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 80px;
}

.booster-serum-title {
    font-family: 'GeneralSansRegular';
    /* GeneralSansLight for G-Body Bright */
    font-size: 28px;
    /* 21pt font size */
    text-align: center;
    /* Center the text */
    color: #1c1c1a;
    /* Dark text color */
    margin-top: 20px;
}

.one-product-info-container {
    width: 100%;
    justify-self: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    /* padding: 20px; */
    /* border-bottom: 1px #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    border-radius: 15px;
    /* background-color: #fff; */

}


.one-product-info-text {
    width: 70%;
    /* Set width to 65% */
    border-radius: 15px;
    /* margin-right: 25px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px; */
}

.one-product-image-container {
    border-radius: 15px;
    width: 30%;
    /* Set width to 30% */
    text-align: right;
    /* Align the image to the right */
    overflow: hidden;
    /* Prevent image from overflowing */
    margin-top: 3rem;
}

.one-product-image {
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Optional: Add border-radius if needed */
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: -5px;
    transition: transform 1.0s ease;
    /* Smooth transition */
    overflow: hidden;
}

.zoom-in {
    border-radius: 15px;
    overflow: hidden;
    transform: scale(1.1);
    /* Zoom-in effect */
}

.zoom-out {
    border-radius: 15px;
    overflow: hidden;
    transform: scale(1);
    /* Zoom-out effect */
}


.one-coming-soon {
    font-family: 'GeneralSansBold';
    font-size: 28px;
    /* 21pt font size */
    color: #1c1c1a;
    /* Same dark color used in the design */
    margin-bottom: 2%;
}

.one-product-name {
    font-family: 'BoskaItalicLight';
    font-size: 16px;
    /* 18pt font size */
    color: #1c1c1a;
    /* Same dark color */
    margin-bottom: 20px;
}

.one-product-description {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #1c1c1a;
    margin-bottom: 30px;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.new-section {
    margin: 25px;
    padding: 50px;
    background-color: #f9f9f900;
    /* Light background for the new section */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), 0px -4px 10px rgba(0, 0, 0, 0.1);

}



.new-section-title {
    font-family: 'GeneralSansBold';
    font-size: 22px;
    color: #1c1c1a;
    margin-bottom: 15px;
}

.new-section-description {
    font-family: 'GeneralSansRegular';
    font-size: 16px;
    color: #1c1c1a;
    line-height: 1.5;
}

/* Base styles remain unchanged */

/* Responsive styles */
@media (max-width: 1080px) {
    .booster-serum-title {
        font-size: 24px;
        /* Adjusted for readability on medium screens */
        margin-top: 15px;
    }

    .one-product-info-container {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center content on narrower screens */
        text-align: center;
    }

    .one-product-info-text {
        margin: 0;
        /* Remove extra margin */
    }

    .one-product-image-container {
        text-align: center;
        /* Center align image on medium screens */
        margin-top: 20px;
    }

    .one-coming-soon {
        font-size: 22px;
        /* Smaller font for better scaling */
    }

    .one-product-name {
        font-size: 14px;
    }

    .one-product-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .booster-serum-title {
        font-size: 20px;
        /* Further reduce title font size */
        margin-top: 10px;
    }

    .one-product-info-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 20px 10px;
        /* Reduced outer margin */
    }

    .one-product-info-text {
        margin: 0;
        /* Center alignment with no margin */
    }

    .one-product-image-container {
        margin-top: 15px;
        /* Spacing between text and image */
    }

    .one-coming-soon {
        font-size: 18px;
    }

    .one-product-name {
        font-size: 13px;
    }

    .one-product-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .booster-serum-title {
        font-size: 18px;
        /* Smaller title font for mobile */
        margin-top: 5px;
    }

    .one-product-info-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 15px 5px;
        /* Compact margin for small screens */
    }

    .one-product-info-text {
        margin: 0;
    }

    .one-product-image-container {
        margin-top: 10px;
        /* Space between text and image */
    }

    .one-coming-soon {
        font-size: 16px;
    }

    .one-product-name {
        font-size: 12px;
    }

    .one-product-description {
        font-size: 11px;
    }
}

/* css dino */
.product {
    background-color: #fff;
    margin: 0 !important;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.container-utama {
    gap: 25px;
    display: flex;
    flex-direction: column;
    margin: 20px 0 20px 0;
}

.container1 {
    display: flex;
    gap: 25px;
}

.container-kanan1 {
    width: 30%;
    /* background-color: red; */

}

.container-kiri1 {
    width: 70%;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
}

.container2 {
    display: flex;
    gap: 25px;
}

.container-kanan2 {
    width: 30%;
    /* background-color: blue; */
    
}

.container-kiri2 {
    width: 70%;
    /* background-color: red; */
    
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.judul {
    font-family: 'GeneralSansRegular';

    font-size: 28px;

    text-align: center;

    color: #1c1c1a;


}

.deskripsi-judul1 {
    /* padding: 25px; */
    padding: 50px;
    background-color: #f9f9f900;
    /* Light background for the new section */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), 0px -4px 10px rgba(0, 0, 0, 0.1);

}
.deskripsi-judul2 {
    /* padding: 25px; */
    padding: 50px;
    background-color: #d3ff6a !important;
    /* Light background for the new section */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), 0px -4px 10px rgba(0, 0, 0, 0.1);

}

.gambar-judul {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    transform-origin: center;
    border-radius: 15px;
}
.bungkus-gambar {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}


/* Zoom effect saat masuk viewport */
.bungkus-gambar.in-view .gambar-judul {
    transform: scale(1.2);
}
 @media (max-width: 768px) {
    .container-utama {
        padding: 0 30px !important;
    }
    .container1 {
        flex-direction: column;
        align-items: center;
    }
    .container-kiri1 {
    }
    .container-kanan1 {
        visibility: hidden;
        display: none;
    }
    .container2 {
        flex-direction: column-reverse;
    }
    .container-kiri2 ,
    .container-kanan2 {
        width: 100%;
    }
    .deskripsi-judul1 ,
    .deskripsi-judul2 {
        padding: 25px !important;
    }
    .products-container {
        flex-direction: column !important;
        margin: 30px !important;
    }
    .product {
        width: 100% !important;
        max-width: 100% !important;
    }
 }