@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: 'GeneralSansSemiBold';
    src: url(/assets/fonts/GeneralSans-Semibold.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);
}

* {
    cursor: url('/storage/Artboard2.png'), auto !important;

}

body {

    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
    overflow-x: hidden;
    cursor: url('/storage/Artboard3.png'), auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.reviews-section {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviews-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.overall-rating {
    margin-bottom: 0px;
}

.rating-value {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.rating-icons {
    color: #d3ff6a;
    font-size: 24px;
}

.rating-snapshot {
    margin-top: 20px;
}

.rating-snapshot h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rating-snapshot ul {
    list-style: none;
    padding-left: 0;
}

.rating-snapshot li {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

.bar-container {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 8px;
    width: 100%;
    margin: 5px 0;
}

.bar {
    background-color: #f2b01e;
    border-radius: 5px;
    height: 100%;
}

.recommendation {
    display: block !important;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-top: 20px;
}

.recommendation span {
    color: #4caf50;
    /* Green for 'recommend' */
}


.list-freeshipping {
    position: relative;
    width: 100%;
    height: 30px;
    background: #1c1c1a;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 17px;
    margin-bottom: 17px;
}

.list-freeshipping .text {
    position: absolute;
    opacity: 0;
    text-align: left;
    transform: translateY(-100%);
    /* Start above the container */
    animation: textCycle 6s linear infinite;
    /* Start cycling animation */
    animation-play-state: paused;
    /* Initial state is paused */
}

/* Show text1, then text2, then text3 */
.list-freeshipping .text:nth-child(1) {
    animation-delay: 0s;
}

.list-freeshipping .text:nth-child(2) {
    animation-delay: 2s;
}

.list-freeshipping .text:nth-child(3) {
    animation-delay: 4s;
}

/* Keyframes for cycling through texts */
@keyframes textCycle {

    0%,
    20% {
        opacity: 1;
        transform: translateY(0);
        /* Text is fully visible */
    }

    33.33%,
    100% {
        opacity: 0;
        transform: translateY(100%);
        /* Text moves down and out */
    }
}

/* Play/Pause button styling */
.play-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #1c1c1a00;
    color: #ffff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

.play-button:hover {
    color: #f6f5e9;
}

/* CSS FOR PRODUCT DETAILS */
.booster-serum-title {
    font-family: 'GeneralSansLight';
    /* GeneralSansLight for G-Body Bright */
    font-size: 28px;
    /* 21pt font size */
    text-align: center;
    /* Center the text */
    color: #1c1c1a;
    /* Dark text color */
    margin-bottom: 30px;
}

.one-product-info-container {
    width: 100%;
    justify-self: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin: 25px 20px; */
    margin-top: 17px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.one-product-info-text {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    /* Spacing between text and image */
}

.one-product-image-container {
    /* width: 720px; */
    max-width: 49.5%;
    border-radius: 15px;
    text-align: right;
    /* Align the image to the right */
    overflow: hidden;
    /* Ensures the image doesn't exceed its container */
}

.one-product-image img {
    margin-bottom: -5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the image covers the area, cropping if necessary */
    aspect-ratio: 4 / 3.5;
    /* Set the aspect ratio */
    border-radius: 15px;
    /* Optional: Add border-radius if needed */
    transition: transform 1.0s ease;
    /* Smooth transitions for zooming */
    overflow: hidden;
}

/* Additional classes for zoom in and out */
.zoom-in {
    transform: scale(1.1);
    /* Zoom-in effect */
}

.zoom-out {
    transform: scale(1);
    /* Zoom-out effect */
}

.one-coming-soon {
    text-align: left;
    font-family: 'GeneralSansRegular';
    font-size: 28px;
    /* 21pt font size */
    margin-top: 20px;
    margin-bottom: 20px;
    color: #1c1c1a;
    /* Same dark color used in the design */
}

.one-product-name {
    font-family: 'BoskaItalicLight';
    font-size: 20px;
    /* 18pt font size */
    color: #1c1c1a;
    /* Same dark color */
    margin-bottom: 15px;
    margin-top: 30px
}

.one-product-description {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #1c1c1a;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: justify;
}

.one-notify-button {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #1c1c1a;
    background-color: transparent;
    /* Transparent background */
    border: 1px solid #1c1c1a;
    /* Border with the same dark color */
    padding: 10px 20px;
    border-radius: 15px;
    /* Rounded corners */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    transition: background-color 0.1s, box-shadow 0.3s;
    /* Smooth hover effect */
}

.one-notify-button:hover {
    /* filter: brightness(80%); */
    transform: translateY(-3px);
    background-color: #dadada88;
}

.one-size-button.active {
    background-color: #807dff;
    /* Blue background when active */
    color: white;
    /* White text */
    border-color: #807dff;
    /* Blue border */
}

.one-size-button.active:hover {
    transform: translateY(-3px);
    background-color: #807dff;
    /* Blue background when active */
    color: white;
    /* White text */
    border-color: #807dff;
    /* Blue border */
}

.one-notify-button i {
    margin-right: 10px;
    /* Spacing between bell icon and text */
    font-size: 16px;
    /* Adjust icon size */
}

/* .one-notify-button:hover {
    background-color: rgba(196, 196, 196, 0.094); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    filter: brightness(10%);
} */
.one-size-buttons {
    display: flex;
    /* Flex to align the buttons horizontally */
    margin-top: 20px;
    gap: 10px;
    /* Add space between buttons if needed */
}

.one-size-button {
    margin: 0 5px;
    /* Adjust margin to add space between buttons */
}



.two-notify-button {
    margin-left: 1%;
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #807dff;
    /* background: linear-gradient(to right,  #ffd6d9, #e2ffa0,#f9edca); */
    background-color: transparent;
    border: 1px solid #7f7dff00;
    /* Border with the same dark color */
    padding: 10px 36px;
    border-radius: 20px;
    /* Rounded corners */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Smooth hover effect */
}

.two-notify-button:hover {
    /* background: linear-gradient(to right, #e2ffa0,#f9edca, #ffd6d9); */
    filter: brightness(99%);
    background-color: #dedede44;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.two-notify-button i {
    margin-right: 10px;
    font-size: 16px;
}


.two-size-buttons {
    display: flex;
    /* Flex to align the buttons horizontally */
    margin-top: 20px;
    gap: 10px;
    /* Add space between buttons if needed */
}

.two-size-button {
    margin: 0 5px;
    /* Adjust margin to add space between buttons */
}

.padding {
    margin-left: 3%;
}

.social-icons {
    margin-left: 3%;
    display: flex;
    /* Use flexbox for layout */
    gap: 20px;
    /* Space between icons */
    margin-top: 20px;
    /* Space above the icons */
}

.social-icons a {
    display: inline-block;
    /* Align icons inline */
    transition: transform 0.3s ease;
    /* Smooth hover effect */
    text-align: center;
    /* Center text within the icon (if any) */
}

.social-icons img {
    width: 30px;
    /* Adjust this width as needed for your images */
    height: auto;
    /* Maintain aspect ratio */
    transition: transform 0.3s ease;
    /* Smooth hover effect */
}

.social-icons a:hover img {
    transform: scale(1.1);
    /* Slight scale on hover */
}


.one-thin-line {
    border: 0;
    /* Remove default border */
    height: 1px;
    /* Set the height of the line */
    background-color: #ccc;
    /* Light gray color for the line */
    margin: 20px 0;
    /* Space above and below the line */
}

.one-product-features {
    list-style-type: none;
    /* Remove default list styling */
    padding: 0;
    /* Remove default padding */
    text-align: center;
    /* Center the list items */
    display: flex;
    /* Use flexbox to align items horizontally */
    justify-content: center;
    /* Center the items horizontally */
}

.one-product-features li {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    /* Adjust font size as needed */
    color: #1c1c1a;
    /* Same dark color */
    margin: 0 10px;
    /* Space between list items */
}

/* Styling for dropdown sections */
.dropdown-section {
    /* margin: 0px;  */
    /* margin: 20px 0px 20px -2%;  */
    margin: 20px;
    width: 50%;
    align-items: left;
}

.dropdown-title {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #1c1c1a;
    border-bottom: 1px solid #ccc;
    width: 100%;
    /* Width of the dropdown title */
    padding: 10px 0;
    /* Padding above and below the text */
    cursor: pointer;
    /* Cursor style on hover */
    position: relative;
    /* Positioning context */
    list-style: none;
    /* Remove list styling */
    align-items: left;
    text-align: left;
    /* Align text to the left */
    margin: 0;
    /* Center the dropdown title element in the parent */
    margin-left: 0px;

}

.dropdown-desc {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    color: #1c1c1a;
    padding-top: -20px;
    width: 90%;
    /* Ensure dropdown content matches title width */
    margin: 0 auto;
    /* Center the dropdown content in the parent */
    text-align: justify;
    /* Align text to the left */

}

/* Thinner expand/collapse symbols */
details[open] summary::after {
    content: "−";
    /* Collapse symbol */
    font-size: 20px;
    font-weight: 100;
    /* Thinner */
    position: absolute;
    right: 0;
    /* Position to the right */

}

details summary::after {
    content: "+";
    /* Expand symbol */
    font-size: 20px;
    font-weight: 100;
    /* Thinner */
    position: absolute;
    right: 0;
    /* Position to the right */
}

/* Styling for the Key Ingredients section */
.key-ingredient-content {
    display: flex;
    /* Flex layout for ingredient content */
    align-items: flex-start;
    /* Align items at the top */
    margin-top: 10px;
    /* Margin above the key ingredients */
    width: 100%;
    /* Set width to match dropdown title */
    margin-left: auto;
    /* Center in the parent container */
    margin-right: auto;
    /* Center in the parent container */
}

.ingredient-image {
    width: 20%;
    /* Adjust as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin-right: 20px;
    /* Space between image and text */
    border-radius: 8px;
    /* Optional: border radius */
    margin-top: 5%;
    margin-left: 2.5%;
}

.ingredient-details {
    flex-grow: 0.9;
    /* Allow text to take the remaining space */
}

.ingredient-title {
    font-family: 'GeneralSansRegular';
    /* Different font family */
    font-size: 16px;
    /* Larger font for ingredient title */
    color: #1c1c1a;
    /* Text color */
    margin-bottom: 10px;
    /* Margin below title */
    text-align: center;
    width: 80%;
}

/* Nested dropdowns inside Key Ingredients */
.nested-dropdown {
    font-family: 'GeneralSansLight';
    /* Consistent font */
    font-size: 16px;
    /* Consistent font size */
    color: #1c1c1a;
    /* Text color */
    /* border-bottom: 1px solid #ccc; */
    padding: 10px 0;
    /* Padding for nested dropdown */
    cursor: pointer;
    /* Cursor style on hover */
    position: relative;
    /* Positioning context */
    list-style: none;
    /* Remove list styling */
    width: 90%;
    /* Width of the nested dropdown */
    margin: 0 auto;
    /* Center the nested dropdown in the parent */
}



/* Carousel Container */
.carousel {
    position: relative;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

/* Carousel Inner */
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: auto;
    position: relative;
}

/* Carousel Items */
.carousel-item {
    min-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Navigation Dots - Positioned Inside the Image */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    /* Adjust this value to position dots higher or lower inside the image */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    /* Semi-transparent white background */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    /* Fully white when active */
}

.grid {
    max-width: 48%;
    margin: 20px;

}

.grid .title {
    font-size: 28px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    padding: 15px;
}

.grid .image-container {
    columns: 3 50px;
    gap: 10px;
}

.grid .image-container img {
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
}

.grid .image-container img:hover {
    filter: brightness(80%);
    transform: translateY(-3px);
}

/* Modal (popup) style */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* On top */
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Dark background */
    text-align: center;
    border-radius: 15px;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
}

.close:hover,
.close:focus {
    color: #535353;
    text-decoration: none;
    cursor: pointer;
}

/* Image styles */
.image-popup {
    cursor: pointer;
    transition: 0.3s;
    border-radius: 15px;
}

.image-popup:hover {
    filter: brightness(90%);
    border-radius: 15px;
}


/* Apply to the default Swal2 confirm button */
.swal2-confirm.custom-subscribe-button {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* background: linear-gradient(to right,  #ffd6d9, #e2ffa0,#bfbeff) !important;  */
    background-color: #fff;
    color: #807dff !important;
    /* Ensure text is white */
    border-radius: 15px !important;
    /* Optional: Rounded corners */
    padding: 10px 20px !important;
    /* Optional: Padding */
    font-family: 'GeneralSansRegular' !important;
}

/* Optional: Add hover effect */
.swal2-confirm.custom-subscribe-button:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* background: linear-gradient(to right, #e2ffa0,#f9edca, #ffd6d9) !important;   */
}

.ingredient-desc-popup {
    font-family: 'GeneralSansRegular';
    font-weight: lighter;
    font-size: 16px;
    color: #1c1c1a;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    text-align: left;
}

.full-ingredients {
    font-family: 'GeneralSansLight';
    font-weight: lighter;
    font-size: 16px;
    color: #1c1c1a;
    display: block;
    margin-top: 20px;
    cursor: pointer;
}

.popup {
    display: flex;
    /* Flex to center content */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
    z-index: 1000;
    /* Sit on top */
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 500px;
    /* Max width */
    position: relative;
    /* Position relative for close button */
}

.close {
    color: #535353;
    position: absolute;
    /* Position absolute for close button */
    right: 10px;
    /* Align to the right */
    top: 10px;
    /* Align to the top */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.reviews-section {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff00;
    width: 100%;
    justify-self: center;
    margin: 0 auto;

    border-radius: 15px;

    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.reviews-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 17px;
}

.ok {
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 50px;
    border-radius: 15px;

}

h2,
h4 {
    margin: 0;
    font-size: 20px;
    /* Adjusted font size for headings */
}

.overall-rating {
    height: 250px;
    width: 300px;
    background-color: #7f7dff;
    flex-direction: column;
    display: flex;
    /* ubah dari block ke flex */
    align-items: center;
    /* vertikal center */
    justify-content: center;
    /* horizontal center */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
    border-radius: 15px;
    margin: 0px;
}

.section-review {
    height: 250px;
    width: 200px;
    /* pastikan dia punya lebar */
    display: flex;
    flex-direction: column;
    /* biar isi turun ke bawah */
    align-items: center;
    /* horizontal center */
    justify-content: center;
    /* vertical center */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
    border-radius: 15px;
    margin: 0;
}

.section-review h2 {
    font-family: 'BoskaItalicLight';
    margin: 0 !important;
}

.rating-value {
    font-family: 'GeneralSansRegular';
    font-size: 20px;
    /* Emphasized rating value */
    color: #333;
    align-items: left;
}

.rating-value h1 {
    color: #d3ff6a;
    font-size: 50px;
    -webkit-text-stroke: 2.5px #d3ff6a;

}

.rating-value span {
    display: block;
    font-size: 16px;
    /* Smaller font for subtext, e.g., review count */
}

.review-form {
    font-family: 'GeneralSansLight';
    font-size: 16px;
    /* Slightly larger font for form */
    text-align: left;
    margin-left: 20px;
    margin-top: -5%;
}

.stars {
    margin: 10px 0;
    display: flex;
    justify-content: left;
}

.star {
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    margin: 0 5px;
    transition: color 0.3s ease, transform 0.2s ease;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3%;
    height: auto;
}

.star:hover,
.star.active {
    color: #333;
}

.star:hover {
    transform: scale(1.2);
}

.rating-icons {
    margin: 10px 0;
    display: flex;
    justify-content: left;
}

.icon {
    font-size: 20px;
    /* Size of the icons */
    color: #010101;
    /* Gold color for filled icons */
    margin: 0 5px;
}

.half-icon {
    position: relative;
    /* Positioning for the half icon */
}

.half-icon:before {
    content: '\2605';
    /* Unicode for a filled icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #1d1d1d;
    /* Color for the filled icon */
    clip-path: inset(0 50% 0 0);
    /* Clip to show half */
    z-index: -1;
    /* Place behind the outline */
}


.review-form p {
    font-family: 'GeneralSansLight';
    color: #777;
    font-size: 16px;
    /* Smaller font for additional instructions */
}

.rating-snapshot {
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    height: 250px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 15px;
    margin: 0px;
    font-family: 'GeneralSansLight';
    font-size: 16px;
    /* Standard font for the snapshot section */
}

.section-snapshot {
    padding: 10px 50px;
    gap: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 250px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.rating-snapshot ul {
    list-style: none;
    padding: 0;
}

.rating-snapshot li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.bar-container {
    width: 200px;
    height: 10px;
    background-color: #ddd;
    margin: 0 10px;
    border-radius: 10px;
}

.bar {
    height: 100%;
    background-color: #666;
    border-radius: 10px;
}

.section-text-review {
    display: flex;
    gap: 10px;
}

.testimony-container {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    margin-top: 17px;
    width: 100%;
    justify-self: center;
    background-color: #ffffff00;
}

.testimony-left {
    flex: 1;
    border-right: 1px solid #ccc;
    padding-right: 20px;
    margin-right: 20px;
}

.testimony-right {
    padding: 20px;
    flex: 3;
}

.testimony-left p {
    margin: 5px 0;
}

.bold {
    font-weight: bold;
    margin: 0px;
}

.rating {
    color: #333;
}

.testimony-right .stars {
    display: inline-block;
}

.testimony-right .testimony-text {
    margin: 10px 0;
    text-align: justify;
}

.testimony-images {
    display: flex;
    gap: 10px;
}

.testimony-images img {
    max-width: 150px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.recommend {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.recommend i {
    color: black;
}

.actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.helpful,
.report {
    cursor: pointer;
    color: #333;
}

.thumbs-up,
.thumbs-down {
    margin-left: 5px;
    color: #1c1c1a;
    /* Neutral color */
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1.2em;
}

.thumbs-up:hover,
.thumbs-down:hover {
    color: #000000;
}

.report:hover {
    text-decoration: underline;
}

/* Styling for active thumbs */
.active {
    color: #333;
}

.shopee-button {
    background-color: #F7531D;
    /* Warna merah-oranye Shopee */
}

.tokopedia-button {
    background-color: #00B140;
    /* Warna hijau Tokopedia */
}

.tiktok-button {
    background-color: #000000;
    /* Warna hitam TikTok */
}

.shop-icon {
    width: 50px;
    /* sesuaikan ukuran tombol */
    height: 50px;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    border-radius: 50%;
    /* opsional, untuk membuat bulat */
    text-decoration: none;
}

.shop-icon img {
    max-width: 70%;
    max-height: 70%;
}

.shop-icon i {
    margin-top: 10px;
    max-width: 90%;
    max-height: 90%;
}


/* Tambahan efek hover untuk meningkatkan pengalaman pengguna */

/* General styles remain the same */

/* RESPONSIVE STYLES */

/* For screens 1080px and below */
@media screen and (max-width: 1080px) {
    .one-product-info-container {
        flex-direction: column;
        /* Stack text and image vertically */
        margin: 30px 15px;
    }

    .one-product-info-text {
        margin-right: 0;
        /* Remove right margin */
        margin-bottom: 20px;
        /* Add space between text and image */
    }

    .one-product-image-container {
        text-align: center;
        /* Center image */
    }

    .one-size-buttons {
        flex-direction: column;
        /* Stack size buttons vertically */
        align-items: center;
        /* Center buttons */
    }

    .one-size-button {
        margin: 10px 0;
        /* Adjust margin between buttons */
    }

    .social-icons {
        justify-content: center;
        /* Center social icons */
    }

    .dropdown-section {
        width: 100%;
        /* Make dropdowns take full width */
    }

    .key-ingredient-content {
        flex-direction: column;
        /* Stack ingredient image and details vertically */
        align-items: center;
        /* Center the content */
    }

    .ingredient-image {
        width: 50%;
        /* Adjust image size */
        margin-bottom: 20px;
        /* Add space between image and text */
    }

    .ingredient-title {
        width: 100%;
        /* Adjust title width */
        text-align: center;
        /* Center title */
    }

    .nested-dropdown {
        width: 100%;
        /* Make nested dropdown take full width */
    }

    .reviews-section {
        padding: 15px;
        width: 100%;
        /* Reduce width slightly */
    }

    .h2,
    .h4 {
        font-size: 16px;
        /* Slightly smaller heading size */
    }

    .overall-rating,
    .review-form {
        margin-top: 0;
        /* Adjust for layout consistency */
        text-align: center;
        /* Center elements */
    }

    .rating-value {
        font-size: 16px;
        /* Slightly smaller font size */
    }

    .rating-value span {
        font-size: 16px;
        /* Smaller subtext */
    }

    .review-form {
        font-size: 16px;
        /* Adjusted font size */
    }

    .star {
        font-size: 20px;
        /* Slightly smaller stars */
        padding: 2%;
        /* Adjust padding for smaller screen */
    }

    .rating-snapshot {
        font-size: 16px;
        /* Smaller snapshot text */
    }

    .bar-container {
        width: 150px;
        /* Narrower bars */
    }

}

/* For screens 768px and below */
@media screen and (max-width: 768px) {
    body {
        padding: 0 !important;
    }

    .list-freeshipping {
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .grid .image-container img {
        aspect-ratio: 1 !important;
        height: auto !important;
    }

    .one-product-features {
        flex-wrap: wrap;
    }
    .one-product-info-text {
        margin: 20px !important;
    }
.dropdown-section {
    margin: 0 !important;
}
.dropdown-section {
    padding: 20px !important
}
    .reviews-section {
        width: 100% !important;
        margin: 30px !important;
    }

    .section-review {
        width: 100% !important;
    }

    .section-snapshot {
        flex-direction: column-reverse;
        height: auto !important;
        width: 100% !important;
    }

    .testimony-container {
        width: 100% !important;
        margin: 30px !important;
    }

    .booster-serum-title {
        font-size: 28px;
        /* Adjust font size */
    }

    .one-product-info-container {
        flex-direction: column-reverse !important;
        /* Stack text and image vertically */
        margin: 30px 15px;
    }


    .one-product-image-container {
        text-align: center;
        /* Center image */
        max-width: 100% !important;
    }

    .one-size-buttons {
        flex-direction: row !important;
        /* Stack size buttons vertically */
        align-items: center;
        /* Center buttons */
    }

    .one-size-button {
        margin: 10px 0;
        /* Adjust margin between buttons */
    }

    .social-icons {
        justify-content: center;
        /* Center social icons */
    }

    .dropdown-section {
        width: 100%;
        /* Make dropdowns take full width */
    }

    .key-ingredient-content {
        flex-direction: column;
        /* Stack ingredient image and details vertically */
        align-items: center;
        /* Center the content */
    }

    .ingredient-image {
        width: 60%;
        /* Adjust image size */
        margin-bottom: 20px;
        /* Add space between image and text */
    }

    .ingredient-title {
        width: 100%;
        /* Adjust title width */
        text-align: center;
        /* Center title */
    }

    .nested-dropdown {
        width: 100%;
        /* Make nested dropdown take full width */
    }

    .grid {
        max-width: 100%;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .grid .image-container {
        columns: 2 50px;
    }

    .popup-content {
        width: 90%;
    }

    .reviews-section {
        padding: 10px;
        width: 90%;
        /* Reduce width for mobile devices */
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
        /* Stack items vertically */
    }

    .h2,
    .h4 {
        font-size: 16px;
        /* Further reduced heading font size */
    }

    .overall-rating {
        margin-top: 10px;
        text-align: center;
        /* Center on narrow screens */
    }

    .rating-value {
        font-size: 16px;
        /* Reduced font size */
    }

    .rating-value span {
        font-size: 16px;
    }

    .review-form {
        font-size: 16px;
        margin-left: 0;
        /* Remove left margin */
        margin-top: 10px;
        /* Space out elements */
        text-align: center;
    }

    .star {
        font-size: 16px;
        padding: 1%;
        /* Reduced padding */
    }

    .rating-snapshot {
        font-size: 16px;
    }

    .bar-container {
        width: 120px;
        /* Smaller bars */
    }

    .testimony-container {
        flex-direction: column;
    }

    .testimony-left {
        border-right: none;
        margin-right: 0;
    }

    .testimony-right {
        flex: 1;
    }

}

/* For screens 480px and below */
@media screen and (max-width: 480px) {
    .booster-serum-title {
        font-size: 28px;
        /* Adjust font size */
    }

    .one-product-info-container {
        flex-direction: column;
        /* Stack text and image vertically */
        margin: 20px 10px;
    }


    .one-product-image-container {
        text-align: center;
        /* Center image */
    }

    .one-size-buttons {
        flex-direction: column;
        /* Stack size buttons vertically */
        align-items: center;
        /* Center buttons */
    }

    .one-size-button {
        margin: 5px 0;
        /* Adjust margin between buttons */
    }

    .social-icons {
        justify-content: center;
        /* Center social icons */
    }

    .dropdown-section {
        width: 100%;
        /* Make dropdowns take full width */
    }

    .key-ingredient-content {
        flex-direction: column;
        /* Stack ingredient image and details vertically */
        align-items: center;
        /* Center the content */
    }

    .ingredient-image {
        width: 70%;
        /* Adjust image size */
        margin-bottom: 20px;
        /* Add space between image and text */
    }

    .ingredient-title {
        width: 100%;
        /* Adjust title width */
        text-align: center;
        /* Center title */
    }

    .nested-dropdown {
        width: 100%;
        /* Make nested dropdown take full width */
    }

    .grid .title {
        font-size: 20px;
        padding: 10px;
    }

    .carousel-dots {
        bottom: 5px;
        gap: 5px;
    }

    .dot {
        height: 8px;
        width: 8px;
    }

    .carousel-inner {
        flex-direction: column;
    }

    .review-form {
        font-size: 16px;
    }

    .stars {
        font-size: 16px;
    }

    .testimony-container {
        flex-direction: column;
        width: 85%;
        margin-left: 5px;
    }

    .testimony-left {
        border-right: none;
    }

    /* Ensure both .overall-rating and .review-form stack on smaller screens */
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .overall-rating,
    .review-form {
        width: 100%;
        /* Full width for each element */
        margin: 0 0 10px 0;
        /* Add bottom margin for spacing */
        text-align: left;
        /* Ensure text is aligned left */
    }

    /* Adjust specific styles as needed */
    .overall-rating {
        margin-top: 0;
        /* Remove any top margin */
    }

    .review-form {
        margin-left: 0;
        /* Remove left margin */
        margin-top: 10px;
        /* Add some top margin */
    }
    .section-text-review {
        flex-direction: column;
    }
    .testimony-images img {
        aspect-ratio: 1;
        object-fit: cover;
    }
    
}