/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 10:7 Expected identifier but found whitespace
Line 12:1 Expected identifier but found "%"

**/
{% comment %}
  File: component-filters.css
  Desktop-only filter styles for Shopify
{% endcomment %}

.collection-filters-desktop {
  display: none;
}

@media screen and (min-width: 990px) {
  .collection-filters-desktop {
    display: block;
    padding: 20px 0 5px;
  }
  
  .collection-filters-desktop .page-width {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 3rem;
  }
  
  .filter-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
  }
  
  .item-count {
    background: #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
  }
  
  .filters-container {
    border-top: 1px #e7e7e7 solid;
    border-bottom: 1px #e7e7e7 solid;
    padding: 5px;
    
    position: relative;
    overflow: visible;
    margin-bottom: 5px;
  }
  
  .filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 10;
  }
  
  .filter-item {
    position: relative;
  }
  
  .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    
    
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
    justify-content: space-around;
    font-family: inherit;
  }
  
  .filter-btn:hover {
    
    border-color: #bbb;
  }
  
  .filter-btn[aria-expanded="true"] {
    background: #f0f7ff;
    border-color: #4d90fe;
    color: #1a73e8;
  }
  
  .icon-down {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .filter-btn[aria-expanded="true"] .icon-down {
    transform: rotate(180deg);
  }
  
  .icon-down::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #666;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .filter-btn[aria-expanded="true"] .icon-down::after {
    border-top-color: #1a73e8;
  }
  
  .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
  }
  
  .dropdown-content.show {
    display: flex;
    animation: fadeIn 0.2s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .dropdown-option {
    padding: 2px 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .dropdown-option:hover {
    background: #f5f5f5;
  }
  
  .dropdown-option input[type="checkbox"] {
    display: none;
  }
  
  .dropdown-option input[type="checkbox"]:checked + .checkmark {
    background: #1a73e8;
    border-color: #1a73e8;
  }
  
  .dropdown-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown-option input[type="checkbox"]:disabled + .checkmark {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .dropdown-option input[type="checkbox"]:disabled ~ .option-text {
    opacity: 0.5;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .option-text {
    flex: 1;
  }
  
  .option-count {
    color: #666;
    font-size: 13px;
    margin-left: 4px;
  }
  
  .filter-label {
    margin-bottom: 5px;
    font-weight: 400;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  /* Price Range Filter */
  .price-filter {
    min-width: 280px;
  }
  
  .price-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 5px;
  }
  
  .price-inputs .field {
    flex: 1;
    position: relative;
  }
  
  .price-inputs input {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .price-inputs .currency {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
  }
  
  .price-inputs label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
  }
  
  .price-range-action {
    text-align: left;
  }
  
  .btn-apply-price {
    background: #000;
    color: white;
    border: none;
    padding: 2px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
  }
  
  .btn-apply-price:hover {
    background: #0d62d9;
  }
  
  /* Active Filters */
  .active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 0 0;
    border-top: 1px solid #eee;
    margin-top: 12px;
    width: 100%;
  }
  
  .clear-all-filters {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f0f7ff;
  }
  
  .clear-all-filters:hover {
    background: #e1effe;
  }
  
  .active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .active-filter:hover {
    background: #eaeaea;
  }
  
  .results-info {
    margin-top: 5px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    font-size: 15px;
    color: #495057;
    border: 1px solid #eaeaea;
  }
}

/* Hide on mobile and tablet */
@media screen and (max-width: 989px) {
  .collection-filters-desktop {
    display: none !important;
  }
}
.section-padding {
    --padding-top: 5px;
}

@media (min-width: 750px) {
  .collection__filters.nodesktop {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));;
    }
}

@media only screen and (min-width: 1024px) {
    .collection__products {
        width: 100%;
    }
}
    
@media only screen and (min-width: 768px) {
    .collection__inner .breadcrumbs {
        flex-basis: 350px;
    }
}

.collection__sort-bar .collection__sort__label {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.collection__products-count {
    justify-self: flex-end;
    flex-grow: 1;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
       color: #555;
       padding-top: 5px;
       text-transform: uppercase;
}

#Filter-Price-LTE-template--28390124159301__main::placeholder {
  color: #a7a7a7;
  opacity: 1;
}

#Filter-Price-GTE-template--28390124159301__main::placeholder {
  color: #a7a7a7;
  opacity: 1;
}

.collection__sort-bar .collection__sort__button {
    line-height: 24px;
    color: #555;
}

.collection__filter-tags label{
    font-size: 14px;
}