/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



    
    #dc-archive-wrap *,
    #dc-archive-wrap *::before,
    #dc-archive-wrap *::after { box-sizing: border-box; }
 
    #dc-archive-wrap {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
        font-family: "Montserrat";
    }
 
    /* ---- SIDEBAR ---- */
    .dc-sidebar {
        width: 260px;
        flex-shrink: 0;
        padding-top: 33px;
        padding-right: 20px;
    }
    .dc-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .dc-sidebar-title {
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 0.02em;
        margin: 0;
        line-height: 1;
    }
    .dc-clear-all {
        font-size: 13px;
        color: #555 !important;
        text-decoration: underline;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        padding: 0;
        font-family: "Montserrat";
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s;
    }
    .dc-clear-all.is-visible {
        opacity: 1;
        pointer-events: all;
    }
    .dc-clear-all:hover { color: #000; }
 
    .dc-filter-group {
        border-top: 1px solid #E0DDD8;
        padding: 14px 0;
    }
    .dc-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        margin-bottom: 12px;
    }
    .dc-filter-toggle-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #1A1A1A;
    }
    .dc-filter-toggle-icon {
        font-size: 18px;
        color: #777;
        line-height: 1;
        transition: transform 0.2s;
    }
    .dc-filter-group.is-collapsed .dc-filter-toggle-icon { transform: rotate(180deg); }
    .dc-filter-body { overflow: hidden; transition: max-height 0.25s ease; }
    .dc-filter-group.is-collapsed .dc-filter-body { max-height: 0 !important; }
 
    .dc-filter-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        cursor: pointer;
    }
    .dc-filter-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 1.5px solid #C8C5BE;
        border-radius: 2px;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        background: #fff;
        transition: border-color 0.15s, background 0.15s;
    }
    .dc-filter-item input[type="checkbox"]:checked {
        background: #1A1A1A;
        border-color: #1A1A1A;
    }
    .dc-filter-item input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        top: 2px; left: 4px;
        width: 5px; height: 8px;
        border: 2px solid #fff;
        border-top: none; border-left: none;
        transform: rotate(45deg);
    }
    .dc-filter-item-label { font-size: 14px; color: #333; line-height: 1.3; }
 
    /* Colour swatches */
    .dc-colour-grid { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 4px; padding-bottom:4px;}
    .dc-colour-swatch {
        width: 28px; height: 28px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        outline: 2px solid transparent;
        transition: outline-color 0.15s, border-color 0.15s;
        margin-top: 2px;
    }
    .dc-colour-swatch.is-active { border-color: #fff; outline-color: #1A1A1A; }
 
    /* Price range */
    .dc-price-range-display { font-size: 14px; color: #333; margin-bottom: 14px; }
    .dc-price-slider-wrap {
        position: relative;
        height: 4px;
        background: #E0DDD8;
        border-radius: 2px;
        margin: 10px 4px 20px;
    }
    .dc-price-slider-track {
        position: absolute;
        height: 100%;
        background: #1A1A1A;
        border-radius: 2px;
    }
    .dc-price-slider-wrap input[type="range"] {
        position: absolute;
        width: 100%;
        height: 4px;
        appearance: none; -webkit-appearance: none;
        background: transparent;
        pointer-events: none;
        top: 0;
    }
    .dc-price-slider-wrap input[type="range"]::-webkit-slider-thumb {
        appearance: none; -webkit-appearance: none;
        width: 20px; height: 20px;
        background: #1A1A1A;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all;
        margin-top: -8px;
        border: 3px solid #fff;
        box-shadow: 0 0 0 1px #1A1A1A;
    }
    .dc-price-slider-wrap input[type="range"]::-moz-range-thumb {
        width: 16px; height: 16px;
        background: #1A1A1A;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all;
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px #1A1A1A;
    }
    .dc-price-shortcuts { margin-top: 6px; }
    .dc-price-shortcut {
        display: block;
        font-size: 13px;
        color: #555;
        padding: 3px 0;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.15s;
    }
    .dc-price-shortcut:hover,
    .dc-price-shortcut.is-active { color: #1A1A1A; font-weight: 600; }
 
    .dc-samples-cta {
        margin-top: 28px;
        background: #0a2638;
        border: 1px solid #0a2638;
        border-radius: 2px;
        padding: 18px 16px;
    }
    .dc-samples-cta p {font-size: 13px;font-style: italic;color: white;margin: 0 0 12px;line-height: 1.4;}
    .dc-samples-btn {
        display: block;
        text-align: center;
        padding: 10px 14px;
        border: 1.5px solid white;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: white !important;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }
    .dc-samples-btn:hover { background: #1A1A1A; color: #fff; }
 
    /* ---- MAIN ---- */
    .dc-main { flex: 1; min-width: 0; }
 
    .dc-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    .dc-result-count { font-size: 14px; color: #555; }
    .dc-toolbar-right { display: flex; align-items: center; gap: 12px; max-width:50%;width:100%;
        justify-content: flex-end;
    }
 
    .dc-view-toggle { display: flex; gap: 4px; }
    .dc-view-btn {
        width: 36px; height: 36px;
        border: 1.5px solid #C8C5BE;
        background: #fff;
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        transition: border-color 0.15s, background 0.15s;
        padding: 0;
    }
    .dc-view-btn.is-active,
    .dc-view-btn:hover { border-color: #1A1A1A; background: #1A1A1A; }
    .dc-view-btn.is-active svg,
    .dc-view-btn:hover svg { fill: #fff; }
    .dc-view-btn svg { fill: #555; transition: fill 0.15s; }
 
    .dc-sort-select {
            height: 36px;
    border: 1px solid #C8C5BE;
    background: #fff;
    padding: 0 30px 0 12px;
    font-size: 13px;
    font-family: "Montserrat";
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    border-radius: 0;
    max-width: 160px;
    }
 
    /* Grid ? always 3 cols, no form wrapper to mess with it */
    .dc-product-grid {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .dc-product-grid.view-list {
        grid-template-columns: 1fr;
    }
 
    /* Loading state */
    .dc-product-grid.is-loading {
        opacity: 0.4;
        pointer-events: none;
        transition: opacity 0.2s;
    }
    .dc-loading-spinner {
        display: none;
        text-align: center;
        padding: 20px;
        font-size: 13px;
        color: #888;
        grid-column: 1 / -1;
    }
    .dc-product-grid.is-loading .dc-loading-spinner { display: block; }
 
    .dc-no-results {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: #888; font-size: 15px;
    }
 
    .dc-load-more-wrap {
        text-align: center;
        margin-top: 36px;
        padding-top: 24px;
        border-top: 1px solid #E0DDD8;
    }
    .dc-showing-label { font-size: 13px; color: #888; margin-bottom: 16px; }
    .dc-load-more-btn {
        display: inline-block;
        padding: 13px 48px;
        border: 1.5px solid #1A1A1A;
        font-size: 12px; font-weight: 700;
        letter-spacing: 0.1em; text-transform: uppercase;
        color: #1A1A1A; text-decoration: none;
        background: transparent; 
        cursor: pointer; 
        font-family: "Montserrat" !important;
        transition: background 0.2s, color 0.2s;
        border-radius: 0;
    }
    .dc-load-more-btn:hover { background: #1A1A1A; color: #fff; }
    .dc-load-more-btn:disabled { opacity: 0.5; cursor: not-allowed; }
 .dc-sidebar--sticky {
    position: sticky;
    top: 10px; 
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

input#dc-search-input {
    border-radius: 0;
    font-size: 14px;
    padding: 6.5px 20px;
    border-color: #c8c5be;
    max-width: 300px;
    width: 100%;
}

.dc-search-wrap {
    max-width: 250px;
    width: 100%;
}
.custom-product-card {
    display: block;
    background: #f5f0e8;
    overflow: hidden;
    position: relative;
    padding-bottom: 130px;
    max-width: calc(33.33% - 11px);
}

.dc-grid-cta {
    max-width: calc(33.33% - 11px);
    width: 100%;
}

.dc-grid-cta > div {
    height: 100% !important;
}

.dc-grid-cta > div > div {
    height: 100%;
}

.dc-grid-cta > div > div > div {
    height: 100%;
}

.dc-grid-cta > div > div > div > div {
    height: 100%;
}

.product_card_footer {
    position: absolute;
    bottom: 20px;
}

.product-size-info img {
    max-width: 18px;
}

.product-price-total {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.custom-product-image-wrap {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}

.custom-product-content p {
    font-size: 14px !important;
}

a.product-btn {
    display: block;
    background: #0a2638;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.custom-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-sale-badge {
position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding: 7px;
    gap: 7px;
    background: #0a2638;
}

.woocommerce.tinv-wishlist {
    position: absolute !important;
    top: 10px;
    right: 10px;
}

.tinvwl_add_to_wishlist-text, .woocommerce.tinv-wishlist span.tinvwl_remove_from_wishlist-text {
    display: none !important;
}

.tinvwl_add_to_wishlist_button::before {
    margin-right: 0 !important;
    color: white !important;
    background: #0a2638;
    border-radius: 50%;
    padding: 6px;
}

.product-sale-badge div {
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.product-sale-badge span {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.product-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 40px !important;
    width: 100%;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    font-size: 20px;
    color: #9aa0a6 !important;
    line-height: 1;
    cursor: pointer !important;
    z-index: 2;
    max-width: 20px;
    padding: 0 !important;
}

.custom-product-content {
    padding: 24px;
}

.custom-product-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    color: #0a2638;
    font-weight: 600;
    letter-spacing: .14em;
}

.product-old-price {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #8e969d;
    text-decoration: line-through;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 26px;
}

.product-price-row strong {
    color: #0a2638;
    font-size: 18px;
    font-weight: 700;
}

.product-price-row span {
    color: #3e3e3e;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-swatches {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-swatch,
.product-swatch-more {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
}

.product-wishlist-btn svg {
    max-width: 23px;
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    margin-bottom: -4px;
}

.product-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-swatch-more {
    font-size: 10px;
    border-radius: 0;
    background: transparent;
    font-weight: 600;
    color: #828282;
    letter-spacing: 0.1em;
    max-width: 70px;
    width: 100%;
}

.product-size-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #3f3f3f;
}

.product-size-info span {
    font-size: 22px;
    line-height: 1;
    display: none;
}

.product-size-info strong {
    font-weight: 600;
    color: #0b2638;
    font-size: 11px;
}

@media only screen and (max-width:1024px) {
    .custom-product-card {
        max-width: calc(50% - 8px);
    }
    .dc-grid-cta {
    max-width: calc(50% - 8px);
    width: 100%;
}
}


@media (max-width: 767px) {
    .custom-product-card {
    padding-bottom: 200px;
}
    
    .custom-product-content h3  {
        font-size: 18px !important;
    }
    
    .dc-grid-cta div {
        height: unset !important;
    }
    
        .custom-product-card {
        max-width: 100%;
    }
    .dc-grid-cta {
    max-width: 100%;
}
    
    .product-sale-badge div,
    .product-sale-badge span {
        padding: 12px 18px;
        font-size: 16px;
    }

    .product-wishlist-btn {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }

    .custom-product-content {
        padding: 28px 24px;
    }

    .custom-product-content h3 {
        font-size: 30px;
    }

    .product-price-row {
        display: block;
        font-size: 20px;
    }

    .product-price-row strong {
        font-size: 24px;
    }

    .product-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-swatch,
    .product-swatch-more {
        width: 44px;
        height: 44px;
    }

    .product-size-info {
        font-size: 20px;
    }
}
@media only screen and (max-width:1024px) {
    .dc-sidebar--sticky {
        position: static;
        max-height: unset;
    }
}

    @media (max-width: 960px) {
        #dc-archive-wrap { flex-direction: column; gap: 28px; }
        .dc-sidebar { width: 100%; }
        .dc-product-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .dc-product-grid { grid-template-columns: 1fr; }
    }
    