

/* Start:/local/components/qwelp/favorites.list/templates/.default/style.css?17646027765412*/
/**
 * Favorites List Component Styles
 */

.qwelp-favorites-list {
    --qwelp-fl-gap: 20px;
    --qwelp-fl-columns: 4;
    --qwelp-fl-bg: #fff;
    --qwelp-fl-border: #e5e7eb;
    --qwelp-fl-text: #111827;
    --qwelp-fl-text-muted: #6b7280;
    --qwelp-fl-price: #111827;
    --qwelp-fl-hover: #f9fafb;
    --qwelp-fl-radius: 8px;
    --qwelp-fl-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Header */
.qwelp-favorites-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--qwelp-fl-border);
}

.qwelp-favorites-list__count {
    font-size: 18px;
    font-weight: 600;
    color: var(--qwelp-fl-text);
}

.qwelp-favorites-list__clear-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--qwelp-fl-border);
    border-radius: var(--qwelp-fl-radius);
    color: var(--qwelp-fl-text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.qwelp-favorites-list__clear-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Grid */
.qwelp-favorites-list__grid {
    display: grid;
    grid-template-columns: repeat(var(--qwelp-fl-columns), 1fr);
    gap: var(--qwelp-fl-gap);
}

@media (max-width: 1200px) {
    .qwelp-favorites-list {
        --qwelp-fl-columns: 3;
    }
}

@media (max-width: 768px) {
    .qwelp-favorites-list {
        --qwelp-fl-columns: 2;
        --qwelp-fl-gap: 16px;
    }
}

@media (max-width: 480px) {
    .qwelp-favorites-list {
        --qwelp-fl-columns: 1;
    }
}

/* Item */
.qwelp-favorites-list__item {
    position: relative;
    background: var(--qwelp-fl-bg);
    border: 1px solid var(--qwelp-fl-border);
    border-radius: var(--qwelp-fl-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.qwelp-favorites-list__item:hover {
    box-shadow: var(--qwelp-fl-shadow);
    transform: translateY(-2px);
}

.qwelp-favorites-list__item-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: var(--qwelp-fl-bg);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qwelp-favorites-list__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.qwelp-favorites-list__item-link:hover {
    text-decoration: none;
}

/* Image */
.qwelp-favorites-list__item-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f4f6;
}

.qwelp-favorites-list__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.qwelp-favorites-list__item:hover .qwelp-favorites-list__item-image img {
    transform: scale(1.05);
}

.qwelp-favorites-list__item-noimage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #d1d5db;
}

/* Info */
.qwelp-favorites-list__item-info {
    padding: 12px;
}

.qwelp-favorites-list__item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--qwelp-fl-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.qwelp-favorites-list__item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--qwelp-fl-price);
}

/* Empty State */
.qwelp-favorites-list__empty {
    text-align: center;
    padding: 60px 20px;
}

.qwelp-favorites-list__empty-icon {
    color: #d1d5db;
    margin-bottom: 16px;
}

.qwelp-favorites-list__empty-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--qwelp-fl-text);
    margin-bottom: 8px;
}

.qwelp-favorites-list__empty-text {
    font-size: 14px;
    color: var(--qwelp-fl-text-muted);
}

/* Pagination */
.qwelp-favorites-list__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--qwelp-fl-border);
}

.qwelp-favorites-list__pagination-pages {
    display: flex;
    gap: 4px;
}

.qwelp-favorites-list__pagination-page,
.qwelp-favorites-list__pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--qwelp-fl-bg);
    border: 1px solid var(--qwelp-fl-border);
    border-radius: var(--qwelp-fl-radius);
    color: var(--qwelp-fl-text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.qwelp-favorites-list__pagination-page:hover,
.qwelp-favorites-list__pagination-link:hover {
    background: var(--qwelp-fl-hover);
    border-color: #d1d5db;
    text-decoration: none;
}

.qwelp-favorites-list__pagination-page--active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .qwelp-favorites-list {
        --qwelp-fl-bg: #1f2937;
        --qwelp-fl-border: #374151;
        --qwelp-fl-text: #f9fafb;
        --qwelp-fl-text-muted: #9ca3af;
        --qwelp-fl-price: #f9fafb;
        --qwelp-fl-hover: #374151;
    }
}

.dark .qwelp-favorites-list,
[data-theme="dark"] .qwelp-favorites-list {
    --qwelp-fl-bg: #1f2937;
    --qwelp-fl-border: #374151;
    --qwelp-fl-text: #f9fafb;
    --qwelp-fl-text-muted: #9ca3af;
    --qwelp-fl-price: #f9fafb;
    --qwelp-fl-hover: #374151;
}

/* End */
/* /local/components/qwelp/favorites.list/templates/.default/style.css?17646027765412 */
