<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CORE STYLES */
.adv-wine-recommendation-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* FILTER BAR */
.adv-wine-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.adv-wine-product-count {
    font-size: 13px;
    color: #666;
}

.adv-wine-filters {
    display: flex;
    gap: 10px;
}

.adv-wine-filters select {
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.adv-wine-filters select:hover {
    border-color: #aaa;
}
/* Fix loading */
.adv-wine-recommendation-container.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}
.adv-wine-recommendation-container.loading:after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 24px; height: 24px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #d32f2f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* PRODUCT GRID */
.adv-wine-recommendations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 10px;
}

.adv-wine-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-wine-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.adv-wine-image-link {
    display: block;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.adv-wine-image-link img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.adv-wine-item h2 {
    margin: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.adv-wine-item h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.adv-wine-item h2 a:hover {
    color: #d32f2f;
}

.adv-wine-item .price {
    margin: 10px;
    font-size: 14px;
    color: #d32f2f;
    font-weight: 600;
    min-height: 40px;
}

.adv-wine-item .price del {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    margin-right: 5px;
}

.adv-wine-item .button {
    display: block;
    margin: 15px 10px 10px;
    padding: 8px 0;
    background: #d32f2f;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.adv-wine-item .button:hover {
    background: #b71c1c;
}

/* PAGINATION */
.adv-wine-pagination {
    margin: 30px 10px 10px;
    text-align: center;
}

.adv-wine-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.adv-wine-pagination li {
    margin: 0 3px;
}

.adv-wine-pagination a,
.adv-wine-pagination span {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
}

.adv-wine-pagination .current {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.adv-wine-pagination a:hover {
    background: #f5f5f5;
}

/* LOADING STATE */
.adv-wine-loading {
    position: relative;
    min-height: 200px;
}

.adv-wine-loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d32f2f;
    border-radius: 50%;
    animation: advWineSpin 1s linear infinite;
}

@keyframes advWineSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .adv-wine-recommendations {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .adv-wine-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .adv-wine-recommendations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .adv-wine-item h2 {
        font-size: 13px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .adv-wine-filters {
        flex-direction: column;
        width: 100%;
    }
    
    .adv-wine-filters select {
        width: 100%;
    }
    
    .adv-wine-recommendations {
        grid-template-columns: 1fr;
    }
    
    .adv-wine-item {
        max-width: 280px;
        margin: 0 auto;
    }
}</pre></body></html>