/* ============================================================
   PETECONNEX STOREFRONT — Custom Styles (Bootstrap 5 Based)
   ============================================================ */

:root {
    --navy: #1a365d;
    --navy-dark: #142849;
    --navy-light: #234e82;
    --brand-orange: #f97316;
    --brand-red: #dc3545;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* ─── TOP BAR ───────────────────────────────────────────────── */
.topbar {
    background: var(--navy-dark);
    color: #ccc;
    font-size: 0.8rem;
    padding: 6px 0;
}
.topbar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}
.topbar a:hover {
    color: var(--brand-orange);
}
.topbar .social-icons a {
    margin-right: 12px;
    font-size: 0.9rem;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
    background: var(--navy) !important;
    padding: 0.6rem 0;
}
.navbar .logo-link img {
    height: 40px;
}
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand-orange) !important;
}
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
.navbar .dropdown-item:hover {
    background: #f0f4ff;
    color: var(--navy);
}

/* Language Switcher */
.language-switcher .lang-btn {
    color: #fff;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
}
.language-switcher .lang-btn:hover {
    border-color: var(--brand-orange);
}
.language-switcher .dropdown-item img {
    width: 20px;
    margin-right: 8px;
}

/* ─── HERO CAROUSEL ─────────────────────────────────────────── */
#hero .hero-slide {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}
#hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 54, 93, 0.85),
        rgba(26, 54, 93, 0.3)
    );
}
#hero .carousel-item .container {
    position: relative;
    z-index: 2;
}
#hero h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
#hero .btn-primary {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 8px;
}
#hero .btn-primary:hover {
    background: #ea6a10;
    border-color: #ea6a10;
}

/* ─── SEARCH INPUT ──────────────────────────────────────────── */
.search-input {
    border-radius: 8px 0 0 8px;
    border: 2px solid #e0e0e0;
    padding: 10px 16px;
}
.search-input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}
.search-btn {
    border-radius: 0 8px 8px 0;
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    font-weight: 600;
    padding: 10px 24px;
}
.search-btn:hover {
    background: #ea6a10;
}

/* ─── CATEGORY SIDEBAR ──────────────────────────────────────── */
.category-side {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}
.category-side h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-orange);
}
.category-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-side ul li {
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.category-side ul li:hover,
.category-side ul li.active {
    background: var(--navy);
    color: #fff;
}
.category-side ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* ─── HOT PRICE / PRODUCT CARDS ─────────────────────────────── */
.hotprice-section .view-all {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}
.hotprice-section .view-all:hover {
    text-decoration: underline;
}

.hot-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.hot-card .badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
}
.hot-card .hot-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}
.hot-card .hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.hot-card:hover .hot-img img {
    transform: scale(1.05);
}
.hot-card .hot-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hot-card .hot-info h6 {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 6px;
}
.hot-card .hot-info .price {
    margin-bottom: 10px;
}
.hot-card .hot-info .price .old {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.85rem;
    margin-right: 6px;
}
.hot-card .hot-info .price .new {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 1rem;
}
.hot-card .hot-info .btn {
    margin-top: auto;
}

/* ─── PRODUCT CARD (New Arrivals style) ─────────────────────── */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.product-card .product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
}
.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-card .product-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card .product-info h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.product-card .product-info .sku {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 6px;
}
.product-card .product-info .price {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 10px;
}
.product-card .product-info .btn {
    margin-top: auto;
}

/* ─── COMPANY PROFILE ───────────────────────────────────────── */
.company-profile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.company-profile .logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
}
.company-profile .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.company-profile h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}
.company-profile .philosophy {
    max-width: 700px;
    margin: 30px auto;
}
.company-profile .philosophy h3 {
    color: var(--brand-orange);
    font-weight: 700;
}
.company-profile .philosophy p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}
.company-profile .profile-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}
.company-profile .profile-box:hover {
    transform: translateY(-4px);
}
.company-profile .profile-box h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
}

/* ─── FACTORY / PARTNER SWIPER ──────────────────────────────── */
.factory-section {
    background: #fff;
}
.factory-item {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    height: 100%;
}
.factory-item:hover,
.factory-item.active {
    border-color: var(--brand-orange);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
}
.factory-item .factory-img {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.factory-item .factory-img img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}
.factory-item h6 {
    font-weight: 700;
    color: var(--navy);
    text-transform: capitalize;
    margin-bottom: 8px;
}
.factory-item p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

/* ─── BRAND LOGOS GRID ────────────────────────────────────────── */
.brand-logos-section {
    background: #fff;
    padding: 60px 0;
}
.brand-logos-header {
    margin-bottom: 40px;
}
.brand-logos-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--navy);
    display: inline-block;
}
.brand-logos-header p {
    color: #555;
    font-size: 0.95rem;
    margin-top: 12px;
    max-width: 520px;
}
.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 40px;
    align-items: center;
    justify-items: center;
}
@media (max-width: 991px) {
    .brand-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (max-width: 575px) {
    .brand-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    min-height: 90px;
    text-decoration: none !important;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.brand-logo-item:hover {
    opacity: 0.75;
    transform: scale(1.04);
    text-decoration: none !important;
}
.brand-logo-item img {
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
    filter: none;
}
.brand-logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ─── ABOUT SPLIT ───────────────────────────────────────────── */
.about-split {
    padding: 80px 0;
}
.about-split .about-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.about-split .about-text h2 {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.about-split .about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}
.btn-about {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-about:hover {
    background: #ea6a10;
    color: #fff;
}

/* ─── TRUST SECTION ─────────────────────────────────────────── */
.trust-section {
    background: var(--navy);
    color: #fff;
}
.trust-section .trust-item {
    padding: 20px;
}
.trust-section .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.trust-section .icon-box i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}
.trust-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* ─── CATEGORY SECTION ──────────────────────────────────────── */
.category-section .category-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
}
.category-section .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.category-section .category-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.category-section .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.category-section .category-card:hover .category-img img {
    transform: scale(1.08);
}
.category-section .category-img .arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}
.category-section .category-content {
    padding: 16px;
}
.category-section .category-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1rem;
}
.category-section .category-content span {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    display: block;
}

/* ─── SERVICES & TOOLS ──────────────────────────────────────── */
.services-tools {
    background: #f8f9fa;
}
.services-tools .view-all {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}
.services-tools .tool-item {
    padding: 20px 10px;
    transition: transform 0.3s;
}
.services-tools .tool-item:hover {
    transform: translateY(-4px);
}
.services-tools .tool-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}
.services-tools .tool-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services-tools h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.services-tools p {
    font-size: 0.8rem;
    color: #888;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer.site-footer {
    background: var(--navy-dark);
    color: #ccc;
    padding: 60px 0 0;
}
footer.site-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}
footer.site-footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
footer.site-footer a:hover {
    color: var(--brand-orange);
}
footer.site-footer .footer-logo img {
    height: 44px;
}
footer.site-footer .footer-desc {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.7;
}
footer.site-footer .footer-links li {
    margin-bottom: 8px;
}
footer.site-footer .footer-links li a {
    font-size: 0.9rem;
}
footer.site-footer .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}
footer.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 8px;
    font-size: 0.9rem;
    transition: background 0.3s;
}
footer.site-footer .footer-social a:hover {
    background: var(--brand-orange);
    color: #fff;
}
footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* ─── PAGINATION ────────────────────────────────────────────── */
.pagination {
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-item .page-link {
    border-radius: 8px !important;
    border: 1px solid #e0e0e0;
    color: var(--navy);
    font-size: 0.88rem;
    padding: 6px 14px;
    transition: all 0.2s;
    background: #fff;
}
.pagination .page-item .page-link:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}
.pagination .page-item.active .page-link {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    font-weight: 700;
}
.pagination .page-item.disabled .page-link {
    color: #ccc;
    background: #f8f8f8;
    border-color: #e8e8e8;
    cursor: not-allowed;
}

/* ─── UTILITY / MISC ────────────────────────────────────────── */
.section-title {
    font-weight: 800;
    color: var(--navy);
}
.section-subtitle {
    color: #999;
    font-size: 0.95rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Badge overrides */
.badge-brand {
    background: var(--brand-orange);
    color: #fff;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product grid Livewire overrides for Bootstrap */
.lw-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
}
.lw-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Mobile ≤ 576px ───────────────────────────────────────── */
@media (max-width: 576px) {
    /* Top bar: stack or hide social on very small */
    .topbar .container {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 6px;
        text-align: center;
    }
    .topbar .social-icons {
        display: none;
    }

    /* Navbar */
    .navbar {
        padding: 0.4rem 0;
    }
    .navbar-brand .fs-5 {
        font-size: 1rem !important;
    }

    /* Navbar right side: stack search/cart/lang */
    .navbar .collapse .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 10px 0;
    }

    /* Search input full width on mobile */
    .navbar .position-relative input[type="text"] {
        width: 100% !important;
    }
    /* Search dropdown full width */
    .navbar .position-absolute {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Hero */
    #hero .hero-slide {
        min-height: 260px;
    }
    #hero h1 {
        font-size: 1.5rem !important;
    }
    #hero p {
        font-size: 0.85rem;
    }
    #hero .btn-primary {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    /* Search bar in shop combo */
    .shop-combo .search-input {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .shop-combo .search-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Product cards: 2 per row */
    .col-md-3.col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Smaller card text */
    .hot-card .hot-info h6,
    .product-card .product-info h6 {
        font-size: 0.8rem;
    }
    .hot-card .hot-info .price .new,
    .product-card .product-info .price {
        font-size: 0.85rem;
    }
    .hot-card .hot-info .price .old {
        font-size: 0.75rem;
    }
    .hot-card .hot-info,
    .product-card .product-info {
        padding: 10px;
    }

    /* Company profile */
    .company-profile {
        padding: 40px 0;
    }
    .company-profile h1 {
        font-size: 1.5rem;
    }
    .company-profile .philosophy h3 {
        font-size: 1.1rem;
    }
    .company-profile .philosophy p {
        font-size: 0.9rem;
    }
    .company-profile .profile-box {
        padding: 20px 16px;
    }
    .company-profile .profile-box h4 {
        font-size: 1rem;
    }

    /* About split */
    .about-split {
        padding: 40px 0;
    }
    .about-split .about-text h2 {
        font-size: 1.4rem;
    }

    /* Section titles */
    .hotprice-section h2,
    .section-title {
        font-size: 1.2rem !important;
    }

    /* Category cards */
    .category-section .category-img {
        height: 120px;
    }
    .category-section .category-content h5 {
        font-size: 0.85rem;
    }
    .category-section .category-content span {
        font-size: 0.75rem;
    }

    /* Cart page */
    .card-body.d-flex.gap-3 {
        flex-wrap: wrap;
    }

    /* Product detail page */
    .col-md-6 .fs-3 {
        font-size: 1.4rem !important;
    }

    /* Footer */
    footer.site-footer {
        padding: 30px 0 0;
        text-align: center;
    }
    footer.site-footer .footer-logo {
        justify-content: center;
    }
    footer.site-footer .footer-social {
        justify-content: center;
        display: flex;
    }
    footer.site-footer .col-lg-2,
    footer.site-footer .col-lg-3,
    footer.site-footer .col-lg-4 {
        text-align: center;
    }

    /* CTA */
    .py-5[style*="background:var(--navy)"] h2 {
        font-size: 1.3rem;
    }

    /* Services tools */
    .services-tools .tool-img {
        width: 60px;
        height: 60px;
    }
    .services-tools .tool-img i {
        font-size: 2rem !important;
    }

    /* Trust section */
    .trust-section .icon-box {
        width: 50px;
        height: 50px;
    }
    .trust-section .icon-box i {
        font-size: 1.2rem;
    }
    .trust-section p {
        font-size: 0.85rem;
    }

    /* Factory/partner items */
    .factory-item {
        padding: 16px;
    }
    .factory-item h6 {
        font-size: 0.85rem;
    }
}

/* ─── Tablet ≤ 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hero smaller */
    #hero .hero-slide {
        min-height: 280px;
    }
    #hero h1 {
        font-size: 1.8rem !important;
    }

    /* Category sidebar: collapsible on tablet */
    .category-side {
        margin-bottom: 20px;
    }

    /* Cart items: tighter layout */
    .card-body .flex-shrink-0[style*="width:80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    /* Checkout: order summary below form */
    .position-sticky {
        position: relative !important;
        top: auto !important;
    }

    /* About split: reduce padding */
    .about-split {
        padding: 50px 0;
    }
}

/* ─── Small tablets & large phones 577-767px ───────────────── */
@media (min-width: 577px) and (max-width: 767px) {
    .col-md-3.col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ─── ≤ 991px (before lg breakpoint) ──────────────────────── */
@media (max-width: 991px) {
    /* Navbar collapsed menu styling */
    .navbar-collapse {
        background: var(--navy-dark);
        border-radius: 0 0 12px 12px;
        padding: 16px;
        margin-top: 8px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar-nav .dropdown-menu {
        background: var(--navy-light);
        border: none;
        border-radius: 8px;
        padding: 8px 0;
    }
    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 8px 16px;
    }
    .navbar-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--brand-orange);
    }

    /* Language & cart row */
    .navbar .collapse .d-flex.align-items-center.gap-3 {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
    }
}

/* ─── Touch-friendly tap targets ───────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .hot-card:hover,
    .product-card:hover,
    .category-section .category-card:hover,
    .factory-item:hover,
    .lw-product-card:hover {
        transform: none;
    }
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}
