/* ===================== PRODUCTS PAGE STYLES ===================== */

/* ===================== PRODUCTS HERO ===================== */
.products-hero {
    background: linear-gradient(135deg, #000000 0%, #051508 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.products-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.products-hero-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 420px;
}

.products-hero-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* ===================== FLAVORS SECTION ===================== */
.products-flavors {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.products-flavors .section-title {
    margin-bottom: 30px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 1px solid rgba(184, 215, 74, 0.3);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-tab.active {
    background-color: var(--primary-green);
    color: #000000;
    border-color: var(--primary-green);
    font-weight: 600;
}

/* Product Cards */
.products-grid {
    margin-top: 20px;
}

.product-card {
    background: linear-gradient(180deg, rgba(15, 35, 15, 0.8) 0%, rgba(5, 21, 8, 0.9) 100%);
    border: 1px solid rgba(184, 215, 74, 0.2);
    border-radius: 18px;
    padding: 25px 20px 20px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(184, 215, 74, 0.2);
}

.product-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-green);
    color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
}

.product-name {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-name-ar {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    margin-left: 5px;
}

.text-strawberry { color: #FF3344 !important; }
.text-banana { color: #FFD700 !important; }
.text-apple { color: #8FBC3F !important; }
.text-pineapple { color: #F4D03F !important; }
.text-fig { color: #B91C1C !important; }
.text-melon { color: #F39C12 !important; }

.product-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.product-icons span {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 13px;
    transition: all 0.3s ease;
}

.product-icons span:hover {
    background-color: var(--primary-green);
    color: #000000;
}

/* ===================== WHY & HOW IT WORKS ===================== */
.why-howitworks-section {
    background-color: var(--dark-bg);
    padding: 40px 0 60px;
}

.info-box {
    background: linear-gradient(180deg, rgba(15, 35, 15, 0.8) 0%, rgba(5, 21, 8, 0.9) 100%);
    border: 1px solid rgba(184, 215, 74, 0.2);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
}

.info-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: #ffffff;
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list li i {
    color: var(--primary-green);
    font-size: 16px;
}

/* Steps */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-top: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-circle {
    width: 90px;
    height: 90px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    background-color: rgba(10, 31, 10, 0.5);
}

.step-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-green);
    color: #000000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-text {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    color: var(--primary-green);
    font-size: 18px;
    padding-top: 35px;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(90deg, #1a2e0f 0%, #2d4a1a 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200px;
    background-image: radial-gradient(circle, rgba(184, 215, 74, 0.1), transparent);
    pointer-events: none;
}

.cta-product-img {
    max-height: 160px;
}

.cta-banner-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-banner-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-green);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-green-dark);
    color: #000000;
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .products-hero-title {
        font-size: 36px;
    }

    .products-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .products-hero-desc {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    .products-hero-img {
        margin-top: 40px;
    }

    .steps-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 45%;
    }

    .step-arrow {
        display: none;
    }

    .cta-banner-title {
        font-size: 22px;
    }

    .cta-banner {
        text-align: center;
    }

    .cta-banner .col-lg-3.text-lg-end {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .products-hero-title {
        font-size: 30px;
    }

    .product-img {
        height: 180px;
    }

    .info-box {
        padding: 25px 20px;
    }

    .step-item {
        flex: 0 0 100%;
    }

    .filter-tab {
        font-size: 12px;
        padding: 6px 18px;
    }
}

@media (max-width: 575px) {
    .cta-banner-title {
        font-size: 18px;
    }

    .info-title {
        font-size: 18px;
    }
}
