/* Hero Slider Styles */
.frutify-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.frutify-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.frutify-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.frutify-slide-content {
    text-align: center;
    color: #F2F0EB;
    /* Warm Cream */
    z-index: 2;
    padding: 2rem;
    background: rgba(30, 57, 50, 0.6);
    /* Deep Green with opacity */
    border-radius: 16px;
    backdrop-filter: blur(5px);
    max-width: 800px;
}

.frutify-slide-title {
    font-family: "Cardo", serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.frutify-slide-desc {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.frutify-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.frutify-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.frutify-dot.active {
    background: #C6A87C;
    /* Gold */
}

@media (max-width: 768px) {
    .frutify-hero-slider {
        height: 500px;
    }

    .frutify-slide-title {
        font-size: 2.5rem;
    }
}