/* Products Page Styles */

/* Active nav link */
.nav-link-active {
    color: #57FF90 !important;
}

/* Products Hero Section */
.products-hero {
    position: relative;
    padding: 48px 72px 80px;
    min-height: 500px;
}

.products-hero-bg {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 660px;
    overflow: hidden;
    z-index: 0;
}

.products-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1776px;
    margin: 0 auto;
    padding-top: 220px;
}

.products-hero-title {
    color: #9E9EA8;
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -1.68px;
}

/* Products Intro Section */
.products-intro {
    padding: 80px 72px;
    background: #151517;
}

.products-intro-text {
    max-width: 810px;
    color: #F3F3F3;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/* Products Grid Section */
.products-grid-section {
    padding: 80px 72px;
    background: #151517;
}

.products-grid {
    max-width: 1776px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.products-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.products-row-single {
    justify-content: flex-start;
}

/* Product Detail Card */
.product-detail-card {
    width: calc(50% - 4px);
    padding: 8px 8px 40px;
    border-radius: 12px;
    border: 1px solid #3A3A3E;
    background: rgba(21, 21, 23, 0.05);
    backdrop-filter: blur(27.5px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: all 0.3s ease;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover {
    border-color: #57FF90;
    transform: translateY(-4px);
}

.product-detail-image {
    width: 100%;
    height: 440px;
    padding: 40px;
    border-radius: 8px;
    background: rgba(58, 58, 62, 0.40);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-content {
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-detail-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-detail-title {
    color: #F3F3F3;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}

.product-detail-subtitle {
    color: #9E9EA8;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}

.product-detail-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(58, 58, 62, 0.20) 0%, #3A3A3E 50%, rgba(58, 58, 62, 0.20) 100%);
}

.product-detail-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.product-tag {
    color: #57FF90;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.product-tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: #57FF90;
    flex-shrink: 0;
}

.product-tag-desc {
    color: #57FF90;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Responsive */
@media (max-width: 1440px) {
    .products-hero {
        padding: 48px 48px 80px;
    }

    .products-intro {
        padding: 60px 48px;
    }

    .products-grid-section {
        padding: 60px 48px;
    }

    .product-detail-image {
        height: 380px;
    }

    .product-detail-image img {
        max-height: 300px;
    }

    .product-detail-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 1024px) {
    .products-hero {
        padding: 32px 32px 60px;
        min-height: 400px;
    }

    .products-hero-content {
        padding-top: 150px;
    }

    .products-hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .products-intro {
        padding: 48px 32px;
    }

    .products-intro-text {
        max-width: 100%;
    }

    .products-grid-section {
        padding: 48px 32px;
    }

    .products-row {
        flex-direction: column;
    }

    .product-detail-card {
        width: 100%;
    }

    .product-detail-image {
        height: 350px;
    }

    .product-detail-content {
        padding: 0 24px;
        gap: 32px;
    }

    .product-detail-header {
        gap: 24px;
    }

    .product-detail-title {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 24px 24px 40px;
        min-height: 300px;
    }

    .products-hero-bg {
        bottom: -100px;
        height: 400px;
    }

    .products-hero-content {
        padding-top: 100px;
    }

    .products-hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .products-intro {
        padding: 40px 24px;
    }

    .products-intro-text {
        font-size: 16px;
        line-height: 24px;
    }

    .products-grid-section {
        padding: 40px 24px;
    }

    .product-detail-card {
        padding: 8px 8px 32px;
        gap: 24px;
    }

    .product-detail-image {
        height: 280px;
        padding: 24px;
    }

    .product-detail-image img {
        max-height: 240px;
    }

    .product-detail-content {
        padding: 0 16px;
        gap: 24px;
    }

    .product-detail-header {
        gap: 16px;
    }

    .product-detail-title {
        font-size: 22px;
        line-height: 30px;
    }

    .product-detail-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .product-tags {
        gap: 8px;
    }

    .product-tag,
    .product-tag-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

