    /* Modern Color Palette */
    :root {
        --primary: #690500; /* Deep burgundy for brand */
        --secondary: #f1c876; /* Gold accent */
        --dark: #221e1e; /* Dark charcoal */
        --light: #f8f9fa;
        --success: #28a745;
        --danger: #dc3545;
    }



    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--secondary);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        letter-spacing: 1px;
    }

    /* Breadcrumb */
    .breadcrumb-container {
        background-color: var(--light);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 2rem;
    }

    .breadcrumb-item a {
        color: var(--primary);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .breadcrumb-item a:hover {
        color: var(--dark);
        text-decoration: none;
    }

    /* Product Cards */
    .product-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        margin-bottom: 1.5rem;
        height: 100%;
        background: white;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 28px rgba(0,0,0,0.15);
    }

    .product-image-container {
        height: 220px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        position: relative;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
        mix-blend-mode: multiply;
    }

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

    .product-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: var(--primary);
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .product-body {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        height: calc(100% - 220px);
    }

    .product-title {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .price-container {
        margin-bottom: 1rem;
    }

    .current-price {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.2rem;
    }

    .original-price {
        text-decoration: line-through;
        color: #6c757d;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .view-btn {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: auto;
        width: 100%;
    }

    .view-btn:hover {
        background-color: var(--dark);
        transform: translateY(-2px);
        color: white;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 3rem;
        background-color: var(--light);
        border-radius: 10px;
    }

    .empty-icon {
        font-size: 3rem;
        color: #6c757d;
        margin-bottom: 1rem;
    }

    /* Product Count */
    .product-count {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .product-count span {
        font-weight: 700;
        color: var(--primary);
    }

    /* Alerts */
    .alert {
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .product-image-container {
            height: 180px;
        }
    }
