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

.page-header {
    background: var(--bg-light);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.products-section {
    padding: var(--space-xl) 0;
}

.product-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--secondary);
}

.product-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.placeholder-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.product-specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-md);
}

.product-specs th,
.product-specs td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.product-specs th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    width: 35%;
    font-size: 0.95rem;
}

.product-specs td {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.product-specs tr:last-child th,
.product-specs tr:last-child td {
    border-bottom: none;
}

.product-specs tr:hover {
    background: var(--bg-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    padding: var(--space-xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: #82c377;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .product-title {
        font-size: 1.35rem;
    }

    .product-image-placeholder {
        height: 250px;
    }

    .product-specs th,
    .product-specs td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .product-specs th {
        width: 40%;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-detail-card {
        padding: var(--space-md);
    }

    .product-title {
        font-size: 1.15rem;
    }

    .product-image-placeholder {
        height: 200px;
    }

    .product-specs {
        font-size: 0.85rem;
    }

    .product-specs th,
    .product-specs td {
        padding: 0.5rem;
        display: block;
        width: 100%;
    }

    .product-specs th {
        background: transparent;
        padding-bottom: 0.25rem;
        border-bottom: none;
    }

    .product-specs td {
        padding-top: 0;
        padding-bottom: 0.75rem;
    }

    .product-specs tr:hover {
        background: transparent;
    }
}
