/* Mobile Header V2 - Premium Aesthetics */
:root {
    --primary-gold: #c79900;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f8f8;
    --border-color: #eee;
    --text-main: #333;
}

/* Hide desktop elements on mobile */
@media (max-width: 991px) {
    .header-topbar, .header-wrap {
        display: none !important;
    }
}



.mobile-header-v2 {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff !important;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    padding: 0 10px;
    box-sizing: border-box;
}

.mobile-header-v2 .m-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.mobile-header-v2 .m-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    height: 100%;
}

/* Hide mobile elements on desktop - Moved here to win over !important definitions */
@media (min-width: 992px) {
    .mobile-header-v2, .mobile-drawer-v2, .mobile-drawer-overlay {
        display: none !important;
    }
}

.mobile-header-v2 .m-logo {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-v2 .m-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.mobile-header-v2 .m-icon-btn {
    font-size: 22px;
    color: var(--text-main);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.mobile-header-v2 .m-icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid #fff;
}

/* Drawer Styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-v2 {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-drawer-v2.active {
    left: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.drawer-close {
    font-size: 24px;
    color: #999;
    background: none;
    border: none;
}

.drawer-search {
    padding: 15px 20px;
}

.drawer-search .form-group {
    position: relative;
    margin: 0;
}

.drawer-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
}

.drawer-search .search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-gold);
}

.drawer-nav {
    flex-grow: 1;
    padding: 10px 0;
}

.drawer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav .nav-item {
    border-bottom: 1px solid #f9f9f9;
}

.drawer-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.drawer-nav .nav-link i.fa-chevron-right {
    font-size: 12px;
    transition: transform 0.3s;
}

.drawer-nav .nav-item.open > .nav-link i.fa-chevron-right {
    transform: rotate(90deg);
}

.drawer-submenu {
    background: #fdfdfd;
    display: none;
    padding-left: 15px;
}

.drawer-nav .nav-item.open > .drawer-submenu {
    display: block;
}

.drawer-submenu .nav-link {
    font-weight: 400;
    font-size: 14px;
}

.drawer-footer {
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.drawer-user {
    padding: 20px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-user .user-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    border: 1px solid var(--border-color);
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.drawer-user .user-info {
    font-size: 14px;
    line-height: 1.4;
}

.drawer-user .user-info a {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drawer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.drawer-contact-item {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    font-size: 13px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.drawer-contact-item:last-child {
    border-right: none;
}

.drawer-contact-item i {
    font-size: 20px;
    color: var(--primary-gold);
}

.drawer-contact-item.whatsapp i {
    color: #25D366;
}

.drawer-social-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    background: #fff;
}

.drawer-social-bar a {
    font-size: 22px;
    color: #555;
    transition: color 0.3s;
}

.drawer-reviews-container {
    padding: 15px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.trust-badge .badge-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.trust-badge .stars {
    color: #ffb400;
    font-size: 12px;
    letter-spacing: 1px;
}
