html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial;
    margin: 0;
    background: #f4f6f9;
}

header {
    background: #111;
    color: white;
    padding: 5px 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 0px 0px;
}



.header-left h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 1px;
    color: #ff7a00;


}

.company-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-info h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 1px;
    color: #ff6a00;
    /* Orange brand color */
}

.company-email {
    font-size: 13px;
    color: #cccccc;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#searchInput {
    padding: 8px 1px;
    border-radius: 5px;
    border: none;
    width: 220px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
}

.company-logo {
    height: 55px;
    width: auto;
}

.company-logo2 {
    height: 95px;
    width: auto;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
}

.container {
    padding: 20px;
}

.search-bar {
    margin-bottom: 10px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.brand-title {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: fill;
    border-radius: 6px;
    margin-bottom: 12px;
}

.product:hover {
    transform: translateY(-9px);
}

.image-placeholder {
    height: 180px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}


.price {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 10px;
}

input[type="number"] {
    width: 60px;
    padding: 5px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: 0.3s;
    overflow-y: auto;
    z-index: 1000;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
}

.cart-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
}

.checkout-btn {
    margin-top: 10px;
    width: 100%;
    background: #28a745;
}

.invoice-btn {
    margin-top: 10px;
    width: 100%;
    background: #6f42c1;
}

.customer-form {
    margin-top: 15px;
}

.customer-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* .brand-nav {
            background: #1a1a1a;
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 12px 0;
            border-bottom: 1px solid #222;
        } */

.brand-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.brand-nav a:hover {
    color: #ff6a00;
    transform: translateY(-2px);
}

.brand-color {
    color: #ff6a00;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}


.dropdown-menu li {
    padding: 10px 15px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background: #222;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

/* ===== NAVBAR CONTAINER ===== */
.brand-nav {
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #000;
    border-bottom: none;
    box-shadow: none;
}


.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ===== NAV LIST ===== */
.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 15px 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* Active page highlight */
.nav-list a.active {
    color: #ff6a00;
    font-weight: 600;
}

.nav-list a:hover {
    color: #ff6a00;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 180px;
    border-radius: 6px;
    transition: max-height 0.4s ease;
}

.dropdown-menu li {
    padding: 12px 15px;
}

.dropdown-menu li a {
    display: block;
}

.dropdown-menu li:hover {
    background: #222;
}

.dropdown-menu.show {
    max-height: 300px;
}

/* ===== ARROW ROTATION ===== */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(180deg);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 15px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        background: #111;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-list.show {
        max-height: 500px;
    }

    .dropdown-menu {
        position: relative;
        background: #222;
    }

    .slide {
        height: 220px;
        max-height: 250px;
    }









}

.home-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0;
}

/* CAROUSEL */
/* .carousel {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: #000;
        } */

.slides {
    position: relative;
    width: 100%;
}

.slide {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: none;
}

.carousel {
    width: 100%;
    text-align: center;
    background: #000;
    position: relative;
    overflow: hidden;
    padding-bottom: 42px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.slide.active {
    display: block;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ff6a00;
}

/* FOOTER - Cleaned & Responsive */
.footer {
    background: #000;
    color: #aaa;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 30px;
    display: flex;
    justify-content: left;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6a00;
}

.footer-payments {
    display: flex;
    gap: 10px;
    /* Better spacing */
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #222;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .footer-brand {
        font-size: 22px;
        text-align: center;
    }
}


/* Badge Base */
.pay-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    background: #8b8080;
    border: 1px solid #222;
    padding: 8px 7px;
    border-radius: 8px;
    min-width: 80px;
    height: 40px;

    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Hover */
.pay-badge:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

/* VISA */
.visa-text {
    font-weight: bold;
    color: #000dff;
    letter-spacing: 6px;
}

/* Mastercard */
.mc-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.red {
    background: #eb001b;
}

.yellow {
    background: #f79e1b;
    margin-left: -8px;
}

/* Apple */
.apple-icon {
    width: 22px;
    height: 22px;
    color: white;
}

.apple-text {
    color: white;
    font-weight: 500;
}

/* Bitcoin */
.bitcoin-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.cartx-btn-white,
.cartx-btn-white:link,
.cartx-btn-white:visited,
.cartx-btn-white:hover,
.cartx-btn-white:active {
    color: white !important;
    text-decoration: none;
}

/* Unique checkout button group */
.order-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 20px 0;
}

.order-action-buttons button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-pay-btn {
    background: #28a745 !important;
    color: white !important;
}

.order-checkout-btn {
    background: #007bff;
    color: white;
}

.order-invoice-btn {
    background: #6f42c1;
    color: white;
}

.order-action-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.horizontal-gallery {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    /* Horizontal scroll on mobile */
    scroll-snap-type: x mandatory;
}

.horizontal-gallery img {
    flex: 0 0 280px;
    /* Fixed width for uniformity */
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.horizontal-gallery img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .horizontal-gallery {
        padding: 20px;
        gap: 15px;
    }

    .horizontal-gallery img {
        flex: 0 0 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .horizontal-gallery img {
        flex: 0 0 220px;
        height: 220px;
    }
}

/* Main container */
.featured-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Headline styling */
.featured-headline {
    font-size: 3.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.featured-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.item-info {
    padding: 15px;
    text-align: center;
}

.item-info h3 {
    font-size: 1.1em;
    margin: 0 0 8px 0;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.price {
    font-size: 1.3em;
    font-weight: 700;
    color: #007cba;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 220px;
    }

    .item-info h3 {
        font-size: 1em;
    }
}

.newsletter-compact {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 16px;
    text-align: center;
}

.newsletter-compact-container {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-compact-title {
    color: white;
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-compact-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.email-compact {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: all 0.3s ease;
}

.email-compact:focus {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.subscribe-compact {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-compact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
    .newsletter-compact-form {
        flex-direction: column;
    }

    .newsletter-compact {
        padding: 30px 15px;
        margin: 20px 0;
    }

    .newsletter-compact-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
}

.why-choose-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-size: 2.8em;
    font-weight: 800;
    color: #007cba;
    margin: 0 0 60px 0;
    letter-spacing: -0.02em;
    position: relative;
}

.why-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007cba, #005a87);
    margin: 20px auto 0;
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-top-color: #007cba;
}

.why-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.why-card-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #007cba;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.why-card-text {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .why-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-card {
        padding: 30px 25px;
    }
}

.female-needs-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
}

.female-needs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.female-needs-content {
    text-align: left;
}

.female-title {
    font-size: 2.8em;
    font-weight: 800;
    color: #333;
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.female-text {
    font-size: 1.2em;
    color: #555;
    line-height: 1.7;
    margin: 0 0 35px 0;
    max-width: 500px;
}

.female-btn {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.3);
}

.female-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 124, 186, 0.4);
}

.female-needs-image {
    text-align: right;
}

.female-needs-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.female-needs-image img:hover {
    transform: scale(1.02);
}

/* Mobile - Stack vertically */
@media (max-width: 768px) {
    .female-needs-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .female-needs-section {
        padding: 60px 20px;
    }

    .female-title {
        font-size: 2.2em;
    }

    .female-text {
        font-size: 1.1em;
        max-width: 100%;
    }

    .female-needs-image {
        text-align: center;
    }
}

/* ===== MOBILE MENU FIX - ADD THIS ===== */
@media (max-width: 768px) {
    .brand-nav {
        position: relative;
    }

    .nav-container {
        position: relative;
    }

    .nav-list {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px 0;
    }

    .nav-list.mobile-open {
        display: flex !important;
    }

    .hamburger {
        display: block !important;
        font-size: 28px;
        cursor: pointer;
        padding: 10px 15px;
        color: #333;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* ===== END MOBILE MENU FIX ===== */
/* Header mobile fix */
@media (max-width: 768px) {
    .header {
        padding: 12px 15px !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-left {
        flex: 1;
        min-width: 200px;
    }

    .header-right {
        flex-shrink: 0;
    }
}

/* ===== OVERLAP FIX - ADD THIS ===== */
@media (max-width: 768px) {

    /* Push content down when mobile menu opens */
    .brand-nav.mobile-menu-open {
        padding-bottom: 300px;
        /* Adjust based on your menu height */
    }

    /* Prevent header overlap */
    .header-right {
        position: relative;
        z-index: 1002;
    }

    .cart-icon,
    .cartx-btn-white {
        position: relative;
        z-index: 1002;
    }

    /* Fix search input overlap */
    #searchInput {
        position: relative;
        z-index: 1002;
        width: 100px;
        max-width: 120px;
    }
}

/* Smooth menu animation */
.nav-list {
    transition: all 0.3s ease;
}

/* ===== END OVERLAP FIX ===== */
@media (max-width: 768px) {
    .brand-nav {
        position: relative !important;
    }

    .nav-list.mobile-open {
        top: 110% !important;
        /* Push menu below header */
        margin-top: 10px;
    }
}

/* BEAUTIFUL MOBILE MENU - FINAL */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        font-size: 28px !important;
        color: white !important;
        cursor: pointer !important;
        padding: 15px !important;
        z-index: 1001 !important;
        /* RED BACKGROUND REMOVED */
        background: transparent !important;
        border: none !important;
    }

    #navList {
        display: none !important;
    }

    #navList.mobile-open {
        display: block !important;
        position: fixed !important;
        top: 100px !important;
        left: 0 !important;
        width: 100% !important;
        background: linear-gradient(180deg, #000 0%, #111 100%) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
        padding: 30px 20px !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
    }


    #navList li {
        list-style: none !important;
        margin: 0 !important;
    }

    #navList li a {
        display: block !important;
        padding: 20px !important;
        color: white !important;
        font-size: 20px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
    }

    #navList li a:hover {
        background: rgba(255, 215, 0, 0.2) !important;
        color: #ffd700 !important;
        transform: translateX(10px) !important;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    }

    /* Dropdown styling */
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.1) !important;
        margin-top: 10px !important;
        padding-left: 20px !important;
    }
}

body.menu-open {
    overflow: hidden !important;
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }


}

.hamburger {
    margin-top: -18px !important;
    /* Just add this line */
}

/* HEADER MOBILE FIX - NO OVERLAP */
@media (max-width: 768px) {
    header {
        padding: 12px 15px !important;
        flex-direction: column !important;
        /* Stack vertically */
        gap: 10px !important;
        align-items: flex-start !important;
    }

    .header-left {
        width: 100% !important;
        margin-bottom: 5px !important;
    }

    .header-right {
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-top: 5px !important;
    }

    .cartx-btn-white {
        font-size: 14px !important;
        padding: 8px 12px !important;
        white-space: nowrap !important;
    }

    #searchInput {
        flex: 1 !important;
        max-width: 150px !important;
        margin-left: 10px !important;
    }

    .company-info {
        margin-left: 10px !important;
    }
}