/* Custom Logo Styles for Kim's Apparel */
.header__logo a,
.offcanvas__logo a,
.footer__logo a {
    font-family: 'Cookie', cursive !important;
    color: #111 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.3s ease;
}

.header__logo a {
    font-size: 28px !important;
}

.offcanvas__logo a,
.footer__logo a {
    font-size: 24px !important;
}

.header__logo a:hover,
.offcanvas__logo a:hover,
.footer__logo a:hover {
    color: #ca1515 !important;
    text-decoration: none !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .header__logo a {
        font-size: 24px !important;
    }
    
    .offcanvas__logo a,
    .footer__logo a {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .header__logo a {
        font-size: 20px !important;
    }
    
    .offcanvas__logo a,
    .footer__logo a {
        font-size: 18px !important;
    }
}