.acf-dynamic-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.filter-search-bar {
    margin-bottom: 20px;
}

#acf-product-search {
    width: 100%;
    max-width: 400px;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: url("../img/search-icon.svg");
    background-repeat: no-repeat;
	background-position: left 12px center;
	background-size: 20px;
}

.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: #1a1a2e;
    border-radius: 12px;
}

.filter-group {
    position: relative;
}

.acf-filter-select {
    padding: 10px 30px 10px 14px;
    border: none;
    border-radius: 8px;
    background: #16213e;
    color: white;
    font-size: 14px;
    min-width: 160px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.acf-filter-select option {
    background: #16213e;
    color: white;
}

.acf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.acf-product-card {
    background: #16213e;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    transition: transform 0.2s;
}


.acf-product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #0f0f1a;
    padding: 20px;
}

.acf-product-title {
    padding: 15px 15px 5px;
    font-size: 18px;
    font-weight: bold;
    color: #00d4ff;
}

.acf-product-features {
    padding: 0 15px 15px;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
}

.acf-product-features ul {
    margin: 0;
    padding-left: 18px;
}

.acf-product-actions {
    padding: 0 15px 15px;
    display: flex;
    gap: 10px;
}

.acf-btn {
    flex: 1;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.acf-btn.details {
    background: #00d4ff;
    color: #000;
}

.acf-btn.part {
    background: #fff;
    color: #000;
}

.acf-pagination {
    margin-top: 30px;
    text-align: center;
}

.acf-pagination-inner {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    background: #0f1420;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.acf-pagination .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s;
    background: #16213e;
}

.acf-pagination .page-number:hover {
    background: #00d4ff;
    color: #000;
}

.acf-pagination .page-number.active {
    background: #00d4ff;
    color: #000;
    font-weight: bold;
}

.acf-pagination .page-number.disabled {
    color: #555;
    cursor: not-allowed;
    opacity: 0.5;
}



