
    /* --- CSS START --- */
    
    /* Import nice font */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

    .d-none {
        display: none !important;
    }
    /* Main Section Container */
    .soyug_product_Info {
        font-family: 'Poppins', sans-serif;
        background-color: #ffffffd1;
        padding: 60px 20px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
    }

    /* Inner Container */
    .soyug_product_Info_container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Flex Row */
    .soyug_product_Info_row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        /* flex-wrap: wrap;  */
    }

    /* Left Column: Image */
    .soyug_product_Info_image_col {
        flex: 1;
        min-width: 300px;
        text-align: center;
        position: relative;
    }

    /* Decorative circle behind bottle */
    .soyug_product_Info_image_col::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350px;
        height: 350px;
        background-color: #FFBD06; /* Mustard Yellow */
        opacity: 0.1;
        border-radius: 50%;
        z-index: 0;
    }

    /* Product Image */
    .soyug_product_Info_img {
        margin: 0 auto;
        max-width: 100%;
        max-height: 300px;
        position: relative;
        z-index: 1;
        animation: soyug_product_Info_float 4s ease-in-out infinite;
        filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15));
    }

    /* Right Column: Text */
    .soyug_product_Info_text_col {
        flex: 1;
        min-width: 300px;
    }

    /* Title */
    .soyug_product_Info_title {
        font-size: 2.8rem;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 25px;
        margin-top: 0;
        color: #E73338; /* Primary Red */
    }

    /* Highlighted Text */
    .soyug_product_Info_highlight {
        color: #f39c12;
        /* background: linear-gradient(90deg, #E73338, #FFBD06); */
        /* -webkit-background-clip: text; */
        /* -webkit-text-fill-color: transparent; */
        display: inline-block;
    }

    /* Description Text */
.soyug_product_Info_desc {
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 30px;
}

    /* Features Grid */
    .soyug_product_Info_features {
        display: flex;
        gap: 20px;
        margin-bottom: 35px;
    }

    /* Individual Feature Item */
    .soyug_product_Info_feature_item {
        border-left: 4px solid #FFBD06;
        padding-left: 15px;
    }

    /* Feature Title */
    .soyug_product_Info_feature_title {
        display: block;
        font-weight: 700;
        color: #E73338;
        margin-bottom: 5px;
    }

    /* Button */
    .soyug_product_Info_btn {
        display: inline-block;
        padding: 15px 40px;
        background: #E73338;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(231, 51, 56, 0.3);
        border: none;
        cursor: pointer;
    }

    .soyug_product_Info_btn:hover {
        background: #FFBD06;
        color: #000;
        transform: translateY(-3px);
    }

    /* Keyframes for Float Animation */
    @keyframes soyug_product_Info_float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
            .soyug_product_Info_desc {
        font-size: 14px;
    } 
body .soyug__content_wrapper #product-desc {
    font-size: 14px !important;
}
        .soyug_product_Info_row {
            flex-direction: column-reverse; 
            text-align: center;
        }
        
        .soyug_product_Info_features {
            justify-content: center;
        }
        
        .soyug_product_Info_feature_item {
            text-align: left;
        }

        .soyug_product_Info_title {
            font-size: 2rem;
        }
    }

    /* --- SLIDER CSS START --- */
    /* Prefix: product_info_slider */
    
    .product_info_slider_section {
        padding-bottom: 60px;
        background-color: #fafafa;
        /* font-family: 'Poppins', sans-serif; */
        position: relative;
    }

    .product_info_slider_container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 999;
    }

    .product_info_slider_title {
        text-align: center;
        font-size: 2.2rem;
        color: #f39c12;
        font-weight: 800;
        margin-bottom: 40px;
    }

    .product_info_slider_wrapper {
        padding: 0 30px; /* Space for arrows */
    }

    .product_info_slider_item {
        background: #fff;
        border-radius: 15px;
        /* margin: 0 15px!important; */
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid transparent;
        transition: all 0.3s;
    }

    .product_info_slider_item:hover {
        border-color: #FFBD06;
        transform: translateY(-5px);
    }

.product_info_slider_img {
    margin: 0 auto;
    width: auto;
    height: 200px;
    /* object-fit: cover; */
    border-radius: 10px;
    margin-bottom: 15px;
}

    .product_info_slider_name {
        font-size: 1.2rem;
        color:#E73338;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .product_info_slider_btn {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 20px;
        background: #fff;
        color: #E73338;
        border: 2px solid #E73338;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .product_info_slider_btn:hover {
        background: #E73338;
        color: #fff;
    }

    /* Slick Customization */
    .product_info_slider_section .slick-prev:before,
    .product_info_slider_section .slick-next:before {
        color: #E73338;
        font-size: 30px;
        opacity: 1;
    }
    
    .product_info_slider_section .slick-prev {left: -10px;/* transform: rotate(
139deg); */}
    .product_info_slider_section .slick-next {right: -10px;}

    .product_info_slider_section .slick-dots li.slick-active button:before {
        color: #E73338;
        opacity: 1;
    }
    .product_info_slider_section .slick-dots li button:before {
        color: #FFBD06;
        opacity: 1;
    }

.soyug__slider__next::after {
    transform: rotate(-45deg);
    margin-right: 4px;
}
.product_info_slider_section .slick-prev::after, .product_info_slider_section .slick-next::after {
    content: '';
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    height: 10px;
    position: initial;
    background-color: transparent;
}

.product_info_slider_section .slick-prev::after{transform: rotate(
131deg);}
.product_info_slider_section .slick-next::after {transform: rotate(
315deg);}
    img.product_info_slider_img {
    max-height: 200px;
}
 /* the slides */
 .product_info_slider_section .slick-slide {
      margin: 15px 15px;
  }

  /* the parent */
  .product_info_slider_section .slick-list {
      margin: 0 -15px;
  }

  
.product_info_slider_section path.elementor-shape-fill {
    fill: #fff3c4;
}
.product_info_slider_item p{
    color: #000;
    font-size: 16px;
}
    /* --- SLIDER CSS END --- */

    /* --- FAQ CSS START --- */
    /* Prefix: soyug_product_faq */

    .soyug_product_faq_section {
        font-family: 'Poppins', sans-serif;
        padding: 60px 20px;
        background-color: #fff;
    }

    .soyug_product_faq_container {
        max-width: 800px; /* Narrower for readability */
        margin: 0 auto;
    }

    .soyug_product_faq_title {
        text-align: center;
        font-size: 2.2rem;
        color: #f39c12;
        font-weight: 800;
        margin-bottom: 40px;
        line-height: 1.2;
    }

    .soyug_product_faq_item {
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
    }

    .soyug_product_faq_question {
        width: 100%;
        background-color: #fff!important;
        background: none;
        border: none;
        padding: 20px 10px;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333!important;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s;
        font-family: inherit; /* Ensure font is consistent */
        box-shadow: none!important;
    }

    .soyug_product_faq_question:hover {
        color: #E73338;
    }

    /* Icon for FAQ (Plus/Minus) */
    .soyug_product_faq_icon {
        position: relative;
        width: 15px;
        height: 15px;
    }

    .soyug_product_faq_icon::before,
    .soyug_product_faq_icon::after {
        content: '';
        position: absolute;
        background-color: #FFBD06;
        transition: transform 0.3s;
    }

    .soyug_product_faq_icon::before {
        top: 7px;
        left: 0;
        width: 100%;
        height: 2px;
    }

    .soyug_product_faq_icon::after {
        top: 0;
        left: 7px;
        width: 2px;
        height: 100%;
    }

    /* Rotate icon when active */
    .soyug_product_faq_item.active .soyug_product_faq_icon::after {
        transform: rotate(90deg); /* Makes it a minus sign visually if merged, or just spin */
        /* Actually to make a minus, we usually rotate the whole thing or hide one bar. 
           Let's just rotate the wrapper 45deg for an X or hide vertical for Minus. 
           Let's go with rotating the vertical bar to flat to make a minus. */
        transform: rotate(90deg); 
        opacity: 0; /* Hides vertical bar */
    }
    
    .soyug_product_faq_item.active .soyug_product_faq_icon::before {
        background-color: #E73338; /* Change color on active */
    }

    .soyug_product_faq_answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 10px;
        margin-top: 7px;
    }

    .soyug_product_faq_answer_text {
        padding-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }


    
    /* --- FAQ CSS END --- */

    /* --- CSS END --- */