.fallback-product-list {
    font-family: 'Poppins', sans-serif;
}
.fallback-product-list .hero {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fallback-product-list .hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fallback-product-list .hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto 2rem;
}
.fallback-product-list .search-form {
    position: relative;
    max-width: 36rem;
    margin: 0 auto;
}
.fallback-product-list .search-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    color: #1f2937;
}
.fallback-product-list .search-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(125,42,232,0.3);
}
.fallback-product-list .search-form button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.fallback-product-list .search-form button:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-product-list .categories {
    padding: 4rem 0;
    background: #f9fafb;
}
.fallback-product-list .categories .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.fallback-product-list .categories h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fallback-product-list .categories p {
    text-align: center;
    color: #4b5563;
    margin-bottom: 2.5rem;
}
.fallback-product-list .category-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.fallback-product-list .category-item {
    flex-shrink: 0;
    width: 11rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}
.fallback-product-list .category-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.5rem);
}
.fallback-product-list .category-item.active {
    border-color: #7d2ae8;
    background: #f3e8ff;
}
.fallback-product-list .category-item img {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    margin: 0 auto 0.75rem;
    object-fit: cover;
}
.fallback-product-list .category-item .name {
    font-weight: 600;
}
.fallback-product-list .category-item.active .name {
    color: #7d2ae8;
}
.fallback-product-list .filter-bar {
    position: sticky;
    top: 5rem;
    z-index: 10;
    margin-top: -2.5rem;
    margin-bottom: 1.25rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
.fallback-product-list .filter-container {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
}
@media (min-width: 1024px) {
    .fallback-product-list .filter-container {
        padding: 1.5rem;
    }
    .fallback-product-list .filter-row {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }
}
.fallback-product-list .filter-col {
    flex: 1;
    min-width: 0;
}
.fallback-product-list .filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.fallback-product-list .filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(249,250,251,0.5);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #1f2937;
    font-size: 1rem;
}
.fallback-product-list .filter-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(125,42,232,0.3);
}
.fallback-product-list .products {
    padding: 4rem 0;
    background: #f9fafb;
}
.fallback-product-list .products .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.fallback-product-list .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes on mobile */
    gap: 1rem;
}

@media (min-width: 640px) {
    .fallback-product-list .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .fallback-product-list .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1280px) {
    .fallback-product-list .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.fallback-product-list .product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}
.fallback-product-list .product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.5rem);
}
.fallback-product-list .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.fallback-product-list .product-badge.popular {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
}
.fallback-product-list .product-badge.urgency {
    right: 1rem;
    left: auto;
    animation: pulse 2s infinite;
}
.fallback-product-list .product-badge.urgency.critical {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.fallback-product-list .product-badge.urgency.low {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.fallback-product-list .product-image {
    overflow: hidden;
}
.fallback-product-list .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.fallback-product-list .product-card:hover .product-image img {
    transform: scale(1.1);
}
.fallback-product-list .product-info {
    padding: 1.25rem;
}
.fallback-product-list .product-category {
    font-size: 0.875rem;
    color: #7d2ae8;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.fallback-product-list .product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fallback-product-list .color-swatches {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.fallback-product-list .color-swatch {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.fallback-product-list .size-swatches {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.fallback-product-list .size-swatch {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}
.fallback-product-list .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.fallback-product-list .stars {
    display: flex;
    color: #fbbf24;
}
.fallback-product-list .stars .star-gray {
    color: #d1d5db;
}
.fallback-product-list .rating-value {
    font-size: 0.875rem;
    color: #4b5563;
}
.fallback-product-list .price-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fallback-product-list .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7d2ae8;
}
.fallback-product-list .old-price {
    color: #9ca3af;
    text-decoration: line-through;
}
.fallback-product-list .discount-badge {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}
.fallback-product-list .stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.fallback-product-list .stock i {
    color: #6b7280;
}
.fallback-product-list .stock-status {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.fallback-product-list .stock-status.in-stock {
    background: #d1fae5;
    color: #047857;
}
.fallback-product-list .stock-status.low-stock {
    background: #fef3c7;
    color: #b45309;
}
.fallback-product-list .stock-status.out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}
.fallback-product-list .product-link {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.fallback-product-list .product-link:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-product-list .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.fallback-product-list .pagination a,
.fallback-product-list .pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    background: white;
}
.fallback-product-list .pagination span.current {
    background: #7d2ae8;
    color: white;
    border-color: #7d2ae8;
}
.fallback-product-list .pagination a:hover {
    background: #f3f4f6;
}
