/* Store Menu Images Styles */
/* تصميم احترافي للشعار وQR Code في StoreMenuVC */

/* Container for both images */
.store-images-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-left: auto;
    flex-wrap: wrap;
}

/* Logo Styles */
.store-logo {
    display: inline-block;
    max-height: 80px;
    max-width: 150px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* QR Code Styles */
.store-qrcode {
    display: inline-block;
    max-height: 80px;
    max-width: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.store-qrcode:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Link wrapper styles */
.store-images-container .navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
    .store-images-container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
        margin-left: 0;
        width: 100%;
    }
    
    .store-logo {
        max-height: 60px;
        max-width: 120px;
    }
    
    .store-qrcode {
        max-height: 60px;
        max-width: 60px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .store-images-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .store-logo {
        max-height: 50px;
        max-width: 100px;
    }
    
    .store-qrcode {
        max-height: 50px;
        max-width: 50px;
    }
}

/* Ensure images maintain aspect ratio */
.store-logo img,
.store-qrcode img {
    max-width: 100%;
    height: auto;
    display: block;
}

