#clear-filters-btn {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    margin-top: 8px;
    width: 100%;
    cursor: pointer;
    padding: 8px 12px;
	margin-bottom:10px;
}

#clear-filters-btn:hover {
    background: rgba(0,0,0,0.05);
}

.eternis-catalog-wrapper {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.catalog-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.search-container {
    position: relative;
    max-width: 720px;
    margin: 0 auto 35px;
}
#catalog-search {
    padding: 10px 24px;
    font-size: 1rem;
    border: 1px solid #707070;
    color: #000000;
}
#catalog-search:focus {
    border-color: #0077cc;
    box-shadow: 0 0 0 4px rgba(0,119,204,0.1);
}

#search-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #666;
    cursor: pointer;
}
#search-btn img{
	width: 20px;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
    color: #0077cc;
    font-size: 1.05rem;
    font-weight: 600;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr 60px;
    gap: 30px;
    align-items: start;
}

.left-sidebar {
    background: #EFEFEF 0% 0% no-repeat padding-box;
    padding: 28px 24px;
	font-family: "Brut Grotesque" !important;
}

.filter-section {
	margin-bottom: 25px;
    display: grid;
    gap: 6px;
}

.filter-section h3 {
    font-family: "Brut Grotesque" !important;
    font-weight: 500;
	color:#00ACED;
    font-size: 1rem;
}

.filter-label {
    letter-spacing: 0px;
    color: #000000;
}

.filter-label:hover {
    background: rgba(0,119,204,0.05);
}

.products-main {
    min-height: 400px;
	width:100%;
}
.product-row {
    padding: 17px 22px;
    margin-bottom: 6px;
    transition: all 0.25s ease;
}
.product-row a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
	font: normal normal normal 23px / 22px "Gestura Headline";
    letter-spacing: -0.64px;
    text-decoration: none;
}
.product-row:hover {
    background:#b0e0f8;
}
.product-row .arrow {
    display:none;
}
.product-row:hover .arrow {
    display:block;
}
.product-row .arrow {
    font-size: 3rem;
    opacity: 0.4;
    transition: 0.3s;
}

.product-row.light-blue  { background: #f6fcff; }
.product-row.light-beige { background: #fff9ec; }
.product-row.light-pink  { background: #fff0f5; }

.alphabet-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.alpha-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ACED;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}
.alpha-link:hover,
.alpha-link.active {
    color: #222222;
}

@media (max-width: 1200px) {
    .catalog-layout { grid-template-columns: 240px 1fr 55px; gap: 25px; }
}

/* Tablet */
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }
    .alphabet-sidebar {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .eternis-catalog-wrapper {
        padding: 0 15px;
        margin: 20px auto;
    }
    .catalog-title { font-size: 2.3rem; }
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .left-sidebar { padding: 22px 18px; }
    .products-main .product-row { padding: 16px 18px; }
    .product-row a { font-size: 1.05rem; }

    /* Horizontal scrollable alphabet on mobile (super clean) */
    .alphabet-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 12px 0;
        background: #f8f9fa;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .alphabet-sidebar::-webkit-scrollbar { display: none; }
    .alpha-link {
        min-width: 38px;
        padding: 9px 8px;
        font-size: 1.05rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .catalog-title { font-size: 2rem; }
    .left-sidebar { padding: 20px 16px; }
    .product-row { padding: 14px 16px; }
    #catalog-search { font-size: 1rem; padding: 10px 20px; }
}











/* Desktop default */
.catalog-layout {
    display: flex;
    gap: 20px;
}
.left-sidebar {
    width: 25%;
    flex-shrink: 0;
}
.products-main {
    flex: 1;
	width:100%;
}
.alphabet-sidebar {
    width: 80px;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .catalog-layout {
        flex-direction: column;
		    flex-direction: column-reverse;
    }
    .left-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: white;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
    .left-sidebar.active {
        left: 0;
    }
    .filter-toggle {
        display: inline-block !important;
        margin-left: 10px;
        background: #0073aa;
        color: white;
        border: none;
        padding: 8px 16px;
        cursor: pointer;
    }
    #filter-toggle-btn {
        display: none; 
		    position: absolute;
    left: 0;
    margin-top: -4px;
		
    }
    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .filter-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
    }
    .filter-actions {
        margin-top: 30px;
        text-align: center;
    }
    #apply-filters-btn {
        background: #0073aa;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
        max-width: 200px;
    }
    .alphabet-sidebar {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .alphabet-sidebar a {
        font-size: 16px;
        padding: 0px 5px;
    }
}

@media (min-width: 769px) {
    .filter-header,.filter-toggle, .filter-close, .filter-actions {
        display: none !important;
    }
}