.nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 12px 20px;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Categories Section */
.nav-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.category-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.category-link:hover {
    color: #2d3748;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* color: white; */
    /* transform: translateY(-1px); */
    /* box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); */
}

/* Right Section */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Wishlist Styling */
.wishlist-container {
    position: relative;
}

.wishlist-link {
    text-decoration: none;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(238, 90, 82, 0.3);
}

.wishlist-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(238, 90, 82, 0.4);
    color: white;
}

.wishlist-icon {
    position: relative;
    font-size: 18px;
}

.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f5f6f9;
    color: #ee5a52;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Currency Dropdown */
.currency-dropdown {
    position: relative;
}

.currency-trigger {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: #f7fafc;
}

.currency-trigger:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

.currency-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f5f6f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 160px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 4px;
}

.currency-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.currency-dropdown-menu a:hover {
    background: #f7fafc;
    color: #2d3748;
    border-left-color: #667eea;
}

.currency-dropdown-menu a.active {
    background: #e6fffa;
    color: #00b894;
    border-left-color: #00b894;
    font-weight: 600;
}

/* Login/Register & User Section */
.auth-section {
    position: relative;
}

.login-register-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #f5f6f9;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.login-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
    color: white;
}

.login-register-btn i {
    font-size: 16px;
}

/* User Dropdown */
.user-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.user-dropdown-trigger:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f5f6f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 4px;
}

.user-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.user-dropdown-menu a:hover {
    background: #f7fafc;
    color: #2d3748;
    border-left-color: #667eea;
}

.user-dropdown-menu a:last-child {
    color: #e53e3e;
}

.user-dropdown-menu a:last-child:hover {
    background: #fed7d7;
    border-left-color: #e53e3e;
}

/* Icons */
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 8px 15px;
    }
    
    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-categories {
        order: 2;
        justify-content: center;
    }
    
    .nav-actions {
        order: 1;
        width: 100%;
        justify-content: space-between;
    }
    
    .category-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .wishlist-link,
    .login-register-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .nav-categories {
        gap: 4px;
    }
    
    .category-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .nav-actions {
        gap: 10px;
    }
}

/* Animation for dropdowns */
.currency-dropdown-menu,
.user-dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.currency-dropdown:hover .currency-dropdown-menu,
.user-dropdown:hover .user-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}




.hisense_hero-section {
    overflow: hidden;
    margin-top: 20px;
    padding: 20px;
}

/* Hero Main Banner */
.hisense_hero-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Small Side Banner */
.hero-small-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Categories */
.hisense_section-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.hisense_category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 18px;
    transition: all 0.3s ease;
    height: 100%;
}
.hisense_category-card span {
    color: black;
    font-weight: bold;
    font-size: 17px 
}

.hisense_category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.category-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 20px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hisense_hero-main-img {
        height: 400px;
    }
    .hero-small-img {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .hisense_hero-section {
        padding: 10px;
    }
    .hisense_hero-main-img {
        height: 300px;
    }
}


.shipping-card {
  /* background: #f5f6f9; */
  /* border: 1px solid #ddd; */
  /* border-radius: 30px; */
  padding: 25px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.shipping-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.shipping-title {
  display: block;
  text-align: start;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.shipping-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shipping-start {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #444;
}

.shipping-start i {
  font-size: 20px;
  color: brown !important;
}

.shipping-end p {
  margin: 0;
  font-size: 16px;
  color: #777;
}


.mgi {
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;        
    background: rgba(238, 90, 82, 0.3);
    color: #f5f6f9;
    padding: 14px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.mgi a {
    color: #f5f6f9 !important;
}
.whatsapp-btn a {
    color: #f5f6f9 !important;
}

.whatsapp-btn:hover {
    background: rgba(0,0,0,0.12);
}
