/* ===================================
   ARMELTRADE - ULTRA MODERN DESIGN
   Dark Red / White / Black Theme
   =================================== */

:root {
    --red-primary: #DC2626;
    --red-dark: #991B1B;
    --red-light: #FEE2E2;
    --black: #0F172A;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-900: #0F172A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===================================
   TOP BAR
   =================================== */

.top-bar {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 3px solid var(--red-primary);
}

.top-bar span, .top-bar a {
    color: var(--white) !important;
    text-decoration: none;
}

.top-bar i {
    color: var(--red-primary);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--gray-100);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black) !important;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--red-primary) !important;
}

.navbar-brand i {
    color: var(--red-primary);
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--black) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--red-primary) !important;
}

.nav-link:hover::after {
    width: 60%;
}

/* ===================================
   CATEGORY NAVIGATION
   =================================== */

.mega-menu-container {
    background: var(--gray-50);
    border-bottom: 3px solid var(--red-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mega-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mega-menu-item {
    position: relative;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 0;
    background: transparent;
}

.mega-menu-link:hover {
    background: var(--red-primary);
    color: var(--white);
}

.mega-menu-link i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 2px solid var(--red-primary);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    padding: 0;
    min-width: 500px;
    opacity: 0;
    visibility: hidden;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown-inner {
    padding: 1rem 0rem 0.25rem 1rem;
    word-wrap: break-word;
    word-break: break-word;
}

.mega-dropdown-header {
    padding-bottom: 1rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--red-primary);
}

.mega-dropdown-header h6 {
    color: var(--black);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.25rem;
    color: var(--black);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
    font-weight: 600;
    border-left: 3px solid transparent;
}

.mega-dropdown-item:hover {
    color: var(--red-dark);
    font-weight: 700;
    border-left-color: var(--red-dark);
    transform: translateX(5px);
}

.mega-dropdown-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.mega-dropdown-item.featured {
    background: var(--black);
    color: var(--white);
    border-left-color: var(--red-primary);
    font-weight: 700;
}

.mega-dropdown-item.featured:hover {
    background: var(--red-primary);
    border-left-color: var(--red-dark);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background: linear-gradient(135deg, var(--black) 0%, #1e293b 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--red-primary);
    background-image: url('/images/hero-bg.jpg'); /* Dosya yolunu kontrol edin */
    /* 2. Görselin Konumlandırması ve Boyutu */
    background-size: cover; /* Görselin alanı tamamen kaplamasını sağlar */
    background-position: center center; /* Görseli ortalar */
    background-repeat: no-repeat; /* Görselin tekrar etmesini engeller */
    /* 3. Metin Okunabilirliğini Artırmak İçin Filtre (Overlay) */
    /* Mevcut koyu rengin üzerine yarı saydam bir katman ekler */
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah katman */
    background-blend-mode: overlay; /* Görsel ile rengi karıştırır */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.1) 100%);
    transform: skewX(-15deg);
    transform-origin: top right;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-section .btn-light {
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section .btn-light:hover {
    background: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* ===================================
   SECTION TITLES
   =================================== */

h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--red-primary);
}

/* ===================================
   SLIDER - ENHANCED VERSION
   =================================== */

/* Slider container'ına overflow hidden ekleyelim */
#additionalSlider {
    overflow: hidden !important;
    position: relative;
}

    /* Carousel inner'a da overflow hidden */
    #additionalSlider .carousel-inner {
        overflow: hidden !important;
        position: relative;
    }

    /* Her carousel item için kesin boyutlandırma */
    #additionalSlider .carousel-item {
        position: relative;
        display: none;
        width: 100%;
        margin-right: -100%;
        backface-visibility: hidden;
        transition: transform 0.6s ease-in-out;
    }

        #additionalSlider .carousel-item.active,
        #additionalSlider .carousel-item-next,
        #additionalSlider .carousel-item-prev {
            display: block;
        }

        /* Active item */
        #additionalSlider .carousel-item.active {
            z-index: 2;
        }

    /* Geçiş sırasındaki itemler */
    #additionalSlider .carousel-item-next,
    #additionalSlider .carousel-item-prev {
        position: absolute;
        top: 0;
        z-index: 1;
    }

        /* Sağa kaydırma */
        #additionalSlider .carousel-item-next.carousel-item-start,
        #additionalSlider .active.carousel-item-end {
            transform: translateX(0);
        }

    #additionalSlider .carousel-item-next,
    #additionalSlider .active.carousel-item-end {
        transform: translateX(100%);
    }

    /* Sola kaydırma */
    #additionalSlider .carousel-item-prev.carousel-item-end,
    #additionalSlider .active.carousel-item-start {
        transform: translateX(0);
    }

    #additionalSlider .carousel-item-prev,
    #additionalSlider .active.carousel-item-start {
        transform: translateX(-100%);
    }

    /* Görseller için kesin boyutlandırma ve smooth transition */
    #additionalSlider .carousel-item img {
        height: 400px;
        width: 100%;
        object-fit: cover;
        display: block;
        backface-visibility: hidden;
        transform: translateZ(0);
        will-change: transform;
    }

    /* Fade efekti için alternatif (opsiyonel) */
    #additionalSlider.carousel-fade .carousel-item {
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        transform: none;
    }

        #additionalSlider.carousel-fade .carousel-item.active {
            opacity: 1;
        }

    #additionalSlider.carousel-fade .carousel-item-next.carousel-item-start,
    #additionalSlider.carousel-fade .carousel-item-prev.carousel-item-end {
        opacity: 1;
    }

    #additionalSlider.carousel-fade .active.carousel-item-start,
    #additionalSlider.carousel-fade .active.carousel-item-end {
        opacity: 0;
    }

    /* Caption için iyileştirmeler */
    #additionalSlider .carousel-caption {
        z-index: 10;
        padding: 20px;
        background: rgba(15, 23, 42, 0.7);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }

        #additionalSlider .carousel-caption h5,
        #additionalSlider .carousel-caption p {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
            margin: 0;
        }

    /* Navigation arrows için iyileştirme */
    #additionalSlider .carousel-control-prev,
    #additionalSlider .carousel-control-next {
        z-index: 15;
        width: 5%;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

        #additionalSlider .carousel-control-prev:hover,
        #additionalSlider .carousel-control-next:hover {
            opacity: 1;
        }

    /* Indicators için iyileştirme */
    #additionalSlider .carousel-indicators {
        z-index: 15;
    }

        #additionalSlider .carousel-indicators [data-bs-target] {
            background-color: var(--red-primary);
            border: 2px solid white;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        #additionalSlider .carousel-indicators .active {
            transform: scale(1.3);
        }

/* Küçük cihazlarda */
@media (max-width: 768px) {
    #additionalSlider .carousel-item img {
        height: 250px;
    }

    #additionalSlider .carousel-caption {
        padding: 10px;
        font-size: 0.9rem;
    }

        #additionalSlider .carousel-caption h5 {
            font-size: 1rem;
        }

        #additionalSlider .carousel-caption p {
            font-size: 0.8rem;
            display: none; /* Mobilde açıklamayı gizle */
        }
}

/* Performance optimization */
#additionalSlider * {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}



/* ===================================
   PRODUCT CARDS
   =================================== */

.product-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--red-primary);
}

.product-card .card-img-top {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-bottom: 3px solid var(--red-primary);
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card .card-text {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================
   BADGES
   =================================== */

.badge {
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.badge.bg-primary {
    background: var(--red-primary) !important;
    color: var(--white);
    border-color: var(--red-dark);
}

.badge.bg-secondary {
    background: var(--black) !important;
    color: var(--white);
}

.badge.bg-warning {
    background: #F59E0B !important;
    color: var(--white);
    border-color: #D97706;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    padding: 0.875rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
    border: 3px solid var(--red-primary);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-outline-primary {
    border: 3px solid var(--red-primary);
    color: var(--red-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-secondary {
    border: 3px solid var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* ===================================
   INFO SECTION
   =================================== */

.info-section {
    background: var(--gray-50);
    padding: 4rem 0;
    margin: 4rem 0;
    border-top: 5px solid var(--red-primary);
    border-bottom: 5px solid var(--red-primary);
}

.info-section .feature-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 4px solid var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.info-section .col-md-4:hover .feature-icon {
    background: var(--red-primary);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--red-dark);
}

.info-section .col-md-4:hover .feature-icon i {
    color: var(--white) !important;
}

.info-section .feature-icon i {
    font-size: 2.5rem;
    color: var(--red-primary);
    transition: color 0.3s ease;
}

.info-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-section p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
    border-top: 5px solid var(--red-primary);
}

.footer h5 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--red-primary);
    letter-spacing: 0.5px;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: var(--red-primary);
}

.footer p {
    color: rgba(255,255,255,0.7);
}

/* ===================================
   CONTACT PAGE
   =================================== */

/* reusable icon container used in About & Contact */
.feature-icon {
    width: 90px;
    height: 90px;
    border: 4px solid var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: var(--white);
}

.feature-icon i {
    font-size: 2rem;
}

/* smooth lift on hover used by cards */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

/* larger content area spacing for contact card */
.contact-info-card .form-label {
    text-transform: none;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border: 4px solid var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 2.5rem;
}

.hover-card {
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border-color: var(--red-primary);
}

.hover-card:hover .icon-circle {
    background: var(--red-primary);
    transform: scale(1.1);
}

.hover-card:hover .icon-circle i {
    color: var(--white) !important;
}

.form-label {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

.form-control, .form-select {
    border: 3px solid var(--gray-300);
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    outline: none;
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */

.product-image-container {
    background: var(--gray-50);
    padding: 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gray-200);
}

.product-image-container img {
    max-height: 500px;
    object-fit: contain;
}

.thumbnail-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: var(--red-primary);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* ===================================
   BREADCRUMB
   =================================== */

.breadcrumb {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-left: 5px solid var(--red-primary);
}

.breadcrumb-item a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: var(--red-primary);
}

.breadcrumb-item.active {
    color: var(--gray-500);
    font-weight: 600;
}

/* ===================================
   ALERTS
   =================================== */

.alert {
    border: 3px solid;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.alert-info {
    background: var(--gray-50);
    border-color: var(--red-primary);
    color: var(--black);
}

.alert-warning {
    background: #FEF3C7;
    border-color: #F59E0B;
    color: #92400E;
}

/* ===================================
   RESPONSIVE
   =================================== */

@@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        margin-top: 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* ===================================
   SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--red-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* ===================================
   ANIMATIONS
   =================================== */

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   UTILITIES
   =================================== */

.text-red {
    color: var(--red-primary) !important;
}

.bg-red {
    background: var(--red-primary) !important;
}

.border-red {
    border-color: var(--red-primary) !important;
}

.shadow-red {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3) !important;
}

/* ===================================
   SEARCH BAR
   =================================== */

.search-bar-container {
    display: flex;
    gap: 0.5rem;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    border: 3px solid var(--gray-300);
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--white);
}

.search-input-group:focus-within {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.search-input-group .form-control {
    border: none !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
}

.search-input-group .form-control:focus {
    box-shadow: none !important;
    border: none !important;
}

.search-input-group .form-control::placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

.search-input-group .input-group-text {
    border: none;
    padding: 0 1rem;
}

.search-input-group .btn-red {
    background: var(--red-primary);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-group .btn-red:hover {
    background: var(--red-dark);
}

.search-suggestions {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .search-suggestions a:hover {
        background-color: darkred !important;
        color: white;
        border-color: black;
    }

.hover-light {
    transition: all 0.2s ease;
}

.hover-light:hover {
    background: var(--gray-50) !important;
}

@media (max-width: 992px) {
    .search-bar-container {
        max-width: 100% !important;
        margin-top: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .search-input-group .form-control::placeholder {
        font-size: 0.85rem;
    }
}

/* ===================================
   PRODUCT DESCRIPTION
   =================================== */

.product-description-container {
    border-left: 5px solid var(--red-primary);
    line-height: 1.8;
}

.product-description-container p {
    color: var(--black);
    margin-bottom: 1rem;
}

.product-description-container p:last-child {
    margin-bottom: 0;
}

/* ===================================
   LANGUAGE SELECTOR
   =================================== */

.language-selector {
    display: flex;
    gap: 0.25rem;
}

.language-selector .btn-group {
    display: flex;
    gap: 0.25rem;
}

.language-selector .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid transparent;
    background: transparent;
    color: var(--white);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.language-selector .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.7);
}

.language-selector .btn-outline-secondary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.language-selector .btn-primary {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: var(--white);
}

.language-selector .btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: none;
    box-shadow: none;
}

.language-selector .btn i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

@@media (max-width: 768px) {
    .language-selector {
        margin-top: 0.5rem;
    }

    .language-selector .btn {
        padding: 0.375rem 0.625rem;
        font-size: 0.65rem;
    }
}