:root {
    /* Primary Palette */
    --primary-blue: #0d6efd;
    --secondary-blue: #0a58ca;
    --accent-blue: #3d8bfd;
    --light-blue: #e3f2fd;
    --dark-blue: #052c65;
    
    /* Extended Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --gray-color: #6c757d;
    --accent-color: #8b5cf6;
    --success-color: #10b981;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    
    /* UI Effects */
    --card-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    --hover-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --primary-gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
	
	/*from old style.css*/
	--primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #4dabf7;
}

/* ========== BASE & RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 128px !important;
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.d-block { display: block; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }

/* ========== SALE BAR ========== */
.sale-bar {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 3px 15px rgba(255,107,53,0.3);
    height: auto;
    left: 0;
    min-height: 48px;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1045;
}

.sale-bar::before {
    animation: shimmer 3s infinite;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.sale-bar a {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    transition: all 0.3s;
}

.sale-bar a:hover {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: scale(1.1);
}

.sale-item,
.popular-item,
.cta-link {
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 12px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sale-item {
    background: rgba(255,255,255,0.1);
    color: white;
}

.sale-item:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(220,53,69,0.3);
    transform: translateY(-1px);
}

.popular-item {
    background: rgba(255,255,255,0.2);
    color: #343a40;
}

.popular-item:hover {
    background: rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(255,193,7,0.3);
    transform: translateY(-1px);
}

.cta-link {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
    color: white;
    font-weight: 600;
}

.cta-link:hover {
    box-shadow: 0 8px 20px rgba(13,110,253,0.4);
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.cta-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-link:hover .cta-arrow {
    transform: translateX(3px);
}

.sale-bar .badge {
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
}

.sale-bar .badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

.sale-bar .badge.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
}

.pulse-animation {
    animation: pulseScale 2s infinite;
}

/* ========== NAVBAR ========== */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    left: 0;
    padding: 12px 0;
    position: fixed !important;
    right: 0;
    top: 48px !important;
    transition: all 0.3s ease;
    z-index: 1040;
}

.navbar-brand {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    background-clip: text;
    display: flex;
    font-size: 2rem;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    max-height: 40px;
    width: auto;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    align-items: center;
    border: 1px solid #dee2e6;
    display: none;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    padding: 4px 8px;
    position: relative;
    width: 44px;
    z-index: 1050;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.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%285, 44, 101, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100%;
    display: block;
    height: 24px;
    width: 24px;
}

.navbar-collapse {
    flex-grow: 1;
}

.nav-link {
    align-items: center;
    border-radius: 25px;
    color: #052c65 !important;
    display: inline-flex;
    font-weight: 600 !important;
    margin: 0 12px;
    overflow: hidden;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	white-space: nowrap; /* Add this line */
}

.nav-link::before {
    background: linear-gradient(90deg, transparent, rgba(13,110,253,0.1), transparent);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s;
    width: 100%;
}

.nav-link:hover {
    background: rgba(13,110,253,0.1);
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link.active,
.nav-item.active > .nav-link {
    background: var(--primary-blue) !important;
    border-radius: 0.25rem;
    box-shadow: 0 4px 15px rgba(13,110,253,0.3);
    color: white !important;
}

.navbar-nav .nav-link[data-bs-toggle="modal"] {
    align-items: center;
    gap: 8px;
}

.bi-search,
.bi-translate {
    transition: transform 0.3s;
}

.nav-link:hover .bi-search,
.nav-link:hover .bi-translate {
    transform: scale(1.2);
}

/* Dropdown */
.dropdown-menu {
    animation: fadeIn 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    overflow: hidden;
}

.dropdown-item {
    border-left: 3px solid transparent;
    padding: 12px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, #e3f2fd 100%);
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
}

.nav-item.dropdown .nav-link .bi-chevron-down {
    font-size: 0.8em;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .nav-link .bi-chevron-down {
    transform: rotate(-180deg);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer-modern {
    background: linear-gradient(135deg, #0f1b2e 0%, #1c3a5f 100%);
    color: #ffffff;
    margin-top: 100px;
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-height: 50px;
    opacity: 0.9;
    width: auto;
}

.footer-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.footer-heading::after {
    background: linear-gradient(to right, #0d6efd, #198754);
    border-radius: 2px;
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    width: 40px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    align-items: center;
    color: rgba(255,255,255,0.8);
    display: flex;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: #ffffff;
    transform: translateY(-3px);
}

.location-card-modern {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    height: 100%;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.location-card-modern:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.location-header {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.location-header h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.location-address,
.location-phone {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding: 25px 0;
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.separator {
    color: rgba(255,255,255,0.3);
    margin: 0 12px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    align-items: center;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    bottom: 50px;
    box-shadow: 0 4px 15px rgba(13,110,253,0.3);
    color: white;
    cursor: pointer;
    display: none;
    font-size: 1.2rem;
    height: 50px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 30px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    width: 50px;
    z-index: 1000;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-blue);
    box-shadow: 0 6px 20px rgba(13,110,253,0.4);
    transform: translateY(-3px);
}

/* ========== COOKIE BANNER ========== */
.cookie-consent-banner {
    animation: slideUp 0.5s ease;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1c3a5f 100%);
    bottom: 0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    color: white;
    left: 0;
    padding: 15px 0;
    position: fixed;
    right: 0;
    z-index: 9999;
}

.cookie-consent-content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.cookie-consent-content p {
    flex: 1;
    font-size: 0.95rem;
    margin: 0;
    min-width: 200px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

/* ========== FLOATING CART ========== */
/*
.floating-cart {
    animation: floatIn 0.5s ease-out;
    position: fixed;
    right: 30px;
    top: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2035;
}

.floating-cart.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.8);
}

.cart-float-btn {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(13,110,253,0.3);
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
}

.cart-float-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 15px 35px rgba(13,110,253,0.4);
    transform: translateY(-5px) scale(1.1);
}

.cart-float-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.cart-float-btn i {
    color: white;
    font-size: 1.5rem;
}

.cart-float-badge {
    align-items: center;
    animation: pulseShadow 2s infinite;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: 3px solid white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    display: flex;
    font-size: 0.75rem;
    font-weight: bold;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    position: absolute;
    right: -5px;
    top: -5px;
}

.cart-float-badge.updated {
    animation: bounce 0.5s ease;
}

.cart-float-badge.empty {
    display: none;
}

.cart-float-tooltip {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--dark-blue);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    padding: 8px 12px;
    pointer-events: none;
    position: absolute;
    right: 70px;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart-float-tooltip::before {
    border: 8px solid transparent;
    border-left-color: white;
    content: '';
    left: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cart-float-btn:hover .cart-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}
*/

/* ========== ANIMATIONS ========== */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(30px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulseShadow {
    0% { box-shadow: 0 0 0 0 rgba(220,53,69,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220,53,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,53,69,0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes cartAdd {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-added {
    animation: cartAdd 0.5s ease;
}

/* ========== DESKTOP HOVER EFFECTS ========== */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1199.98px) {
    .container { max-width: 960px; }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 124px !important;
    }

    .navbar {
        background: white !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 8px 0 !important;
        top: 44px !important;
    }

    .navbar-brand {
        max-width: 70%;
    }

    .navbar-brand img {
        height: 35px;
        max-height: 35px;
    }

    .navbar-toggler {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-collapse {
        background: white;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        left: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 20px;
        position: fixed;
        right: 0;
        top: 80px;
        z-index: 1030;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 5px 0 !important;
        width: 100%;
    }

    .nav-link {
        border-radius: 8px !important;
        justify-content: flex-start;
        margin: 0 !important;
        padding: 12px 15px !important;
        width: 100%;
    }

    .dropdown-menu {
        background: #f8f9fa;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        float: none !important;
        margin: 5px 0 !important;
        position: static !important;
        width: 100% !important;
    }

    .dropdown-item {
        padding: 10px 15px;
    }

    .navbar-nav.ms-3 {
        border-top: 1px solid #eee;
        flex-direction: row !important;
        gap: 15px;
        justify-content: center;
        margin-left: 0 !important;
        margin-top: 15px;
        padding-top: 15px;
    }

    .footer-modern {
        margin-top: 60px;
        padding: 60px 0 0;
    }

    .footer-heading {
        margin-top: 2rem;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
        text-align: center !important;
    }

    .floating-cart {
        right: 15px;
        top: 90px;
    }

    .cart-float-btn {
        height: 56px;
        width: 56px;
    }

    .cart-float-tooltip {
        display: none;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 124px !important;
    }

    .sale-bar {
        height: 44px !important;
        max-height: 44px !important;
        min-height: 44px !important;
        padding: 0 !important;
    }

    .sale-bar .row {
        align-items: center;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0;
        height: 100%;
        margin: 0;
    }

    .sale-bar .col-md-4 {
        overflow: hidden;
        padding: 0 5px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sale-bar .col-md-4:first-child {
        flex: 0 0 60% !important;
        max-width: 60%;
    }

    .sale-bar .col-md-4:last-child {
        flex: 0 0 40% !important;
        max-width: 40%;
    }

    .sale-item,
    .cta-link {
        display: block;
        font-size: 0.75rem !important;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sale-bar .badge {
        font-size: 0.6rem !important;
        padding: 2px 5px !important;
    }

    .navbar {
        padding: 5px 0 !important;
        top: 44px !important;
    }

    .navbar-brand {
        font-size: 1.5rem;
        max-width: 60%;
    }

    .navbar-brand img {
        height: 30px;
        max-height: 30px;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .location-card-modern {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 124px !important;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .back-to-top {
        bottom: 20px;
        height: 45px;
        right: 20px;
        width: 45px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .sale-item i,
    .cta-link i {
        display: none;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .floating-cart,
    .navbar,
    .sale-bar,
    .back-to-top,
    .cookie-consent-banner {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }
}

/* ========== LOGIN ICON ========== */
.login-icon-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1041; /* Above navbar (1040), below sale bar (1045) */
}

.login-icon-link {
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    color: var(--dark-blue);
    display: flex;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.login-icon-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.login-icon-link i {
    font-size: 1.3rem;
    margin-right: 8px;
}

.login-text {
    font-size: 0.9rem;
}

/* ========== RESPONSIVE LOGIN ICON ========== */
@media (max-width: 991.98px) {
    .login-icon-container {
        top: 55px;
        right: 70px; /* Make room for mobile toggler */
    }
    
    .login-text {
        display: none; /* Hide text on mobile */
    }
    
    .login-icon-link {
        padding: 8px;
        border-radius: 50%;
    }
    
    .login-icon-link i {
        margin-right: 0;
    }
}

@media (max-width: 767.98px) {
    .login-icon-container {
        top: 50px;
        right: 60px;
    }
}

@media (max-width: 575.98px) {
    .login-icon-container {
        right: 50px;
    }
    
    .login-icon-link {
        padding: 6px;
    }
    
    .login-icon-link i {
        font-size: 1.1rem;
    }
}

/* ========== USER AUTHENTICATED STATE (Optional) ========== */
.login-icon-link.logged-in {
    background: var(--success-color);
    color: white;
}

.login-icon-link.logged-in:hover {
    background: #0da35e;
}




/* ========== NAVBAR CART ICON - Professional Integration ========== */
.navbar-cart-icon {
    position: fixed;
    top: 64px; /* Position below sale bar (48px) + navbar padding */
    right: 20px;
    z-index: 1042; /* Above navbar (1040), below sale bar (1045) and modal (1060) */
}

.nav-cart-link {
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    color: var(--dark-blue);
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 44px;
    box-shadow: var(--shadow);
}

.nav-cart-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--hover-shadow);
}

.nav-cart-link i {
    font-size: 1.3rem;
}

.cart-badge {
    align-items: center;
    animation: none;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: white;
    display: none;
    font-size: 0.7rem;
    font-weight: bold;
    height: 20px;
    justify-content: center;
    min-width: 20px;
    position: absolute;
    right: -8px;
    top: -8px;
    transition: all 0.3s ease;
}

.cart-badge.updated {
    animation: bounce 0.5s ease;
}

/* ========== RESPONSIVE NAVBAR CART ========== */
@media (max-width: 991.98px) {
    .navbar-cart-icon {
        top: 58px; /* Adjust for mobile navbar height */
        right: 80px; /* Position before mobile toggler */
    }
    
    .nav-cart-link {
        height: 40px;
        width: 40px;
    }
    
    .nav-cart-link i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-cart-icon {
        top: 52px;
        right: 70px;
    }
}

@media (max-width: 575.98px) {
    .navbar-cart-icon {
        right: 60px;
    }
    
    .nav-cart-link {
        height: 36px;
        width: 36px;
    }
}

/* ========== REMOVE FLOATING CART STYLES ========== */
/* Delete these previous floating cart styles:
.floating-cart, .cart-float-btn, .cart-float-badge, .cart-float-tooltip, 
@keyframes floatIn, .floating-cart.hidden, etc. */

/* ========== CLEANUP - REMOVE THESE OLD STYLES ========== */
.floating-cart,
.cart-float-btn,
.cart-float-badge,
.cart-float-tooltip,
@keyframes floatIn {
    /* All floating cart related styles removed */
}

/* ========== EXISTING ANIMATIONS (Keep) ========== */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulseShadow {
    0% { box-shadow: 0 0 0 0 rgba(220,53,69,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220,53,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,53,69,0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes cartAdd {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-added {
    animation: cartAdd 0.5s ease;
}