/* Variables CSS */
:root {
    --primary: #0D47A1;
    --secondary: #607D8B;
    --accent-green: #4CAF50;
    --accent-orange: #FF9800;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typographie responsive */
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/38568/apple-imac-ipad-workplace-38568.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/669619/pexels-photo-669619.jpeg') center/cover;
    z-index: 1;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(76, 175, 80, 0.7) 100%);
    z-index: 1;
}

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

/* Cards animations */
.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card, .product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #25D366;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Filter Sidebar */
.filter-sidebar {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 100px;
}

@media (max-width: 768px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 20px;
    }
}

/* Form styles */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0b3d91;
    border-color: #0b3d91;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-warning {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* Catalogue Grid */
@media (min-width: 1024px) {
    .catalogue-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) and (min-width: 480px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin: 20px;
}

.testimonial-card .quote {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Map container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Utility classes */
.min-vh-60 { min-height: 60vh; }
.shadow-sm { box-shadow: var(--shadow); }
.bg-light-gray { background-color: var(--light-gray); }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent-green) !important; }

/* Bouton WhatsApp spécifique */
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Style pour la page thank-you */
.thank-you-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
/* Services Page Styles */
.hero-services {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/3861972/pexels-photo-3861972.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-service-detail {
    background: linear-gradient(rgba(13, 71, 161, 0.95), rgba(13, 71, 161, 0.85)),
    url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.service-card {
    transition: all 0.3s ease;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-xxl {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.benefit-item {
    margin-bottom: 1rem;
}

.benefit-number {
    min-width: 40px;
    font-weight: bold;
}

.popular-service {
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* Animation des statistiques */
.stat-item {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-services, .hero-service-detail {
        min-height: 40vh;
    }

    .service-image {
        height: 150px;
    }

    .icon-wrapper-xxl {
        width: 80px;
        height: 80px;
        margin-top: 2rem;
    }

    .sticky-sidebar {
        position: static;
    }
}

/* Filtres */
.category-filter.active {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Animation pour les cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

/* Délai d'animation pour les cartes */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Style pour les listes de bénéfices */
.benefits ul {
    padding-left: 0;
}

.benefits li {
    padding-left: 1.5rem;
    position: relative;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}
/* Variables CSS */
:root {
    --primary: #0D47A1;
    --secondary: #607D8B;
    --accent-green: #4CAF50;
    --accent-orange: #FF9800;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typographie responsive */
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/3861972/pexels-photo-3861972.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3861972/pexels-photo-3861972.jpeg') center/cover;
    z-index: 1;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(76, 175, 80, 0.7) 100%);
    z-index: 1;
}

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

/* Cards animations */
.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card, .product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #25D366;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Form styles */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0b3d91;
    border-color: #0b3d91;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-warning {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* Catalogue Grid */
@media (min-width: 1024px) {
    .catalogue-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) and (min-width: 480px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility classes */
.min-vh-60 { min-height: 60vh; }
.shadow-sm { box-shadow: var(--shadow); }
.bg-light-gray { background-color: var(--light-gray); }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent-green) !important; }

/* Pages spécifiques */
.hero-about, .hero-contact, .hero-solutions, .hero-projects, .hero-blog {
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-contact {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg');
}

/* Solutions cards */
.solution-card .card-header {
    border-radius: 15px 15px 0 0;
}

.solution-card .price .h1 {
    font-size: 3.5rem;
}

/* Projects */
.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Contact */
.contact-icon {
    min-width: 50px;
}

/* Testimonials */
.testimonial .stars {
    font-size: 1.2rem;
}
/* Contact Page Styles */
.hero-contact {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-item {
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

/* Sticky sidebar pour desktop */
@media (min-width: 992px) {
    .sticky-top {
        position: sticky;
        top: 100px;
    }
}

/* Messages d'erreur de validation */
.text-danger small {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Alert messages */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}
/* Contact Page Styles */
.hero-contact {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-item {
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

/* Sticky sidebar pour desktop */
@media (min-width: 992px) {
    .sticky-top {
        position: sticky;
        top: 100px;
    }
}

/* Messages d'erreur de validation */
.text-danger small {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Alert messages */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}
/* Header Fixe */
.sticky-top {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Ajustement du contenu sous le header fixe */
body {
    padding-top: 70px; /* Hauteur du header */
}

/* Header spacer pour les pages qui n'ont pas le body padding-top */
.header-spacer {
    height: 70px;
}

/* Navigation active state */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600 !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Ajustements pour mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1020;
    }

    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    body {
        padding-top: 60px; /* Réduire sur mobile */
    }

    .header-spacer {
        height: 60px;
    }
}

/* Logo responsive */
.logo-icon {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(15deg);
}

/* Navigation hover effects */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}
/* Responsive Design pour le header fixe */

/* Tablettes */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand h1 {
        font-size: 1.1rem !important;
    }

    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }

    body {
        padding-top: 60px;
    }
}

/* Mobiles */
@media (max-width: 767.98px) {
    .navbar-brand h1 {
        font-size: 1rem !important;
    }

    .navbar-brand small {
        font-size: 0.65rem !important;
    }

    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .btn-outline-primary {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }

    body {
        padding-top: 56px;
    }

    .header-spacer {
        height: 56px;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    .navbar-brand h1 {
        font-size: 0.9rem !important;
    }

    .logo-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }

    body {
        padding-top: 52px;
    }

    .header-spacer {
        height: 52px;
    }
}

/* Animation smooth pour les transitions */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Burger icon animation */
.navbar-toggler.active .navbar-toggler-icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.navbar-toggler:not(.active) .navbar-toggler-icon {
    transform: rotate(0);
    transition: transform 0.3s ease;
}
/* Catalogue Page Styles */
.hero-catalogue {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.8)),
    url('https://images.pexels.com/photos/5473298/pexels-photo-5473298.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

/* Product cards */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1;
}

.object-fit-cover {
    object-fit: cover;
}

/* Specifications list */
.specifications ul li {
    padding-left: 0;
    position: relative;
}

/* Stock badges animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.bg-warning, .bg-danger {
    animation: pulse 2s infinite;
}

/* Price range slider */
.form-range::-webkit-slider-thumb {
    background-color: var(--primary);
}

.form-range::-moz-range-thumb {
    background-color: var(--primary);
}

.form-range::-ms-thumb {
    background-color: var(--primary);
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid #dee2e6;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Filter sidebar */
.catalog-filters .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25);
}

/* Responsive catalogue */
@media (max-width: 991.98px) {
    .product-card {
        margin-bottom: 1.5rem;
    }

    .hero-catalogue {
        min-height: 30vh;
    }
}

@media (max-width: 767.98px) {
    .product-card .card-body {
        padding: 1rem;
    }

    .specifications ul li {
        font-size: 0.8rem;
    }
}

/* Empty state */
.card .fa-box-open {
    color: #6c757d;
    opacity: 0.5;
}