.gc-shop-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: start;
}

.gc-shop-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.gc-shop-products {
    min-width: 0;
}

.gc-shop-search-shortcode,
.gc-shop-filter-shortcode {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.gc-shop-search-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.gc-shop-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.gc-shop-search-row input[type="search"] {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
}

.gc-shop-search-row input[type="search"]:focus {
    border-color: #27ad34;
    box-shadow: 0 0 0 3px rgba(39, 173, 52, 0.10);
}

.gc-shop-search-btn,
.gc-shop-filter-apply {
    background: var(--theme-accent-1) /*#27ad34*/;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 14px;
    font-weight: 700;
    cursor: pointer;
}

.gc-shop-search-btn:hover,
.gc-shop-filter-apply:hover {
    background: #1f8e2a;
}

.gc-shop-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.gc-shop-filter-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.gc-shop-filter-reset {
    font-size: 13px;
    color: var(--theme-accent-1);
    text-decoration: none;
}

.gc-shop-filter-reset:hover {
    text-decoration: underline;
}

.gc-shop-filter-panel {
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fff;
}

.gc-shop-filter-panel summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    list-style: none;
}

.gc-shop-filter-panel summary::-webkit-details-marker {
    display: none;
}

.gc-price-box {
    margin-top: 10px;
}

.gc-price-values {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #374151;
    margin-bottom: 8px;
}

.gc-price-sliders {
    display: grid;
    gap: 8px;
}

.gc-price-sliders input[type="range"] {
    width: 100%;
}

.gc-filter-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    max-height: 210px;
    overflow: auto;
    padding-right: 4px;
}

.gc-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    line-height: 1.3;
}

.gc-filter-item input {
    width: auto;
    margin: 0;
}

.gc-shop-filter-apply {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 992px) {
    .gc-shop-layout {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .gc-shop-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .gc-shop-layout {
        padding: 12px;
    }

    .gc-shop-search-row {
        grid-template-columns: 1fr;
    }

    .gc-shop-search-btn {
        width: 100%;
    }

    .gc-filter-list {
        max-height: none;
    }
}