/* Simple Circular Logo Styles for MrsDeen Shopping Hub */
.navbar-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.login-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.loading-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    animation: logoSpin 2s ease-in-out infinite;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.receipt-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Logo container for better positioning */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-with-badge {
    position: relative;
    display: inline-block;
}

.logo-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
}

/* Enhanced navbar brand styling */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Mobile responsive logos */
@media (max-width: 768px) {
    .navbar-logo {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .login-logo {
        width: 90px;
        height: 90px;
    }
    
    .loading-logo {
        width: 100px;
        height: 100px;
    }
    
    .receipt-logo {
        width: 60px;
        height: 60px;
    }
    
    .navbar-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .login-logo {
        width: 80px;
        height: 80px;
    }
    
    .loading-logo {
        width: 90px;
        height: 90px;
    }
    
    .receipt-logo {
        width: 50px;
        height: 50px;
    }
    
    .navbar-title {
        font-size: 1.1rem;
    }
}

/* Print styles for receipt */
@media print {
    .receipt-logo {
        filter: grayscale(100%);
    }
}