.alfaparf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease;
}

.alfaparf-header:hover {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.alfaparf-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: background 0.3s ease;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 35px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo a:hover img {
    opacity: 0.8;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu Position Options */
.menu-left .desktop-nav {
    justify-content: flex-start;
}

.menu-right .desktop-nav {
    justify-content: flex-end;
}

.menu-center .desktop-nav {
    justify-content: end;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover {
    color: #F38375;
    opacity: 1 !important;
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-link {
    transform: translateY(-2px);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.icon-link svg {
    display: block;
}

.icon-link:hover {
    color: #F38375;
    transform: translateY(-2px);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #b8956a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ✅ Mobile Nav — Permanently Removed */
.mobile-nav {
    display: none !important;
}

/* =============================================
   MEDIA QUERY: 900px – 1101px
   Padding kam, font size thoda chota
   ============================================= */
@media (min-width: 900px) and (max-width: 1101px) {
    .header-container {
        padding: 1.2rem 30px;
        gap: 14px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 12px;
        letter-spacing: 0.6px;
    }
}

/* =============================================
   MEDIA QUERY: 768px – 900px
   Padding aur kam, font aur chota
   ============================================= */
@media (min-width: 768px) and (max-width: 900px) {
    .header-container {
        padding: 1rem 18px;
        gap: 10px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 11px;
        letter-spacing: 0.4px;
    }
}

/* =============================================
   MEDIA QUERY: max 768px (Mobile)
   ============================================= */
@media (max-width: 768px) {
    .header-container {
		gap:5px;
        padding: 18px 30px;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .header-logo img {
        height: 30px;
    }
}