/* Create a new file: assets/product-showcase.css in your child theme */

.product-showcase {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: Mont, sans-serif;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.showcase-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.brand-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #666;
    min-width: 120px;
}

.tab-button:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
}

.tab-button.active {
    background: #4A90E2;
    color: white;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.brand-products {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.brand-products.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand-header {
    margin-bottom: 2rem;
}

.brand-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-header p {
    color: #666;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4A90E2;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumb {
    transform: scale(1.05);
}

.placeholder-image {
    color: #adb5bd;
    font-size: 0.9rem;
}

.product-info {
    padding: 1.5rem;
}

.product-type {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.product-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #4A90E2;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A90E2;
}

.product-date {
    color: #666;
    font-size: 0.9rem;
}

.view-details-btn {
    display: block;
    width: 100%;
    background: #f8f9fa;
    color: #333;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.view-details-btn:hover {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .brand-tabs {
        padding: 0.3rem;
        margin: 0 -1rem 2rem -1rem;
        border-radius: 0;
        background: white;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        min-width: auto;
        flex: 1;
        border-radius: 8px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin: 0 -0.5rem;
    }
    
    .brand-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-header {
        margin-bottom: 2rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .brand-tabs {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .tab-button {
        border-radius: 6px;
    }
}