/* Search */
.azf-search-wrap {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.azf-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
}

.azf-search-input {
    width: 100%;
    height: 50px;
    padding: 0 64px 0 18px;
    border: 1px solid #efe7dc !important;
    background-color: #fff !important;
    color: #1f2430;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 2px;
    outline: none;
    font-family: "Readex Pro", Sans-serif !important;
}

.azf-search-input::placeholder {
    color: #000;
    opacity: 0.5;
}

.azf-search-input:focus {
    border-color: #efe7dc !important;
}

.azf-search-input::-webkit-search-decoration,
.azf-search-input::-webkit-search-cancel-button,
.azf-search-input::-webkit-search-results-button,
.azf-search-input::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.azf-search-submit {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #5f6670;
    cursor: pointer;
    opacity:0.5;
}

.azf-search-submit:hover {
    color: #000;
    background: transparent;
}

.azf-search-submit:focus {
    outline: none;
    box-shadow: none;
    background:none !important;
    color: #000;
}

.azf-search-submit svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}


.azf-filter-block {
    border-top: 1px solid #EFE7DC;
    padding: 1rem;
}

.azf-filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.azf-filter-toggle:hover,
.azf-filter-toggle:focus {
    background: none !important;
}

.azf-filter-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C9974F;
}

.azf-filter-icon {
    font-size: 16px;
    color: #a67c52;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.azf-accordion-item:not(.is-open) .azf-filter-icon {
    transform: rotate(180deg);
}

.azf-filter-content {
    display: block;
    margin-top: 14px;
}

.azf-accordion-item:not(.is-open) .azf-filter-content {
    display: none;
}

.azf-price-range-label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #000;
}

.azf-price-slider-wrap {
    position: relative;
    height: 24px;
    margin: 10px 0 18px;
}

.azf-price-slider-track,
.azf-price-slider-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    border-radius: 999px;
}

.azf-price-slider-track {
    left: 0;
    right: 0;
    background: #d7cfc4;
}

.azf-price-slider-range {
    background: #C9974F;
    left: 0;
    width: 100%;
}

.azf-price-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.azf-price-slider::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
    border: none;
}

.azf-price-slider::-moz-range-track {
    height: 3px;
    background: transparent;
    border: none;
}

.azf-price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #a77943;
    border: 0;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 0 2px #fff;
}

.azf-price-slider::-moz-range-thumb {
    pointer-events: auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #a77943;
    border: 0;
    cursor: pointer;
    box-shadow: 0 0 0 2px #fff;
}

.azf-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.azf-price-input-wrap {
    position: relative;
    width: 100%;
}

.azf-price-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #000;
    pointer-events: none;
    z-index: 2;
}

.azf-price-inputs input {
    width: 100%;
    height: 44px;
    padding: 10px 12px 10px 24px;
    border: 1px solid #EFE7DC;
    background: #fff;
    font-size: 15px;
    color: #000;
    border-radius: 2px;
    font-family: "Readex Pro", sans-serif;
    font-weight: 400;
}

.azf-price-separator {
    color: #6f6f6f;
    font-size: 16px;
}

.azf-brand-search-wrap {
    position: relative;
    margin-bottom: 14px;
}

.azf-brand-search {
    width: 100%;
    height: 40px;
    border: 1px solid #EFE7DC !important;
    background: #fff !important;
    padding: 0 40px 0 12px;
    font-size: 15px;
    color: #2f2f2f;
    outline: none;
    border-radius: 2px !important;
    font-family: "Readex Pro", sans-serif;
    font-weight: 400;
}

.azf-brand-search::placeholder {
    color: #000;
    opacity: 0.55;
}

.azf-filter-options.azf-type-checkbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.azf-checkbox-label {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 15px;
    text-transform: none;
    color: #000;
    font-weight: 400;
    line-height: 18px;
}

.azf-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0f1728;
}

.azf-count {
    color: #8a8a8a;
}

.azf-type-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.azf-pill {
    border: 1px solid #EFE7DC;
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.azf-pill:hover,
.azf-pill.azf-selected {
    background: #0f1728;
    color: #fff;
}

.azf-type-swatch {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: row !important;
}

.azf-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #d7cec3;
    cursor: pointer;
}

.azf-swatch.azf-selected {
    box-shadow: 0 0 0 2px #071a35;
}

.azf-hidden-item {
    display: none;
}

.azf-filter-block.is-expanded .azf-hidden-item {
    display: inline-flex;
}

.azf-filter-block.is-expanded .azf-swatch.azf-hidden-item {
    display: inline-block;
}

.azf-show-more {
    margin-top: 10px;
    background: transparent;
    border: 0;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    color: #000 !important;
    font-weight: 400;
}

.azf-show-more:hover,
.azf-show-more:focus {
    background: none;
    color: #000;
}

.azf-active-filters-bar {
    display: none;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin: 0;
}

.azf-active-filters-bar.is-visible {
    display: flex;
}

.azf-active-tags {
    gap: 0.5rem;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.azf-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
    color: #000;
    border: 1px solid #EFE7DC;
    font-family: "Readex Pro", sans-serif;
    font-weight: 400;
}

.azf-tag-remove {
    cursor: pointer;
    font-weight: 700;
}

#azf-clear-all {
    background: transparent;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #C9974F;
    font-size: 15px;
    font-weight: 400;
}

#azf-clear-all:hover,
#azf-clear-all:focus {
    background: transparent;
    color: #0f1728;
}

.azf-clear-all-bottom {
    background: transparent;
    border: 1px solid #C9974F;
    color: #C9974F;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500 !important;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 10px 20px;
}

.azf-clear-all-bottom:hover {
    background: #C9974F;
    color: #fff;
}

.azf-loader-wrap {
    display: none !important;
    justify-content: center;
    padding: 18px 0;
}

.azf-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #eadfce;
    border-top-color: #9a6b3a;
    border-radius: 50%;
    animation: azf-spin 0.8s linear infinite;
}

@keyframes azf-spin {
    to {
        transform: rotate(360deg);
    }
}

#azf-product-grid.azf-loading {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.azf-products-grid-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.azf-product-col {
    min-width: 0;
}

.azf-product-col > * {
    height: 100%;
}
.azf-sort-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5ddd2;
    border-radius: 4px;
    background: #fff;
    padding: 10px 12px;
    height: 42px;
}

.azf-sort-static {
    font-size: 14px;
    color: #6f6a63;
    white-space: nowrap;
    flex: 0 0 auto;
}

.azf-sort-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.azf-sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding: 0 18px 0 0;
    cursor: pointer;
    outline: none;
    min-width: auto;
    width: auto;
    max-width: 95px;
    font-family: "Readex Pro", sans-serif !important;
    line-height: 1.2;
}

.azf-sort-arrow {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #6f6a63;
    line-height: 1;
}

.azf-sort-select::-ms-expand {
    display: none;
}
.azf-no-results {
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
}

.azf-apply-filters-btn {
    display: none;
}
#filter-not-link{
    pointer-events:none;
    cursor:pointer !important;
}
.active-container {
    display: none;
}

.active-container:has(.azf-tag) {
    display: block;
}
.my-product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    font-family: "Readex Pro", sans-serif;
    font-weight:500;
}

.my-product-breadcrumbs a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.my-product-breadcrumbs a:hover {
    color:#c9974f;
}

.my-product-breadcrumbs .sep {
    color: #000;
}

.my-product-breadcrumbs .current {
    color: #c9974f;
}
 .azf-active-filters-mobile-only {
        display: none !important;
    }
@media (max-width: 1200px) {
    .azf-products-grid-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .azf-products-grid-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .azf-filter-block {
        padding: 2rem;
    }

    .azf-apply-filters-btn {
        display: block;
        background: #0f1728;
        border: 1px solid #0f1728;
        color: #fff;
        border-radius: 2px;
        font-size: 15px;
        font-weight: 500 !important;
        text-transform: uppercase;
        padding: 10px 20px;
        width: 250px;
    }

    .azf-clear-all-bottom {
        width: 250px;
    }
    .azf-active-filters-mobile-only:has(.azf-tag) {
    display: block !important;
}
     .azf-active-filters-mobile-only {
        display: none;
    }
    .active-container {
        display:none !important;
}
}

@media (max-width: 767px) {
    .azf-products-grid-inner {
        grid-template-columns: 1fr;
    }
    .azf-tag{
        font-size:14px !important;
}
    .watch-specs-table {
    font-size: 13px !important;
}
    .woocommerce-product-gallery{
        margin-bottom:0 !important;
    }
    .flex-control-nav li{
        padding-bottom:0 !important;
    }
    .my-product-breadcrumbs {
    gap: 5px;
    font-size: 14px;
}
    .brand-hero-img{
    bottom:0;
    mask-image: linear-gradient(to right, transparent -10%, black 260%) !important;
}
}
