/* =========================================
   Reusable Card
========================================= */

.cs-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 20px;
    transition: all 0.25s ease;
}

.cs-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* =========================================
   Buttons
========================================= */

.cs-button-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #111111;
    color: #111111;
    font-size: 13px;
    transition: all 0.25s ease;
}

.cs-button-outline:hover {
    background: #111111;
    color: #ffffff;
}

.cs-button-gold {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background: #bfa14a;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.25s ease;
}

.cs-button-gold:hover {
    opacity: 0.9;
}

/* =========================================
   Inputs
========================================= */

.cs-input,
.cs-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    background: #ffffff;
}

.cs-input:focus,
.cs-select:focus {
    outline: none;
    border-color: #111111;
}

/* =========================================
   Checkbox Styling
========================================= */

.cs-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.cs-checkbox-grid input[type="checkbox"] {
    accent-color: #111111;
    cursor: pointer;
}

/* =========================================
   Slider Styling (noUiSlider override)
========================================= */

.noUi-target {
    background: #f5f5f5;
    border-radius: 20px;
    border: none;
    height: 6px;
}

.noUi-connect {
    background: #111111;
}

.noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #111111;
    box-shadow: none;
    cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

/* =========================================
   Pagination
========================================= */

.cs-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

.cs-page-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.cs-page-btn:hover {
    background: #f5f5f5;
}

.cs-page-btn.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* =========================================
   Badges
========================================= */

.cs-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #555;
}

/* =========================================
   Breadcrumb
========================================= */

.cs-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 30px;
}

.cs-breadcrumb a {
    color: #777;
}

.cs-breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================
   Loading Skeleton
========================================= */

.cs-skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e6e6e6 37%,
        #f0f0f0 63%
    );
    background-size: 400% 100%;
    animation: cs-loading 1.4s ease infinite;
    border-radius: 8px;
}

@keyframes cs-loading {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* =========================================
   Hover Transitions
========================================= */

.cs-hover-soft {
    transition: all 0.2s ease;
}

.cs-hover-soft:hover {
    transform: translateY(-2px);
}

/* =========================================
   Utility Classes
========================================= */

.cs-text-center {
    text-align: center;
}

.cs-mb-20 {
    margin-bottom: 20px;
}

.cs-mt-20 {
    margin-top: 20px;
}

.cs-flex {
    display: flex;
}

.cs-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
