/* ============================================
   BREAKER INN - HOME PAGE STYLES
   ============================================ */

/* Hero Section with Slider - Already in style.css */

/* Category cards additional styling */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

/* Featured products */
.featured .products-grid {
    margin-bottom: 50px;
}

/* Brand cards */
.brand-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-card:hover::after {
    transform: scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content-wrapper {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
}