:root {
    --brand-dark: #1a3c34;
    --brand-accent: #d4af37;
}

body {
    background-color: #fdfbf7;
    font-family: 'Inter', sans-serif;
}

.shop-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--brand-dark);
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    color: #444;
}

.form-check-input:checked {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.btn-outline-filter {
    border: 1px solid #dee2e6;
    background: white;
    font-size: 0.65rem;
    padding: 8px 5px;
    color: #888;
}

.btn-check:checked + .btn-outline-filter {
    background-color: var(--brand-dark);
    color: white;
    border-color: var(--brand-dark);
}

.btn-apply {
    background-color: var(--brand-dark);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Product Cards */
.img-wrapper {
    overflow: hidden;
    background: #f0f0f0;
}

.img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.item-price {
    font-family: 'Playfair Display', serif;
    color: var(--brand-accent);
    font-weight: bold;
}

.x-small { font-size: 0.75rem; }

/* Custom Range */
.custom-range::-webkit-slider-thumb {
    background: var(--brand-dark);
}

/* Pagination */
.pagination .page-link {
    border: none;
    background: transparent;
    color: #333;
    margin: 0 5px;
    border-radius: 50% !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--brand-dark);
    color: white;
}
.clear-filter-btn{

    border-radius: 0;

    padding: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 12px;

    transition: 0.3s ease;
}

.clear-filter-btn:hover{

    background: #143d35;

    color: white;

    border-color: #143d35;
}