.advertisement-banner-one {
    margin-top: 30px;
    text-align: center;
    overflow: hidden;
}

.advertisement-banner-one img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: bannerZoom 1s ease-in-out infinite;
}

.advertisement-banner-one:hover img {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    /* Make header stack vertically */
    #site-branding .wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Logo full width and centered */
    .custom-logo-link {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Reduce logo size for mobile */
    .custom-logo {
        max-width: 150px;
        height: auto;
    }

    /* Move search + cart below logo */
    .header-right {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}
