﻿.luxury-navbar {
    background: linear-gradient(135deg, #ffffff 0%, #fefaf0 50%, #fff9e6 100%);
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #D4AF37, #F4E4A6, #D4AF37) 1;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
    padding: 15px 0;
    position: relative;
    backdrop-filter: blur(10px);
}

    .luxury-navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4A6 50%, #D4AF37 80%, transparent 100%);
        animation: shimmer 3s ease-in-out infinite;
    }

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mobile-search-container {
    display: none;
    width: 100%;
    margin-top: 15px;
    padding: 0 10px;
}

.mobile-search-wrapper {
    width: 100%;
}

.mobile-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #f4e4a6;
    border-radius: 30px;
    background: #fffef9;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

    .mobile-search-input:focus {
        outline: none;
        border-color: #D4AF37;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        background: white;
    }

.mobile-search-button {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

    .mobile-search-button:hover {
        background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1001;
}

    .mobile-menu-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

    .mobile-menu-btn.active {
        background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    }

.menu-bar {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.categories-menu {
    position: relative;
}

.categories-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

    .categories-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .categories-btn:hover::before {
        left: 100%;
    }

    .categories-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .hamburger-icon span {
        width: 16px;
        height: 2px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
    }

.categories-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f4e4a6;
}

.categories-menu:hover .categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item {
    position: relative;
    border-bottom: 1px solid #f8f8f8;
}

    .category-item:last-child {
        border-bottom: none;
    }

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    .category-link:hover {
        background: linear-gradient(90deg, #fff9e6 0%, transparent 100%);
        color: #D4AF37;
        padding-right: 30px;
    }

.category-name {
    font-size: 14px;
}

.sub-arrow {
    font-size: 12px;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.category-item:hover .sub-arrow {
    transform: translateX(-3px);
}

.sub-categories {
    position: absolute;
    top: 0;
    right: 100%;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    border: 1px solid #f4e4a6;
}

.category-item:hover .sub-categories {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-category-link {
    display: block;
    padding: 10px 25px;
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
    font-size: 13px;
}

    .sub-category-link:hover {
        background: #fff9e6;
        color: #D4AF37;
        padding-right: 30px;
    }

.main-navigation {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, #fff9e6 0%, #f4e4a6 100%);
        color: #B8860B;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }

.icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.admin-highlight {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

    .admin-highlight:hover {
        background: linear-gradient(135deg, #00a085 0%, #00b894 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4) !important;
    }

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid #f4e4a6;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-title {
    font-weight: 600;
    color: #D4AF37;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f4e4a6;
    transition: all 0.3s ease;
}

    .column-title:hover {
        color: #B8860B;
        padding-right: 5px;
    }

.column-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

    .column-link:hover {
        color: #D4AF37;
        padding-right: 8px;
    }

.search-container {
    flex-shrink: 0;
}

.search-wrapper {
    width: 320px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #f4e4a6;
    border-radius: 30px;
    background: #fffef9;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

    .search-input:focus {
        outline: none;
        border-color: #D4AF37;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        background: white;
        transform: translateY(-1px);
    }

.search-button {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

    .search-button:hover {
        background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-title {
    font-size: 14px;
    color: #8B7355;
    font-weight: 600;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: currentColor;
        opacity: 0.1;
        border-radius: 50%;
    }

    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

    .social-tooltip::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #333;
    }

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.eitaa {
    color: #0084ff;
    background: rgba(0, 132, 255, 0.1);
}

.eitaa-img {
    width: 20px;
    height: 20px;
}

.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.phone {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

@media (max-width: 1200px) {
    .nav-wrapper {
        gap: 20px;
    }

    .nav-left {
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .search-wrapper {
        width: 280px;
    }

    .nav-dropdown {
        width: 500px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }

    .nav-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        padding: 20px;
        display: none;
        z-index: 999;
        border-top: 2px solid #f4e4a6;
    }

        .main-navigation.active {
            display: block;
        }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 15px;
        display: none;
    }

    .has-dropdown.active .nav-dropdown {
        display: block;
    }

    .search-container {
        display: none;
    }

    .mobile-search-container {
        display: block;
    }

    .social-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .luxury-navbar {
        padding: 12px 0;
    }

    .categories-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .categories-dropdown {
        width: 280px;
    }

    .sub-categories {
        width: 260px;
    }
}

@media (max-width: 576px) {
    .nav-left {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .social-wrapper {
        flex-direction: row;
        justify-content: center;
    }

    .categories-dropdown {
        width: 100%;
        right: 0;
        left: 0;
    }

    .sub-categories {
        width: 100%;
        right: 0;
        left: 0;
    }

    .mobile-search-container {
        margin-top: 10px;
    }
}
