/* Logo with text */
.logo-with-text {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
}

.site-logo {
    height: 42px; /* Adjust height as needed */
    width: auto;
    display: block;
}

.logo-text {
    color: #fff;      /* White like your header */
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .site-logo {
        height: 36px;
    }
    .logo-text {
        font-size: 1rem;
    }
}
/* Cart count badge */
.cart-btn {
    position: relative;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* -------- Top Bar -------- */
.top-bar {
    background-color: #000;
    color: #fff;
    height: 28px;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: #fff;
    font-size: 0.85rem;
}

/* -------- Main Navigation -------- */
.main-nav {
    background-color: rgba(0,0,0,0.85);
    position: fixed;
    top: 28px;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.logo-main {
    color: #fff;
}

.logo-sub {
    color: #ff0000; /* Change to your brand color */
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #1da1f2; /* hover color */
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

/* -------- Mobile Navigation -------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    width: 26px;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        transform: translateY(-100%);
        transition: 0.3s;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-icons {
        gap: 8px;
    }
}
.site-logo {
    height: 60px;              /* Adjust if needed */
    width: auto;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .site-logo {
        height: 36px;
    }
}
