@charset "UTF-8";

/*!
 * Catalog css
 * Version - 1.1.1
 * Copyright (c) 2025 Astrolab <info@astrolab.com> and another company
*/

.lce-h2-title,
.lce-h2-title * {
    font-size: 45px;
    /* text-transform: uppercase; */
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--ff-title);
}

.lce-h3-title,
.lce-h3-title * {
    font-size: 35px;
    font-weight: 700;
}

/* filter */

.filter-sidebar {
    background: white;
    border-radius: 12px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.product-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.price {
    color: #2563eb;
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.875rem;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.rating-stars {
    color: #fbbf24;
}

.category-badge {
    background: #e5e7eb;
    color: #4b5563;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.filter-group {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.color-option.selected::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid #2563eb;
    border-radius: 50%;
}

.sort-btn {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.sort-btn:hover {
    background: #f3f4f6;
}

.cart-btn {
    background: #2563eb;
    color: white;
    border: none;
    transition: all 0.2s;
}

.cart-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* search */
.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-header {
    padding: 20px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 15px 25px;
    padding-right: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    color: #666;
}

.category-filters {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.filter-chip {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-chip.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-chip i {
    margin-right: 5px;
    font-size: 0.9em;
}

.quick-filters {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.quick-filter {
    padding: 5px 12px;
    background: #e9ecef;
    border-radius: 15px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-filter:hover {
    background: #dee2e6;
}