/* ========================================
   FARERO - Kurumsal Otomotiv Yedek Parça
   Dark Theme Design System
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS Variables - Design Tokens
   ======================================== */
:root {
    /* Primary Colors */
    --primary: #4c8197;
    --primary-dark: #3a6475;
    --primary-light: #5d9ab0;
    --primary-hover: #3a6475;

    /* Background Colors - Lightened */
    --bg-dark: #0a1520;
    --bg-surface: #0f1f2c;
    --bg-card: #142836;
    --bg-elevated: #1a3344;

    /* Border Colors - Lightened */
    --border-dark: #2a5468;
    --border-muted: #1e3d4d;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0d0d8;
    --text-muted: #7fa5b0;

    /* Status Colors */
    --status-success: #22c55e;
    --status-warning: #eab308;
    --status-error: #ef4444;

    /* Font Families */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 4px 20px rgba(76, 129, 151, 0.4);

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-offcanvas: 1040;
    --z-modal: 1050;
    --z-tooltip: 1060;
}

/* ========================================
   Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

/* ========================================
   Navbar
   ======================================== */
.navbar-farero {
    background-color: var(--bg-dark) !important;
    border-bottom: 1px solid var(--border-dark);
    padding: 0.75rem 0;
}

.navbar-farero .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-farero .navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-farero .nav-link {
    color: var(--text-secondary) !important;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-farero .nav-link:hover,
.navbar-farero .nav-link.active {
    color: var(--text-primary) !important;
}

/* Uppercase nav links */
.navbar-farero .nav-link.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mega Menu Dropdown */
.dropdown-mega {
    position: relative;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .dropdown-mega:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-mega>.dropdown-menu {
        margin-top: 0;
    }
}

/* Make dropdown-toggle clickable as link */
.dropdown-mega>.nav-link.dropdown-toggle {
    pointer-events: auto;
}

/* Nested Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    margin-left: 0;
    border-radius: var(--radius-md);
}

.dropdown-submenu:hover>.submenu {
    display: block;
}

/* Submenu Arrow */
.dropdown-toggle-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle-sub .submenu-arrow {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-submenu:hover .submenu-arrow {
    opacity: 1;
}

/* Dropdown Menu Styling */
.navbar-farero .dropdown-menu {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-farero .dropdown-item {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.navbar-farero .dropdown-item:hover {
    background-color: var(--bg-elevated);
    color: var(--text-primary);
}

.navbar-farero .dropdown-divider {
    border-color: var(--border-dark);
    margin: 0.5rem 0;
}

.navbar-farero .navbar-toggler {
    border: 1px solid var(--border-dark);
    padding: 0.5rem;
}

.navbar-farero .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28157, 189, 197, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Search Input */
.search-input {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(76, 129, 151, 0.2);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-wrapper {
    position: relative;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   Mobile Sidebar (Offcanvas)
   ======================================== */
.offcanvas-farero {
    background-color: var(--bg-dark) !important;
    border-right: 1px solid var(--border-dark);
    width: 300px !important;
}

.offcanvas-farero .offcanvas-header {
    border-bottom: 1px solid var(--border-dark);
    padding: 1rem 1.25rem;
}

.offcanvas-farero .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-farero .sidebar-logo {
    height: 45px;
    width: auto;
}

.offcanvas-farero .nav-link {
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin: 0.125rem 0.75rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.offcanvas-farero .nav-link:hover,
.offcanvas-farero .nav-link.active {
    color: var(--text-primary);
    background-color: var(--bg-elevated);
}

.offcanvas-farero .nav-link i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Sidebar Dropdown */
.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-dropdown-toggle::after {
    content: '\f078';
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.sidebar-dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.sidebar-submenu {
    padding-left: 2.5rem;
}

.sidebar-submenu .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Sidebar Footer */
.sidebar-footer {
    border-top: 1px solid var(--border-dark);
    padding: 1rem 1.25rem;
    margin-top: auto;
}

.sidebar-contact {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sidebar-contact p {
    margin-bottom: 0.5rem;
}

.sidebar-contact i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 16px;
}

.sidebar-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background-color: var(--bg-elevated);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.sidebar-social a:hover {
    background-color: var(--primary);
    color: var(--text-primary);
}

/* ========================================
   Footer
   ======================================== */
.footer-farero {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.125rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--bg-elevated);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ========================================
   Floating Contact Buttons
   ======================================== */
@media (max-width: 768px) {
    .footer-farero {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }
}

/* ========================================
   Floating Contact Buttons
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: var(--z-fixed);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-btn.phone {
    background-color: var(--primary);
}

.floating-btn.scroll-top {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
}

.floating-btn.scroll-top:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(2, 4, 9, 0.7) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: rgba(76, 129, 151, 0.2);
    border: 1px solid rgba(76, 129, 151, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary-farero {
    background-color: var(--primary);
    border: none;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-primary);
}

.btn-primary-farero:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-farero {
    background-color: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-outline-farero:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--text-primary);
}

/* ========================================
   Category Cards
   ======================================== */
.category-card {
    position: relative;
    display: block;
    aspect-ratio: 5 / 5;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: rgba(76, 129, 151, 0.5);
    transform: translateY(-5px);
}

.category-card-image {
    position: absolute;
    inset: 0rem;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    z-index: 5;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 10;
}

.category-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(76, 129, 151, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.category-card:hover .category-card-icon {
    background-color: var(--primary);
    color: white;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.category-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Product Cards
   ======================================== */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: radial-gradient(circle at center, rgb(255 255 255 / 80%), #00000000);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.product-badge.new {
    background-color: var(--primary);
    color: white;
}

.product-card-body {
    padding: 1rem;
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.product-card:hover .product-card-title {
    color: var(--primary);
}

.product-card-stock {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-dark);
    margin-top: 0.75rem;
}

.product-card-sku {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-card-link:hover {
    color: var(--text-primary);
}

/* ========================================
   Section Titles
   ======================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.section-link:hover {
    color: var(--text-primary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background-color: rgba(76, 129, 151, 0.1);
    border: 1px solid rgba(76, 129, 151, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
}

/* ========================================
   Filter Sidebar
   ======================================== */
.filter-section {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.filter-header {
    background-color: var(--bg-elevated);
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.filter-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin: 0;
}

.filter-body {
    padding: 0.5rem;
}

/* Accordion Styling */
.filter-accordion .accordion-item {
    background-color: transparent;
    border: none;
}

.filter-accordion .accordion-button {
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.filter-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-elevated);
    box-shadow: none;
}

.filter-accordion .accordion-button::after {
    filter: invert(0.7);
}

.filter-accordion .accordion-body {
    padding: 0.5rem 0.75rem 0.75rem 1.5rem;
}

.filter-accordion .form-check-input {
    background-color: var(--bg-dark);
    border-color: var(--border-dark);
}

.filter-accordion .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.filter-accordion .form-check-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hide arrow for accordion items without subcategories */
.filter-accordion .accordion-button.no-arrow::after {
    display: none;
}

.filter-accordion .accordion-button.no-arrow {
    cursor: pointer;
}

/* Custom accordion with separate link and toggle */
.filter-accordion .accordion-header-wrapper {
    background-color: transparent;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease;
}

.filter-accordion .accordion-header-wrapper:hover {
    background-color: var(--bg-elevated);
}

.filter-accordion .accordion-link {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.filter-accordion .accordion-link:hover {
    color: var(--primary);
}

.filter-accordion .accordion-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-accordion .accordion-toggle-btn:hover {
    color: var(--primary);
}

.filter-accordion .accordion-toggle-btn i {
    transition: transform 0.2s ease;
}

.filter-accordion .accordion-toggle-btn:not(.collapsed) i {
    transform: rotate(180deg);
}

/* ========================================
   Pagination
   ======================================== */
.pagination-farero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
}

.pagination-farero .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination-farero .page-link:hover {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

.pagination-farero .page-item.active .page-link {
    background-color: var(--primary);
    color: white;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb-farero {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-farero a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.breadcrumb-farero a:hover {
    color: var(--primary);
}

.breadcrumb-farero .separator {
    color: var(--border-dark);
}

.breadcrumb-farero .current {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================
   Utilities
   ======================================== */
.bg-dark-surface {
    background-color: var(--bg-surface);
}

.text-muted-custom {
    color: var(--text-muted);
}

.border-dark-custom {
    border-color: var(--border-dark) !important;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991.98px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}