﻿/* ============================================
   PRODUCTS PAGE — LIGHT THEME
   Primary: rgb(0, 160, 232)
   Accent:  #7c3aed (purple for indoor)
   ============================================ */

/* ============================================
   HERO
   ============================================ */

.products-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #edf4ff 0%, #dfedfb 30%, #d1e6fa 60%, #c4dff8 100%);
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 35%, rgba(0, 160, 232, 0.07) 0%, transparent 60%), radial-gradient(ellipse at 75% 65%, rgba(124, 58, 237, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.products-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.p-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.p-shape-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.07) 0%, transparent 70%);
    top: -70px;
    right: -50px;
    animation: pShapeFloat 9s ease-in-out infinite;
}

.p-shape-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
    animation: pShapeFloat 11s ease-in-out infinite reverse;
}

.p-shape-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 160, 232, 0.04) 0%, transparent 70%);
    top: 45%;
    left: 55%;
    animation: pShapeFloat 13s ease-in-out infinite;
}

@keyframes pShapeFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -18px);
    }
}

.products-hero-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0;
}

.products-hero-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.1);
    border: 1px solid rgba(0, 160, 232, 0.22);
    color: rgb(0, 120, 190);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: pFadeInDown 0.7s ease;
}

.products-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2b42;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    animation: pFadeInUp 0.7s ease 0.15s both;
}

.products-hero-description {
    font-size: 1.1rem;
    color: #4a5e78;
    max-width: 660px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: pFadeInUp 0.7s ease 0.3s both;
}

.products-hero-cta {
    animation: pFadeInUp 0.7s ease 0.45s both;
}

.btn-products-primary {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.02rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 160, 232, 0.28);
}

    .btn-products-primary:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(0, 160, 232, 0.38);
    }

@keyframes pFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.products-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.08);
    border: 1px solid rgba(0, 160, 232, 0.18);
    color: rgb(0, 120, 190);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-badge-purple {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.18);
    color: #6d28d9;
}

.products-section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2b42;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.products-section-subtitle {
    font-size: 1.02rem;
    color: #5a6e84;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */

.products-overview {
    background: #ffffff;
    padding: 6rem 0;
}

.overview-card {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.overview-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: height 0.3s ease;
}

.overview-outdoor .overview-card-stripe {
    background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
}

.overview-indoor .overview-card-stripe {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: #dce4ec;
}

    .overview-card:hover .overview-card-stripe {
        height: 4px;
    }

.overview-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.overview-card:hover .overview-card-icon {
    transform: scale(1.1);
}

.overview-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.overview-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.overview-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.75rem;
}

.overview-card-text {
    font-size: 0.95rem;
    color: #5a6e84;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.overview-card-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgb(0, 160, 232);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

    .overview-card-link:hover {
        color: rgb(0, 120, 190);
        gap: 4px;
    }

.overview-link-purple {
    color: #7c3aed;
}

    .overview-link-purple:hover {
        color: #6d28d9;
    }

/* ============================================
   PRODUCT DETAIL SECTIONS
   ============================================ */

.product-detail-section {
    padding: 6rem 0;
}

.outdoor-detail-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
}

.indoor-detail-section {
    background: #ffffff;
}

/* Detail Cards */
.detail-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}

.outdoor-detail-section .detail-card {
    background: #ffffff;
}

.indoor-detail-section .detail-card {
    background: #f9fbfd;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    border-color: #dce4ec;
}

.detail-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.detail-card:hover .detail-card-icon {
    transform: scale(1.1);
}

.detail-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.detail-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.detail-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.detail-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.detail-icon-indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.detail-icon-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.detail-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.6rem;
}

.detail-card-text {
    font-size: 0.92rem;
    color: #5a6e84;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   FEATURES CARD (checklist)
   ============================================ */

.features-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2rem 2.25rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .features-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

.features-card-blue::before {
    background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
}

.features-card-purple::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.features-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.features-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

    .features-card-header i {
        font-size: 1.2rem;
        color: rgb(0, 160, 232);
    }

.features-card-purple .features-card-header i {
    color: #7c3aed;
}

.features-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2b42;
    margin: 0;
}

/* Features list */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.65rem 0;
        font-size: 0.93rem;
        color: #3a4f66;
        border-bottom: 1px solid #f5f7fa;
        transition: all 0.2s ease;
    }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li:hover {
            padding-left: 6px;
        }

        .features-list li i {
            font-size: 1rem;
            color: rgb(0, 160, 232);
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }

.features-list-purple li i {
    color: #7c3aed;
}

/* ============================================
   SPECIFICATIONS SECTION
   ============================================ */

.specs-section {
    background: linear-gradient(160deg, #f5f9ff 0%, #eaf2fc 50%, #e2edfa 100%);
    padding: 6rem 0;
}

.spec-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .spec-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
    }

.spec-card-blue::before {
    background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
}

.spec-card-purple::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.spec-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.spec-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.spec-icon-blue {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.spec-icon-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.spec-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2b42;
    margin: 0;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .spec-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 0;
        border-bottom: 1px solid #f5f7fa;
        font-size: 0.93rem;
    }

        .spec-list li:last-child {
            border-bottom: none;
        }

.spec-label {
    color: #5a6e84;
    font-weight: 600;
}

.spec-value {
    color: #1a2b42;
    font-weight: 700;
    text-align: right;
}

/* ============================================
   CTA SECTION
   ============================================ */

.products-cta-section {
    background: #ffffff;
    padding: 6rem 0;
    border-top: 1px solid #eef2f7;
}

.products-cta-card {
    background: linear-gradient(160deg, #f0f7ff 0%, #e5f0fc 50%, #daeafa 100%);
    border: 1px solid rgba(0, 160, 232, 0.12);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

    .products-cta-card::before {
        content: '';
        position: absolute;
        top: -60%;
        right: -15%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(0, 160, 232, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.products-cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.products-cta-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a2b42;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.products-cta-text {
    font-size: 1rem;
    color: #5a6e84;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.products-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-products-cta-primary {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 160, 232, 0.28);
}

    .btn-products-cta-primary:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 26px rgba(0, 160, 232, 0.38);
    }

.btn-products-cta-outline {
    background: transparent;
    color: #1a2b42;
    border: 2px solid rgba(0, 160, 232, 0.3);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-products-cta-outline:hover {
        background: rgba(0, 160, 232, 0.06);
        color: rgb(0, 120, 190);
        border-color: rgba(0, 160, 232, 0.5);
        transform: translateY(-3px);
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .products-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 991.98px) {
    .products-hero {
        margin-top: -62px;
        padding-top: 62px;
        min-height: 55vh;
    }

    .products-hero-title {
        font-size: 2.2rem;
    }

    .products-overview,
    .product-detail-section,
    .specs-section,
    .products-cta-section {
        padding: 4rem 0;
    }

    .products-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .products-hero-title {
        font-size: 1.85rem;
    }

    .products-hero-description {
        font-size: 0.98rem;
        padding: 0 0.5rem;
    }

    .products-hero-content {
        padding: 2.5rem 0;
    }

    .products-section-title {
        font-size: 1.55rem;
    }

    .overview-card,
    .detail-card,
    .features-card,
    .spec-card,
    .products-cta-card {
        padding: 1.5rem 1.25rem;
    }

    .products-cta-card {
        padding: 2rem 1.5rem;
    }

    .products-cta-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 575.98px) {
    .products-hero-title {
        font-size: 1.55rem;
    }

    .products-hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .btn-products-primary,
    .btn-products-cta-primary,
    .btn-products-cta-outline {
        width: 100%;
        max-width: 280px;
    }

    .products-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
