/* ===========================================
   PRODUCTS.CSS - Products Page ONLY
   =========================================== */

/* 1. Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 30px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient);
    border-color: var(--primary);
}

/* 2. Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-header {
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 1;
}

.product-image {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
.product-image .pd1 {
    height: 280px;
    width: 380px;
}
.product-body {
    padding: 30px;
}

.product-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.product-features {
    margin: 20px 0;
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 14px;
}

.product-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 12px;
}

.product-cta {
    text-align: center;
    margin-top: 30px;
}

/* 3. Product Specifications */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-specs {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--gray);
}

.spec-value {
    font-weight: 600;
    color: var(--light);
}

/* 4. Products Page Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .product-specs {
        padding: 30px 20px;
    }
}