/**
 * Category Showcase Styles
 */

.category-showcase-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.category-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.showcase-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 50px;
    align-items: center;
}

.showcase-content {
    flex: 0 0 400px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.showcase-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.showcase-btn {
    display: inline-block;
    background: #fff;
    color: #0057A0;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.showcase-btn:hover {
    background: #0057A0;
    color: #fff;
}

.showcase-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Override product card styles for showcase */
.showcase-products .product-card {
    background: rgba(255,255,255,0.95);
    border: none;
}

@media (max-width: 1200px) {
    .showcase-container { flex-direction: column; text-align: center; }
    .showcase-content { flex: 1; margin-bottom: 40px; }
    .showcase-products { width: 100%; }
}

@media (max-width: 767px) {
    .showcase-title { font-size: 2rem; }
    .showcase-products { grid-template-columns: 1fr; }
}




