/* K-IT Resources - Clean Grid Layout */

.kit-resources-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section - Keep from original */
.kit-resources-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(42,42,42,0.8) 100%), url('https://k-itproducts.lilassistance.com/wp-content/uploads/2024/12/kit-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 40px 5%;
    color: white;
}

.kit-hero-content {
    flex: 1;
}

.kit-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.kit-hero-title .white {
    color: #FFFFFF;
}

.kit-hero-title .red {
    color: #E02B20;
}

.kit-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.kit-hero-image {
    flex: 0 0 250px;
}

.kit-hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

/* Compact Why Choose Us Section */
.kit-why-section-compact {
    background: #f8f8f8;
    padding: 40px 5%;
    text-align: center;
}

.kit-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
}

.kit-section-title .red {
    color: #E02B20;
}

.kit-why-features-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.kit-feature-compact {
    text-align: center;
    flex: 1;
}

.kit-feature-icon {
    width: 60px;
    height: 60px;
    background: #E02B20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.kit-feature-icon .dashicons {
    color: white;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.kit-feature-compact h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.kit-feature-compact p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Products Grid Section */
.kit-products-grid-section {
    padding: 60px 5%;
    background: white;
}

.kit-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.kit-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kit-product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.kit-product-image {
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.kit-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kit-product-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #888;
    font-size: 32px;
}

.kit-product-placeholder .dashicons {
    font-size: 42px;
    color: #b5b5b5;
}

.kit-product-info {
    padding: 20px;
}

.kit-product-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.kit-product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.kit-download-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #E02B20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.kit-download-all-btn:hover {
    background: #c41f15;
    color: white;
    transform: translateY(-2px);
}

.kit-download-all-btn .dashicons {
    margin-right: 8px;
    font-size: 18px;
}

.kit-download-dropdown {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.kit-download-item {
    display: block;
    padding: 8px 12px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 13px;
    transition: background 0.2s ease;
}

.kit-download-item:hover {
    background: #567201;
    color: white;
}

/* Bulk Download Section */
.kit-bulk-download-section {
    background: #567201;
    color: white;
    text-align: center;
    padding: 60px 5%;
}

.kit-bulk-download-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.kit-bulk-download-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.kit-bulk-download-section .kit-btn {
    background: white;
    color: #567201;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kit-bulk-download-section .kit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .kit-hero-title {
        font-size: 40px;
    }
    
    .kit-resources-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .kit-hero-image {
        margin-top: 30px;
    }
    
    .kit-why-features-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .kit-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .kit-hero-title {
        font-size: 28px;
    }
    
    .kit-products-grid {
        grid-template-columns: 1fr;
    }
}
