/* ========================================
   COMPONENT STYLES
   ======================================== */

/* ========================================
   CATEGORY COMPONENTS
   ======================================== */
.category-image-container {
    height: 120px;
    width: 100%;
}

.category-badge .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem !important;
    line-height: 1.2;
}

/* ========================================
   BANNER COMPONENTS
   ======================================== */
.banner-card {
    position: relative;
    overflow: hidden;
}

.banner-card .card-body {
    position: relative;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* ========================================
   PRODUCT COMPONENTS
   ======================================== */
.product-card {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.product-image {
    max-height: 90px;
    width: auto;
    transition: var(--transition-smooth);
}

.product-title {
    font-size: 0.9rem;
    line-height: 1.2;
}

.product-price-badge {
    font-size: 0.7rem;
}

.product-like-count {
    font-size: 0.75rem;
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton-container {
    transition: opacity 0.3s ease;
}

.skeleton-image {
    height: 100px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .category-image-container {
        height: 100px;
    }
    
    .product-card {
        height: 80px;
    }
    
.product-image {
    max-height: 85px;
    width: 100% !important;
}
}
