/* ===== PHASE 1: MODERN MENU DESIGN ===== */
:root {
    --primary: #025D6F;
    --primary-dark: #003438;
    --primary-light: #32494C;
    --accent: #F5A400;
    --accent-dark: #725E41;
    --neutral: #C4C4C4;
    --white: #FFFFFF;
    --text-dark: #003438;
}

#container-fluid {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}
/* ===== COMPLETE MENU REDESIGN ===== */
:root {
    --primary: #025D6F;
    --primary-dark: #003438;
    --primary-light: #32494C;
    --accent: #F5A400;
    --accent-dark: #725E41;
    --neutral: #C4C4C4;
    --white: #FFFFFF;
    --text-dark: #003438;
}

/* ===== MAIN NAVIGATION MENU ===== */
/* Main Menu Container */
#menu {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    padding: 0px;
    margin: 0px;
    border: none !important;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFF;
    margin-top: 10px;
}

/* Menu Navigation */
#menu .navbar-nav {
    width: 100% !important;
    justify-content: center !important;
}

/* Menu Items */
#menu .nav-link {
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 18px 25px !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease !important;
    border: none !important;
    margin: 0 !important;
}

/* Menu Item Hover Effects */
#menu .nav-link:hover {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    transform: translateY(-2px);
}

/* Active Menu Item */
#menu .nav-link.active {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
}

/* Menu Item Border Animation */
#menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#menu .nav-link:hover::after,
#menu .nav-link.active::after {
    width: 80%;
}

/* ===== DROPDOWN MENUS ===== */
#menu .dropdown-menu {
    background: var(--white) !important;
    border: none !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    margin-top: 0 !important;
    padding: 0 !important;
    min-width: 220px !important;
}

/* Dropdown Items */
#menu .dropdown-item {
    color: var(--text-dark) !important;
    padding: 15px 20px !important;
    font-weight: 500;
    border-bottom: 1px solid var(--neutral) !important;
    transition: all 0.3s ease !important;
    font-size: 14px;
}

#menu .dropdown-item:hover,
#menu .dropdown-item:focus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: var(--white) !important;
}

#menu .dropdown-item:last-child {
    border-bottom: none !important;
}

/* Dropdown Headers */
#menu .dropdown-header {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px 10px !important;
    background: var(--neutral) !important;
}

/* ===== MEGA MENU SUPPORT ===== */
#menu .dropdown-mega {
    background: var(--white) !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

#menu .mega-menu-column {
    border-right: 1px solid var(--neutral) !important;
}

#menu .mega-menu-column:last-child {
    border-right: none !important;
}

/* ===== MOBILE MENU ===== */
/* Mobile Menu Toggle */
#menu .navbar-toggler {
    background: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    border-radius: 5px !important;
    padding: 8px 12px !important;
    margin: 10px 0 !important;
}

#menu .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 52, 56, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile Menu Items */
#menu .navbar-collapse {
    background: var(--white) !important;
    /*border-top: 3px solid var(--accent) !important;*/
}

#menu .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
    border-bottom: 2px solid #F5A009 !important;
    padding: 15px 20px !important;
}

#menu .navbar-collapse .nav-link:hover,
#menu .navbar-collapse .nav-link.active {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* Mobile Dropdowns */
#menu .navbar-collapse .dropdown-menu {
    background: var(--neutral) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

#menu .navbar-collapse .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-left: 40px !important;
}

/* ===== MENU RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    #menu .nav-link {
        padding: 15px 20px !important;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    #menu .nav-link {
        padding: 12px 15px !important;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    #menu {
        background: var(--primary) !important;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 0px;
        padding-bottom: 0px;
        border-radius: 5px;
        color: #FFF;
    }
    
    #menu .navbar-nav {
        text-align: left !important;
    }
    
    #menu .nav-link {
        padding: 15px 20px !important;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    #menu .nav-link::after {
        display: none !important;
    }
}

/* ===== MENU ANIMATIONS ===== */
@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu .dropdown-menu {
    animation: menuSlideIn 0.3s ease !important;
}

/* ===== MENU ICONS SUPPORT ===== */
#menu .nav-link i {
    margin-right: 8px !important;
    font-size: 16px;
}

#menu .dropdown-item i {
    margin-right: 10px !important;
    width: 20px;
    text-align: center;
}

/* ===== CURRENT MENU INDICATOR ===== */
#menu .nav-link.current {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 4px 15px rgba(245, 164, 0, 0.3) !important;
}

/* Top Navigation Container */
#top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-dark) 100%);
    padding: 8px 0;
    border-bottom: 3px solid var(--accent);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left Side Styles */
.nav-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

/* Contact Number */
.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(245, 164, 0, 0.15);
    border: 1px solid rgba(245, 164, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.top-contact:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.top-contact i {
    color: var(--accent);
    font-size: 12px;
}

/* Currency */
.top-currency .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px 12px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.top-currency .dropdown-toggle:hover {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

/* Center - Logo */
.nav-top-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.top-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    /*filter: brightness(0) invert(1);*/
}

.top-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--accent));
}

.top-logo-text {
    margin: 0;
}

.top-logo-text a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.top-logo-text a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(245, 164, 0, 0.5);
}

/* Right Side Styles */
.nav-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

/* Search Box */
.top-search {
    margin-right: 10px;
}

.top-search .input-group {
    width: 280px;
}

.top-search .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 20px 0 0 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 15px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.top-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.top-search .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: none;
}

.top-search .input-group-text {
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 0 20px 20px 0;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-search .input-group-text:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Language */
.top-language .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 6px 12px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.top-language .dropdown-toggle:hover {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

/* Account Dropdown */
.top-account {
    position: relative;
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(2, 93, 111, 0.2);
    border: 1px solid rgba(2, 93, 111, 0.4);
    border-radius: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.account-toggle:hover {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.account-toggle .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.account-dropdown {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 200px;
    margin-top: 8px;
}

.account-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--neutral);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.account-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding-left: 20px;
}

.account-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.account-dropdown .dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Wishlist */
.top-wishlist a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 13px;
}

.top-wishlist a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.wishlist-count {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-dark);
}

/* Shopping Cart */
.top-cart a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(245, 164, 0, 0.15);
    border: 1px solid rgba(245, 164, 0, 0.4);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 13px;
}

.top-cart a:hover {
    background: var(--accent);
    color: var(--text-dark);
    animation: pulseGlow 2s infinite;
}

.cart-count {
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-dark);
}

/* Checkout */
.top-checkout a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.top-checkout a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Pulse Animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 164, 0, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(245, 164, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 164, 0, 0); }
}

/* Dropdown Arrow Animation */
.account-toggle:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .top-search .input-group {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .nav-top-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-top-left,
    .nav-top-right {
        flex: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-top-center {
        order: -1;
        margin-bottom: 10px;
    }
    
    .top-search {
        margin-right: 0;
    }
    
    .top-search .input-group {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .nav-top-left,
    .nav-top-right {
        gap: 8px;
    }
    
    .top-contact,
    .account-toggle,
    .top-wishlist a,
    .top-cart a,
    .top-checkout a,
    .top-currency .dropdown-toggle,
    .top-language .dropdown-toggle {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .account-text,
    .wishlist-text,
    .cart-text,
    .checkout-text {
        display: none;
    }
    
    .top-search .input-group {
        width: 200px;
    }
    
    .top-logo {
        max-height: 35px;
    }
    
    .top-logo-text a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .top-search .input-group {
        width: 180px;
    }
    
    .nav-top-left,
    .nav-top-right {
        gap: 5px;
    }
}
.carousel {
    border: none;
    border-radius: none;
    box-shadow: none;
    margin-bottom: 70px;
    margin-top: 10px;
}
.carousel-inner {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}
.info-card {
  background: #FFF;
}
.refine-search {
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    margin-right: 0px;
    margin-left: 0px;
}
@media (max-width: 576px) {
    .refine-search {
        background-color: #FFFFFF;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: none;
        margin-right: 0px;
        margin-left: 0px;
    }
}
