/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 08 2026 | 13:43:34 */
/* Force 2 columns on desktop for EN/ES pairing */
@media (min-width: 922px) {
    ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Aligns buttons at the bottom */
        padding: 15px;
        border: 1px solid #eee;
    }
}

.lang-badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
}
.badge-en { background: #eee; color: #444; }
.badge-es { background: #a46497; color: #fff; }

/* Mobile view: stack them one by one */
@media (max-width: 921px) {
    ul.products { grid-template-columns: 1fr !important; }
}