:root {
    --primary: #0a1930;
    /* Very dark corporate navy */
    --primary-light: #17365d;
    --accent: #d32f2f;
    /* Solid Industrial Red */
    --accent-hover: #b71c1c;
    --secondary: #f4f6f8;
    /* Crisp light gray background */
    --text-dark: #1e293b;
    --text-light: #475569;
    --border: #cbd5e1;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Nav */
.header {
    background-color: var(--white);
    border-bottom: 3px solid var(--accent);
    /* Strong definition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-light);
    /* Kept elegant and muted */
    font-weight: 500;
}

.logo i {
    color: var(--accent);
    font-size: 32px;
}

/* Search Bar - Corporate Sharp */
.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 60px;
    border: none;
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(10, 25, 48, 0.1);
}

.search-container button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background-color: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: var(--primary-light);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 25px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.action-item:hover {
    color: var(--accent);
}

.action-item i {
    font-size: 24px;
    color: var(--primary);
}

.action-item:hover i {
    color: var(--accent);
}

/* Navbar */
.navbar {
    padding: 0 5%;
    background-color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
    border-bottom: 3px solid transparent;
}

.nav-item:hover>a {
    border-bottom: 3px solid var(--accent);
}

/* Mega Menu - Corporate Sharp */
.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 10%;
    right: 10%;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    border-top: 4px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: none;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-col {
    padding: 30px;
    flex: 1;
    border-right: 1px solid var(--secondary);
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-menu-col h3 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mega-menu-col ul li {
    margin-bottom: 12px;
}

.mega-menu-col ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.mega-menu-col ul li a i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent);
}

.mega-menu-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.mega-menu-col ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.menu-banner {
    background-color: #2e304d;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.banner-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--accent);
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}

.btn-sm:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}


/* Hero Slider Sections */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-color: var(--primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(10, 25, 48, 0.55);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&q=80');
}

.hero-content {
    max-width: 750px;
    z-index: 10;
    color: var(--white);
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e2e8f0;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

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

.hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--white);
}

/* Replaced glass-card with hero-info-card for solid corporate look */
.hero-info-card {
    background: rgba(10, 25, 48, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(50px);
    opacity: 0;
    animation: slideIn 0.8s forwards;
}

.hero-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-info-card i {
    font-size: 28px;
    color: var(--accent);
}

.hero-info-card span {
    font-size: 16px;
    font-weight: 600;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--accent);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10, 25, 48, 0.7);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Stats Section - Solid & Grounded */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background-color: var(--white);
    text-align: center;
    position: relative;
    z-index: 20;
    margin-top: -30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.stat-box {
    position: relative;
    padding: 35px 20px;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border);
}

.stat-box h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-box p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}


/* Popular Products - Corporate Grid */
.products-section {
    padding: 90px 5% 50px;
    background-color: var(--secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.view-all:hover {
    color: var(--accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    padding: 20px;
    position: relative;
    transition: transform 0.2s, all;
    border: 1px solid var(--border);
    display: flex;
    transition-duration: 200ms;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(179, 179, 179, 0.05);
    border-color: gray;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-brand {
    font-size: .7rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .9rem !important;
    color: var(--primary);
    line-height: 1.4;
    flex-grow: 1;
    font-weight: 600;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-tax {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-addToCart {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.product-card:hover .btn-addToCart {
    background: var(--primary);
    color: var(--white);
}

.btn-addToCart:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}


/* Brands Slider Section */
.brands-slider-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.slider-wrapper::before,
.slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    width: calc(200px * 14);
    animation: scroll 25s linear infinite;
    align-items: center;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    width: 200px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-slide img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-slide:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* Features Data Blocks */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 5%;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    transition: border-top-color 0.3s;
}

.feature-box:hover {
    border-top-color: var(--accent);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
}

/* Expanded Footer - Solid Industrial */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 5% 0;
    border-top: 4px solid var(--accent);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--text-light);
    font-weight: 500;
}

.footer-logo i {
    color: var(--accent);
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
}

.contact-list i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */

@media (max-width: 1024px) {

    .desktop-search,
    .desktop-nav {
        display: none !important;
    }

    .hamburger-btn {
        display: block !important;
    }

    .header-top {
        justify-content: space-between;
        padding: 15px;
    }

    .header-actions {
        flex-direction: row !important;
        gap: 15px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .whatsapp-btn {
        padding: 10px;
        border-radius: 50%;
    }

    .contact-info {
        align-items: flex-end !important;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 10px !important;
    }

    .contact-info {
        display: none !important;
        /* Hide contact text block on very small screens to fit the logo and buttons nicely */
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 20px 0;
    }

    .mega-menu {
        position: static;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-item.has-mega:hover .mega-menu {
        display: flex;
    }

    .mega-menu-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .hero-image {
        display: none;
        /* Hide extra elements to preserve space */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Header Mobile Specifics & Buttons */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #128C7E;
}

/* Fullscreen Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-header .logo {
    color: white;
}

.mobile-menu-header .logo span {
    color: #cbd5e1;
}

/* Make any image inside the mobile logo white */
.mobile-menu-header .logo img {
    filter: brightness(0) invert(1);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
}

.mobile-search {
    display: flex;
    margin-bottom: 30px;
}

.mobile-search input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background-color: var(--white);
    color: var(--text-dark);
}

.mobile-search button {
    padding: 0 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.mobile-nav-links a {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

/* Live Search Dropdown */
.search-container {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-dropdown.active {
    display: block;
}

.search-category {
    padding: 8px 15px;
    background: #f8fafc;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

.search-category:first-child {
    border-top: none;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f8fafc;
}

.search-item-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.search-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-item-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-meta {
    font-size: 0.75rem;
    color: #64748b;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}



.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}


.btn-detail {
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detail:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white;
}

.btn-detail-disabled {
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    background: white;
    color: gray;
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detail-disabled:hover {
    background: white !important;
    border-color: gray !important;
    color: gray;
}

.product-card:hover .btn-detail {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}



.product-code {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 8px;
}


@media (max-width: 1024px) {
    .section-title {
        font-size: 1rem !important;
    }

    .brands-slider-section {
        padding: 90px 5% 50px;
    }

    .search-container {
        border: none !important;
    }

    .slider-nav {
        top: 10%;
    }

    .lang-switcher {
        display: none !important;
    }

    .lang-switcher-mb {
        display: inline-block !important;
    }
}

.lang-switcher-mb {
    display: none;
}