/* ============================================
   FILE: public/assets/css/style.css
   CV Asia Teknik Machinery - Custom Styles
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar {
    z-index: 1050 !important; /* Pastikan navbar di atas carousel */
    position: sticky;
    top: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.2);
}

.navbar-custom {
    background: #ffb753 !important;
}

.navbar-gradient {
    background: linear-gradient(180deg, #ffd958 0%, #ff964e 100%) !important;
}

.navbar-gradient .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 1.5rem;
    height: 1.5rem;
    background-size: 100% 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

.hero-section .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-section img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all var(--transition-speed) ease;
}

.hero-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 90vh;
    min-height: 500px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 6px;
    background: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(220, 53, 69, 0.8);
}

/* Text Styles */
.hero-slide .badge {
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-slide h1 span {
    position: relative;
}

.hero-slide h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
}

.hero-slide .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Animations Delay */
.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 60vh;
        min-height: 350px;
        text-align: center;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide .lead {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero-slide .badge {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 5px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-slide h1 {
        font-size: 1.5rem;
    }
    
    .hero-slide .lead {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== CATEGORY CARDS ===== */
.categories-section {
    padding: 80px 0;
}

.categories-section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.categories-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.category-card {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    padding: 10px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.category-card .card-body {
    padding: 30px 20px;
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all var(--transition-speed) ease;
}

.category-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* ===== PRODUCT CARDS ===== */
.products-section {
    padding: 80px 0;
    background: var(--light-color);
}

.products-section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-card img {
    height: 220px;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

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

.product-card .card-body {
    padding: 20px;
}

.product-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.product-card .card-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    height: 45px;
    overflow: hidden;
}

.product-card .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    margin-top: 10px;
}

.product-card .btn:hover {
    transform: translateY(-2px);
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
    padding: 80px 0;
}

.articles-section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.articles-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.articles-section .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.articles-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.articles-section .card img {
    height: 200px;
    object-fit: cover;
}

.articles-section .card-body {
    padding: 20px;
}

.articles-section .card-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
}

.articles-page .card-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
}

.articles-section .card-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.articles-section .card-text i {
    margin-right: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonials-section .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonials-section .rounded-circle {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.testimonials-section .fa-star {
    color: #ffc107;
    margin: 0 2px;
}

.testimonials-section .fst-italic {
    font-size: 0.95rem;
    color: #555;
    min-height: 70px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-weight: 700;
    font-size: 2.2rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    padding: 60px 0 20px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

footer .social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: all var(--transition-speed) ease;
}

footer .social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--primary-color) !important;
}

footer .fa-2x {
    font-size: 1.8rem;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

footer .text-center {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-section h1 {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-section .lead {
    animation: fadeIn 1s ease forwards 0.3s;
    opacity: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section .btn {
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .articles-section .card img {
        height: 170px;
    }
    
    .categories-section h2::after,
    .products-section h2::after,
    .articles-section h2::after,
    .testimonials-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .products-section h2,
    .articles-section h2 {
        text-align: center;
    }
    
    .products-section .d-flex,
    .articles-section .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .products-section .d-flex .btn,
    .articles-section .d-flex .btn {
        margin-top: 15px;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
    }
    
    .cta-section .btn-light {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .category-card i {
        font-size: 2.5rem;
    }
    
    .testimonials-section .rounded-circle {
        width: 60px;
        height: 60px;
    }
    
    footer .social-icons a {
        margin-right: 10px;
    }
    
    footer .fa-2x {
        font-size: 1.5rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ===== UTILITY ===== */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.shadow-hover {
    transition: all var(--transition-speed) ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.rounded-12 {
    border-radius: var(--border-radius);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-detail-image img {
    border-radius: var(--border-radius);
}

.product-specs {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.product-specs ul li:last-child {
    border-bottom: none;
}

.product-specs ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h6 {
    font-weight: 600;
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    border-color: var(--primary-color);
}

.contact-form .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.about-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-values {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.about-values:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-values i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ===== LOADING SPINNER ===== */
.spinner-custom {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 8px;
    margin: 0 3px;
    transition: all var(--transition-speed) ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
}

.pagination .active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ===== SIDEBAR FILTER STYLES ===== */
.sidebar-filter {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.sidebar-filter .filter-section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-filter .filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-filter .filter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.sidebar-filter .filter-title i {
    color: #0d6efd;
    margin-right: 10px;
    width: 20px;
    font-size: 0.9rem;
}

/* Radio buttons styling */
.sidebar-filter .form-check {
    padding-left: 28px;
    margin-bottom: 4px;
}

.sidebar-filter .form-check-input {
    margin-left: -28px;
    margin-top: 6px;
    cursor: pointer;
}

.sidebar-filter .form-check-label {
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.sidebar-filter .form-check-label:hover {
    color: #0d6efd;
}

.sidebar-filter .form-check-label i {
    width: 18px;
    margin-right: 6px;
    color: #6c757d;
}

.sidebar-filter .form-check-input:checked + .form-check-label {
    color: #0d6efd;
    font-weight: 500;
}

.sidebar-filter .form-check-input:checked + .form-check-label i {
    color: #0d6efd;
}

/* Badge in category */
.sidebar-filter .badge.float-end {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 400;
}

.sidebar-filter .form-check-input:checked ~ .form-check-label .badge {
    background: #0d6efd;
    color: #fff;
}

/* Price filter */
.price-filter .input-group-sm .input-group-text {
    font-size: 0.75rem;
    padding: 0 8px;
    background: #f8f9fa;
}

.price-filter .form-control-sm {
    font-size: 0.8rem;
    padding: 4px 8px;
}

/* Range slider */
.price-range-slider .form-range {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.price-range-slider .form-range::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.price-range-slider .form-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}

/* Filter actions */
.sidebar-filter .filter-actions {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.sidebar-filter .filter-actions .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 9px 12px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.sidebar-filter .filter-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar-filter {
        position: relative;
        top: 0;
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .sidebar-filter .filter-title {
        font-size: 0.85rem;
    }
    
    .sidebar-filter .form-check-label {
        font-size: 0.82rem;
    }
}

@media (max-width: 576px) {
    .sidebar-filter {
        padding: 12px 10px;
        border-radius: 8px;
    }
    
    .sidebar-filter .filter-section {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .sidebar-filter .filter-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .sidebar-filter .form-check {
        padding-left: 24px;
    }
    
    .sidebar-filter .form-check-label {
        font-size: 0.78rem;
    }
    
    .sidebar-filter .form-check-label i {
        width: 16px;
        font-size: 0.7rem;
    }
}