/* ===================================
   Part: Section - Agave Club
   ================================== */
.agave {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.agave-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.agave-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agave-overlay {
    position: absolute;
    inset: 0;
    /* Moody gradient */
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(26, 26, 26, 0.8) 60%,
            rgba(10, 193, 223, 0.25) 100%);
    z-index: 2;
}

.agave-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: var(--space-xxl) 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.agave-text {
    color: var(--color-light);
}

.agave-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-light);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.agave-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.agave-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, background 0.4s ease;
}

.stat:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    /* Gradient Text */
    background: linear-gradient(135deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .agave-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .agave-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .agave-desc {
        font-size: 1rem;
    }

    .agave-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        flex: 1;
        min-width: 140px;
        padding: 1.5rem;
    }

    .stat {
        flex: 1;
        min-width: 140px;
        padding: 1.5rem;
    }
}

/* New Styles for Refined Agave Section */
.agave-count-wrapper {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-light);
}

.agave-count-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0.2em;
    background: linear-gradient(135deg, #fff 30%, var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(10, 193, 223, 0.5));
}

.spilits-count-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #fff 50%, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* No glow filter for subtle look */
}

.stat-item.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 250px;
}

.stat-item.feature .stat-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

.stat-list li {
    display: block;
}

.stat-list li:not(:last-child)::after {
    content: '+';
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.2rem 0;
}