/* Categories Page Specific Styles */

/* Breadcrumbs */
.breadcrumbs-container {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs a::after {
    content: '/';
    margin: 0 8px;
    color: #dee2e6;
}

.breadcrumbs a:last-of-type::after {
    content: '';
    margin: 0;
}

.breadcrumbs i {
    font-size: 10px;
}

.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Main Categories Container */
.categories-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 140px 20px;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.results-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.results-count span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.results-count strong {
    font-weight: 800;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
}

.filter-toggle-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.active-filters {
    flex: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Filter Badge */
.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter-badge span {
    white-space: nowrap;
}

.remove-filter {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.remove-filter i {
    font-size: 10px;
    color: var(--white);
}

.sort-dropdown {
    position: relative;
}

/* WooCommerce Ordering Dropdown */
.sort-dropdown .woocommerce-ordering {
    display: block;
}

.sort-dropdown .woocommerce-ordering select.orderby {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 40px 12px 20px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
    color: var(--text-dark);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 12px center;
    min-width: 240px;
}

.sort-dropdown .woocommerce-ordering select.orderby:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
}

.sort-dropdown .woocommerce-ordering select.orderby:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
    color: var(--text-dark);
}

.sort-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
}

.sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    display: none;
    z-index: 100;
}

.sort-menu.active {
    display: block;
}

.sort-option {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
    color: var(--text-dark);
}

.sort-option:hover {
    background: var(--bg-light);
}

.sort-option.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Categories Content Layout */
.categories-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
}

.clear-filters:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Filter Sections */
.filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-light);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Price Range Filter - Simple Style */
.price-filter-simple {
    padding: 8px 0;
}

/* Price Inputs Top */
.price-inputs-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 28px;
}

.price-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-input-group label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-input-box {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Moltaqa', sans-serif;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.price-input-box:focus {
    border-color: #495057;
    box-shadow: 0 0 0 3px rgba(73, 80, 87, 0.1);
}

.price-dash {
    font-size: 24px;
    color: #adb5bd;
    font-weight: 300;
    padding-bottom: 12px;
}

/* Simple Range Slider */
.simple-range-slider {
    position: relative;
    height: 40px;
    margin: 0 4px;
}

.slider-line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #2d6a6e;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-line-fill {
    display: none;
}

/* Range Inputs */
.range-slider-input {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
}

.range-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 40px;
    cursor: grab;
    pointer-events: auto;
    background: transparent;
}

.range-slider-input::-moz-range-thumb {
    width: 20px;
    height: 40px;
    cursor: grab;
    pointer-events: auto;
    background: transparent;
    border: none;
}

.range-slider-input:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.range-slider-input:active::-moz-range-thumb {
    cursor: grabbing;
}

.range-min {
    z-index: 3;
}

.range-max {
    z-index: 4;
}

/* Slider Handles */
.slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    width: 22px;
    height: 22px;
    background: var(--white);
    border: 4px solid #2d6a6e;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.15s ease;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.slider-handle-min {
    right: 0%;
}

.slider-handle-max {
    right: 100%;
}

.range-slider-input:active ~ .slider-handle {
    transform: translate(50%, -50%) scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* Apply Button */
.apply-price-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    font-family: 'Moltaqa', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(201, 151, 118, 0.25);
}

.apply-price-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 151, 118, 0.35);
}

.apply-price-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(201, 151, 118, 0.25);
}

.apply-price-btn i {
    font-size: 13px;
}

/* Color Options */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.color-option:hover {
    background: var(--bg-light);
}

.color-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    display: block;
}

.color-option span:last-child {
    font-size: 14px;
    color: var(--text-dark);
}

/* Checkbox Options */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    background: var(--bg-light);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-option span {
    font-size: 14px;
    color: var(--text-dark);
    flex: 1;
}

/* Subcategory checkbox */
.checkbox-option.subcategory {
    padding-right: 28px;
}

.checkbox-option.subcategory span {
    font-size: 13px;
}

/* Count badge */
.checkbox-option .count {
    font-size: 12px;
    color: var(--text-light);
    margin-right: auto;
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 12px;
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-option {
    position: relative;
    cursor: pointer;
}

.size-option input[type="checkbox"] {
    display: none;
}

.size-option span {
    display: block;
    padding: 10px;
    text-align: center;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-option:hover span {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.size-option input[type="checkbox"]:checked + span {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Rating Options */
.rating-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.rating-option:hover {
    background: var(--bg-light);
}

.rating-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.rating-option .stars {
    color: #FFA500;
    font-size: 14px;
}

.rating-option .stars i {
    margin-left: 2px;
}

.rating-option span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    min-height: 500px;
}

/* Price Group for Sale Items */
.price-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.sale-badge {
    background: var(--accent-color) !important;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
    color: var(--text-dark);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--text-light);
    font-weight: 600;
    padding: 0 8px;
}

/* Mobile Filter Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Mobile Filter Actions */
.mobile-filter-actions {
    display: none;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(0,0,0,0.1);
    gap: 12px;
    z-index: 10;
}

.mobile-filter-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Moltaqa', sans-serif;
}

.mobile-filter-btn.reset {
    background: var(--bg-light);
    color: var(--text-dark);
}

.mobile-filter-btn.reset:hover {
    background: #e5e1dc;
}

.mobile-filter-btn.apply {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-filter-btn.apply:hover {
    background: var(--primary-dark);
}

/* Collapsible Filter Sections */
.filter-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.filter-title::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.filter-section.collapsed .filter-title::after {
    transform: rotate(-90deg);
}

.filter-section.collapsed .filter-content {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-content {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        overflow-y: auto;
        z-index: 2000;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 0;
        box-shadow: -8px 0 32px rgba(0,0,0,0.3);
        padding-bottom: 80px;
    }

    .filters-sidebar.active {
        right: 0;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .sidebar-header {
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 10;
        padding: 20px 24px;
        margin: -24px -24px 0 -24px;
        border-radius: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .sidebar-header h3 {
        font-size: 22px;
    }

    .mobile-filter-actions {
        display: flex;
    }

    /* Close button for mobile */
    .sidebar-header::before {
        content: '\f00d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 24px;
        left: 24px;
        font-size: 24px;
        color: var(--text-dark);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .sidebar-header::before:hover {
        background: var(--bg-light);
    }

    /* Better touch targets on mobile */
    .filter-title {
        padding: 12px 0;
        margin: 0 -8px;
        padding: 12px 8px;
        border-radius: var(--radius-sm);
        transition: background 0.3s ease;
    }

    .filter-title:active {
        background: var(--bg-light);
    }

    .checkbox-option,
    .color-option,
    .rating-option {
        padding: 14px 8px;
        margin: 0 -8px;
    }

    .checkbox-option input,
    .color-option input,
    .rating-option input {
        width: 22px;
        height: 22px;
    }

    .size-option span {
        padding: 14px;
        font-size: 16px;
    }

    .price-input {
        padding: 14px;
        font-size: 16px;
    }

    .apply-price-btn {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .categories-main {
        padding: 0 16px 140px 16px;
    }

    .page-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }

    .page-header-content p {
        font-size: 14px;
    }

    .filters-bar {
        padding: 12px 16px;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-btn {
        width: 100%;
        justify-content: space-between;
    }

    .filters-sidebar {
        width: 100%;
    }

    /* Better spacing for mobile filters */
    .filter-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .checkbox-option,
    .checkbox-option.subcategory {
        padding: 10px 12px;
    }

    .checkbox-option .count {
        font-size: 11px;
        padding: 2px 6px;
    }

    /* Price range mobile adjustments */
    .price-inputs-top {
        gap: 10px;
        margin-bottom: 24px;
    }

    .price-input-group label {
        font-size: 10px;
    }

    .price-input-box {
        padding: 10px 12px;
        font-size: 15px;
    }

    .price-dash {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .simple-range-slider {
        height: 36px;
        margin: 0 2px;
    }

    .slider-line {
        height: 4px;
    }

    .slider-handle {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .apply-price-btn {
        padding: 11px 18px;
        font-size: 13px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    .categories-main {
        padding: 0 32px 60px 32px;
    }
}

@media (min-width: 1024px) {
    .categories-main {
        padding: 0 40px 60px 40px;
    }

    .categories-content {
        gap: 40px;
    }

    .filters-sidebar {
        width: 300px;
    }

    .filter-toggle-btn {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* No Products State */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.no-products i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 24px;
}

.no-products h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.no-products p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* WooCommerce Breadcrumbs Styling */
.breadcrumbs .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs .woocommerce-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs .woocommerce-breadcrumb a:hover {
    color: var(--primary-color);
}

/* TI WooCommerce Wishlist Plugin Styling */
.tinvwl_add_to_wishlist_button,
a.tinvwl_add_to_wishlist_button {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tinvwl_add_to_wishlist_button:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tinvwl_add_to_wishlist_button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f004";
    font-weight: 400;
    font-size: 18px;
    color: var(--text-dark);
}

.tinvwl_add_to_wishlist_button.tinvwl-product-in-list:before {
    font-weight: 900;
    color: #ef4444;
}

.tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    background: rgba(239, 68, 68, 0.1);
}

/* Hide plugin's default text */
.tinvwl_add_to_wishlist-text {
    display: none !important;
}

/* Remove default icon if plugin adds one */
.tinvwl_add_to_wishlist_button .tinvwl-icon-heart {
    display: none;
}