/* Custom Header Tweaks – only mobile-specific overrides */
@media (max-width: 768px) {
    .washop-header {
        padding: 10px 15px; /* Smaller header on mobile only */
    }

    .washop-header h1 {
        font-size: 24px;
    }

    .subheading {
        font-size: 14px;
        margin-top: 5px;
    }
}

/* Customized Mobile Category Button Style */
.mobile-cat-btn {
    background: white;
    color: #00c26d;
    border: 2px solid #00c26d;
    padding: 14px;
    border-radius: 50%;
    font-size: 14px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    flex-shrink: 0;
}

/* Hide WhatsApp Button on Mobile via body class */
#whatsappBtn {
    display: none;
}

/* No result or product found message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #ff4444;
    font-size: 18px;
    font-weight: bold;
    padding: 40px 0;
}

/* Auto Scroll Cat Animation */
.cat-scroll {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Toast Message */
.washop-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c26d; /* Use red (#ff4444) for error */
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    display: none;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 80%;
    text-align: center;
    white-space: nowrap;
}


/* App Prompt Android */
    #android-install-banner {
        position: fixed;
        top: 20px;
        right: -320px;
        background: #000;
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px 0 0 8px;
        font-size: 15px;
        font-family: sans-serif;
        z-index: 9999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        gap: 14px;
        transition: right 0.4s ease-in-out;
    }

    #android-install-banner.show {
        right: 0;
    }

    #android-install-banner button {
        background: #00c26d;
        border: none;
        color: #fff;
        padding: 8px 14px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
    }

    #android-install-banner .close {
        font-size: 18px;
        font-weight: bold;
        margin-left: 10px;
        cursor: pointer;
        color: #aaa;
    }
    