.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    background: #f8f9fa;
    height: 600px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

/* Images */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    padding: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease-out;
}

.carousel-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-slide-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.carousel-slide-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2e7d32;
    color: white;
}

.carousel-slide-button:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow i {
    font-size: 1.5rem;
    color: #333;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot-active {
    background-color: white;
    transform: scale(1.2);
    border-color: #2e7d32;
}

/* ===================== Animations ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.biosline-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.biosline-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hide mobile by default, show on mobile */
.mobile-hero {
    display: none;
}

@media (max-width: 767px) {
    .desktop-hero {
        display: none;
    }

    .mobile-hero {
        display: block;
    }
}

/* ===================== Biokap Slide Specific Styles ===================== */
.biokap-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.biokap-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.biokap-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

.biokap-left-content {
    flex: 0 0 48%;
    color: white;
    padding-right: 2rem;
    animation: fadeInUp 0.8s ease-out;
    margin-top: -40px;
}

.biokap-logo {
    max-width: 280px;
    margin-bottom: 2rem;
    margin-top: -20px;
}

.biokap-logo img {
    width: 100%;
    height: auto;
}

.biokap-sentence {
    font-size: 1.4rem !important;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.biokap-slide-button {
    display: inline-block;
    background-color: white;
    color: #2c3e50;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #2c3e50;
    font-size: 1rem !important;
}

.biokap-slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.biokap-right-content {
    flex: 0 0 48%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    padding-right: 4rem;
}

.biokap-product-image {
    max-width: 100%;
    height: 90vh;
    margin-bottom: 5px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    margin-right: -60px;
    transform: scale(1.2);
}

/* ===================== RESPONSIVE DESIGN ===================== */

/* Large Desktops */
@media (min-width: 1400px) {
    .carousel {
        height: 700px;
    }

    .biokap-logo {
        max-width: 320px;
    }

    .biokap-sentence {
        font-size: 1.7rem;
    }

    .biokap-product-image {
        max-height: 500px;
    }

    .biokap-right-content {
        padding-right: 5rem;
    }
}

/* Standard Desktops & Laptops */
@media (max-width: 1200px) {
    .carousel {
        height: 550px;
    }

    .biokap-slide-content {
        width: 95%;
    }

    .biokap-logo {
        max-width: 240px;
    }

    .biokap-right-content {
        padding-right: 3rem;
    }
}

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .carousel {
        height: 500px;
    }

    .carousel-slide-content {
        max-width: 450px;
        left: 5%;
    }

    .carousel-slide-title {
        font-size: 2.2rem;
    }

    .biokap-slide-content {
        padding: 1.5rem;
        width: 95%;
    }

    .biokap-logo {
        max-width: 220px;
        margin-top: -10px;
    }

    .biokap-sentence {
        font-size: 1.3rem;
    }

    .biokap-product-image {
        max-height: 380px;
    }

    .biokap-left-content {
        margin-top: -20px;
        padding-right: 2rem;
    }

    .biokap-right-content {
        padding-right: 2rem;
    }
}

/* Hide mobile button on tablet and desktop */
.biokap-mobile-button {
    display: none;
}

/* ===================== BIOKAP MOBILE ONLY ===================== */

/* Mobile (max-width: 730px) */
@media (max-width: 730px) {

    .biokap-slide-background,
    .biokap-left-content,
    .biokap-right-content {
        display: none !important;
    }

    .biokap-slide-content {
        background-image: url('assets/biokap-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    /* Show mobile button only on mobile */
    .biokap-mobile-button {
        display: block;
        position: absolute;
        bottom: 44px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        color: #2c3e50;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid #2c3e50;
        font-size: 0.8rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

@media (max-width: 576px) {
    .biokap-mobile-button {
        bottom: 80px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .biokap-mobile-button {
        bottom: 60px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ===================== Apix Slide Styles ===================== */
.apix-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.apix-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.apix-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

.apix-left-content {
    flex: 0 0 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apix-product-image {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.apix-right-content {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-right: 2rem;
}

.apix-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.apix-logo img {
    width: 100%;
    height: auto;
}

.apix-sentence-brown {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #8B4513;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.apix-sentence-orange {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #FF8C00;
    text-align: center;
    width: 100%;
}

.apix-slide-button {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #8B4513;
    text-align: center;
}

.apix-slide-button:hover {
    background-color: #654321;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile button - hidden on desktop */
.apix-mobile-button {
    display: none;
}

/* ===================== MOBILE ONLY - COMPLETELY SEPARATE DESIGN ===================== */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    /* Hide ALL desktop elements */
    .apix-slide-background,
    .apix-left-content,
    .apix-right-content {
        display: none !important;
    }

    /* Create mobile layout */
    .apix-slide-content {
        background-image: url('assets/apix-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    /* Show and position mobile button */
    .apix-mobile-button {
        display: block;
        position: absolute;
        bottom: 110px;
        left: 69%;
        transform: translateX(-50%);
        background-color: #8B4513;
        color: white;
        padding: 8px 10Px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid #8B4513;
        font-size: 0.5rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .apix-mobile-button {
        bottom: 130px;
        padding: 8px 15px;
        font-size: 0.5rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .apix-mobile-button {
        bottom: 90px;
        padding: 6px 10px;
        font-size: 0.5rem;
    }
}

/* ===================== Neomamma Slide Styles ===================== */
.neomamma-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neomamma-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.neomamma-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

.neomamma-left-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding-left: 12rem;
    margin-left: 12rem;
    margin-top: -5rem;
}

.neomamma-logo {
    max-width: 700px;
}

.neomamma-logo img {
    width: 100%;
    height: auto;
}

.neomamma-sentence {
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: white;
    font-weight: 400;
    width: 100%;
    text-align: center;
    max-width: 500px;
    margin-bottom: 3rem;
    margin-top: -4rem;
}

.neomamma-slide-button {
    display: inline-block;
    background-color: white;
    color: #704e91;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid white;
    font-size: 1.1rem;
    text-align: center;
}

.neomamma-slide-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Product image on right */
.neomamma-right-content {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-right: 6rem;
    margin-left: -3rem;
}

.neomamma-product-image {
    max-width: 100%;
    max-height: 85%;
    height: auto;
    object-fit: contain;
}

.neomamma-mobile-button {
    display: none;
}

/* ===================== RESPONSIVE DESIGN ===================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .neomamma-left-content {
        margin-top: -8rem;
        padding-left: 5rem;
    }

    .neomamma-logo {
        max-width: 800px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .neomamma-left-content {
        margin-top: -6rem;
        padding-left: 3rem;
    }

    .neomamma-logo {
        max-width: 650px;
    }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .neomamma-left-content {
        margin-top: -4rem;
        padding-left: 2rem;
    }

    .neomamma-logo {
        max-width: 550px;
    }

    .neomamma-sentence {
        font-size: 1.6rem;
        max-width: 400px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .neomamma-slide-background img {
        content: url('assets/neomamma-tablet-bg.png');
    }

    .neomamma-slide-content {
        padding: 1.5rem;
    }

    .neomamma-left-content {
        padding-left: 4rem;
        margin-left: 4rem;
        margin-top: -3rem;
        flex: 0 0 48%;
    }

    .neomamma-right-content {
        padding-right: 3rem;
        margin-left: -2rem;
        flex: 0 0 48%;
    }

    .neomamma-logo {
        max-width: 500px;
    }

    .neomamma-sentence {
        font-size: 1.4rem;
        max-width: 400px;
        margin-top: -2rem;
        margin-bottom: 2rem;
    }

    .neomamma-slide-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .neomamma-product-image {
        max-height: 75%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    .neomamma-slide-background,
    .neomamma-left-content,
    .neomamma-right-content {
        display: none !important;
    }

    .neomamma-slide-content {
        background-image: url('assets/neomamma-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    /* Show mobile button only on mobile */
    .neomamma-mobile-button {
        display: block;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        color: #704e91;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid white;
        font-size: 0.8rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

@media (max-width: 576px) {
    .neomamma-mobile-button {
        bottom: 60px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .neomamma-mobile-button {
        bottom: 80px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ===================== Ferplus Slide Styles ===================== */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

.ferplus-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ferplus-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ferplus-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

/* Product image on left */
.ferplus-left-content {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 4rem;
}

.ferplus-product-image {
    max-width: 100%;
    max-height: 85%;
    height: auto;
    object-fit: contain;
}

/* Content on right */
.ferplus-right-content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding-right: 2rem;
    padding-top: -2rem;
}

.ferplus-logo {
    max-width: 400px;
    margin-bottom: 1rem;
}

.ferplus-logo img {
    width: 100%;
    height: auto;
}

.ferplus-sentence {
    font-size: 1.4rem;
    line-height: 1.4;
    font-family: 'Quicksand', sans-serif;
    color: rgb(241, 241, 241);
    width: 100%;
    text-align: center;
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.ferplus-slide-button {
    display: inline-block;
    background-color: white;
    color: #2f5463;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid white;
    font-size: 1rem;
}

.ferplus-slide-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ferplus-mobile-button {
    display: none;
}

/* ===================== FERPLUS RESPONSIVE DESIGN ===================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .ferplus-slide-content {
        max-width: 1600px;
    }

    .ferplus-logo {
        max-width: 450px;
    }

    .ferplus-sentence {
        font-size: 1.6rem;
        max-width: 600px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .ferplus-logo {
        max-width: 380px;
    }

    .ferplus-sentence {
        font-size: 1.5rem;
        max-width: 500px;
    }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .ferplus-slide-content {
        padding: 1.5rem;
    }

    .ferplus-left-content {
        padding-left: 3rem;
    }

    .ferplus-logo {
        max-width: 350px;
    }

    .ferplus-sentence {
        font-size: 1.3rem;
        max-width: 450px;
    }

    .ferplus-product-image {
        max-height: 80%;
    }
}

/* ===================== FERPLUS MOBILE ONLY ===================== */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    .ferplus-slide-background,
    .ferplus-left-content,
    .ferplus-right-content {
        display: none !important;
    }

    .ferplus-slide-content {
        background-image: url('assets/ferplus-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    /* Show mobile button only on mobile */
    .ferplus-mobile-button {
        display: block;
        position: absolute;
        bottom: 65px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        color: #2f5463;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid #2f5463;
        font-size: 0.8rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .ferplus-mobile-button {
        bottom: 85px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .ferplus-mobile-button {
        bottom: 80px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .ferplus-mobile-button {
        bottom: 30px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .ferplus-slide-background img {
        content: url('assets/ferplus-tablet-bg.png');
    }

    .ferplus-slide-content {
        padding: 1.5rem;
    }

    .ferplus-logo {
        max-width: 320px;
    }

    .ferplus-sentence {
        font-size: 1.2rem;
        max-width: 450px;
    }

    .ferplus-slide-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===================== Buonerbe Slide Styles ===================== */
.buonerbe-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.buonerbe-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.buonerbe-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

/* Content on left */
.buonerbe-left-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding-left: 6rem;
}

.buonerbe-logo {
    max-width: 350px;
    margin-bottom: 2rem;
}

.buonerbe-logo img {
    width: 100%;
    height: auto;
}

.buonerbe-sentence {
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
    color: #4a6a23;
    font-weight: 400;
    width: 100%;
    text-align: left;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.buonerbe-slide-button {
    display: inline-block;
    background-color: #4a6a23;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #4a6a23;
    font-size: 1rem;
}

.buonerbe-slide-button:hover {
    background-color: #3a551b;
    border-color: #3a551b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 106, 35, 0.3);
}

.buonerbe-right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buonerbe-product-image {
    width: 100%;
    object-fit: contain;
    transform: translateX(15%);
}

.buonerbe-mobile-button {
    display: none;
}

/* ===================== Buonerbe Responsive Design ===================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .buonerbe-left-content {
        padding-left: 8rem;
    }

    .buonerbe-logo {
        max-width: 400px;
    }

    .buonerbe-product-image {
        height: 70vh;
        max-height: 650px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .buonerbe-left-content {
        padding-left: 5rem;
    }

    .buonerbe-logo {
        max-width: 350px;
    }

    .buonerbe-product-image {
        height: 65vh;
        max-height: 550px;
    }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .buonerbe-left-content {
        padding-left: 3rem;
    }

    .buonerbe-logo {
        max-width: 300px;
    }

    .buonerbe-sentence {
        font-size: 1.4rem;
        max-width: 450px;
    }

    .buonerbe-product-image {
        height: 60vh;
        max-height: 500px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .buonerbe-slide-content {
        padding: 1.5rem;
    }

    .buonerbe-left-content {
        padding-left: 3rem;
        flex: 0 0 48%;
    }

    .buonerbe-right-content {
        flex: 0 0 48%;
    }

    .buonerbe-logo {
        max-width: 280px;
    }

    .buonerbe-sentence {
        font-size: 1.3rem;
        max-width: 400px;
    }

    .buonerbe-product-image {
        max-height: 70%;
        transform: translateX(10%);
    }

    .buonerbe-slide-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===================== BUONERBE MOBILE ONLY ===================== */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    .buonerbe-slide-background,
    .buonerbe-left-content,
    .buonerbe-right-content {
        display: none !important;
    }

    .buonerbe-slide-content {
        background-image: url('assets/buonerbe-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    /* Show mobile button only on mobile */
    .buonerbe-mobile-button {
        display: block;
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #4a6a23;
        color: white;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid #4a6a23;
        font-size: 0.8rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

@media (max-width: 576px) {
    .buonerbe-mobile-button {
        bottom: 60px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .buonerbe-mobile-button {
        bottom: 50px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ===================== Soliven Slide Styles ===================== */
.soliven-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.soliven-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.soliven-slide-content {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem;
}

/* Product image on left */
.soliven-left-content {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 4rem;
}

.soliven-product-image {
    width: auto;
    height: 75vh;
    max-height: 600px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Content on right */
.soliven-right-content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding-right: 6rem;
}

.soliven-logo {
    max-width: 320px;
    margin-bottom: 2rem;
}

.soliven-logo img {
    width: 100%;
    height: auto;
}

.soliven-sentence {
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
    color: #de656b;
    font-weight: 500;
    width: 100%;
    text-align: left;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.soliven-slide-button {
    display: inline-block;
    background-color: #de656b;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #de656b;
    font-size: 1rem;
}

.soliven-slide-button:hover {
    background-color: #c9555b;
    border-color: #c9555b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(222, 101, 107, 0.3);
}

.soliven-mobile-button {
    display: none;
}

/* ===================== Soliven Responsive Design ===================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .soliven-left-content {
        padding-left: 6rem;
    }

    .soliven-logo {
        max-width: 350px;
    }

    .soliven-product-image {
        height: 70vh;
        max-height: 650px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .soliven-left-content {
        padding-left: 4rem;
    }

    .soliven-logo {
        max-width: 300px;
    }

    .soliven-product-image {
        height: 65vh;
        max-height: 550px;
    }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .soliven-left-content {
        padding-left: 3rem;
    }

    .soliven-logo {
        max-width: 280px;
    }

    .soliven-sentence {
        font-size: 1.4rem;
        max-width: 420px;
    }

    .soliven-product-image {
        height: 60vh;
        max-height: 500px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .soliven-slide-content {
        padding: 1rem;
    }

    .soliven-left-content {
        padding-left: 2rem;
        flex: 0 0 48%;
    }

    .soliven-right-content {
        padding-right: 3rem;
        flex: 0 0 48%;
    }

    .soliven-logo {
        max-width: 280px;
    }

    .soliven-sentence {
        font-size: 1.1rem;
        max-width: 400px;
    }

    .soliven-product-image {
        max-height: 70%;
    }

    .soliven-slide-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===================== SOLIVEN MOBILE ONLY ===================== */

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

    .soliven-slide-background,
    .soliven-left-content,
    .soliven-right-content {
        display: none !important;
    }

    .soliven-slide-content {
        background-image: url('assets/soliven-phone.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    .soliven-mobile-button {
        display: block;
        position: absolute;
        bottom: 110px;
        left: 65%;
        transform: translateX(-50%);
        background-color: #de656b;
        color: white;
        padding: 8px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid #de656b;
        font-size: 0.6rem;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
}

@media (max-width: 576px) {
    .soliven-mobile-button {
        bottom: 130px;
        left: 70%;
        padding: 7px 14px;
        font-size: 0.5rem;
    }
}

@media (max-width: 375px) {
    .soliven-mobile-button {
        bottom: 115px;
        left: 70%;
        padding: 6px 12px;
        font-size: 0.45rem;
    }
}

/************** Products ***************/
.biosline-products-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.biosline-section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #1a5276;
    position: relative;
    padding-bottom: 15px;
}

.biosline-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: #3498db;
}

.biosline-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.biosline-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    transition: all 0.4s ease;
    position: relative;
}

.biosline-product-item:hover {
    border-radius: 12px;
    transform: translateY(-8px);
}

.biosline-product-image {
    width: 280px;
    height: 280px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.biosline-product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    transform: scale(1.2);
}

.biosline-product-info {
    width: 100%;
}

.biosline-product-category {
    font-size: 13px;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.biosline-product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.3;
    min-height: auto;
    display: block;
}

.biosline-product-description {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: auto;
}

.biosline-product-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

.biosline-product-item:hover .biosline-product-button {
    opacity: 1;
    transform: translateY(0);
}

.biosline-product-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .biosline-products-grid {
        gap: 40px 25px;
    }
    
    .biosline-product-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 1200px) {
    .biosline-products-grid {
        gap: 35px 20px;
    }
    
    .biosline-product-image {
        width: 220px;
        height: 220px;
    }
    
    .biosline-product-name {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .biosline-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }
    
    .biosline-product-image {
        width: 240px;
        height: 240px;
    }
    
    .biosline-product-item {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .biosline-products-grid {
        gap: 30px 15px;
    }
    
    .biosline-product-image {
        width: 200px;
        height: 200px;
    }
    
    .biosline-product-name {
        font-size: 17px;
    }
    
    .biosline-product-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .biosline-products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .biosline-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .biosline-product-image {
        width: 220px;
        height: 220px;
    }
    
    .biosline-product-item {
        padding: 20px 15px;
    }
    
    .biosline-products-container {
        padding: 0 20px;
    }
}

/* BiosLine Products Disclaimer */
.biosline-disclaimer {
    background: #f8f8f8;
    border-top: 2px solid #0c2f61;
    border-bottom: 2px solid #0c2f61;
    margin: 50px 0 0 0;
    padding: 20px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.biosline-disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
}

.biosline-disclaimer-icon {
    width: 18px;
    height: 18px;
    color: #38729e;
    flex-shrink: 0;
}

.biosline-disclaimer-content p {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.biosline-disclaimer-content strong {
    color: #0c2f61;
    font-weight: 600;
}

.biosline-disclaimer-content a {
    color: #38729e;
    text-decoration: none;
    font-weight: 500;
}

.biosline-disclaimer-content a:hover {
    text-decoration: underline;
}

/* Responsive - Full Width on All Devices */
@media (max-width: 768px) {
    .biosline-disclaimer {
        margin: 40px 0 0 0;
        padding: 18px 0;
        border-top: 1.5px solid #0c2f61;
        border-bottom: 1.5px solid #0c2f61;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .biosline-disclaimer-content {
        padding: 0 20px;
        gap: 10px;
    }
    
    .biosline-disclaimer-icon {
        width: 16px;
        height: 16px;
    }
    
    .biosline-disclaimer-content p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .biosline-disclaimer {
        margin: 35px 0 0 0;
        padding: 16px 0;
        border-top: 1px solid #0c2f61;
        border-bottom: 1px solid #0c2f61;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .biosline-disclaimer-content {
        padding: 0 15px;
        display: block;
        text-align: center;
    }
    
    .biosline-disclaimer-icon {
        margin-bottom: 8px;
        display: inline-block;
    }
    
    .biosline-disclaimer-content p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .biosline-disclaimer {
        margin: 30px 0 0 0;
        padding: 14px 0;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .biosline-disclaimer-content {
        padding: 0 12px;
    }
    
    .biosline-disclaimer-content p {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .biosline-disclaimer-icon {
        width: 14px;
        height: 14px;
    }
}
