    /* ── Product card buttons layout: side by side ── */
li.product {
    display: flex;
	max-height: 540px !important;
    flex-direction: column;
}

li.product .add_to_cart_button,
li.product .snz-loop-buy-now {
    flex: 1 1 0;
    box-sizing: border-box;
    text-align: center;
    margin: 0 !important;
}

/* Flex row wrapper — uses adjacent sibling to detect both buttons exist */
li.product .add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 0 0 14px;
}

li.product .snz-loop-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 0 14px 14px 0;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    color: #425931 !important;
    border: 2px solid #425931;
    border-left: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
li.product .snz-loop-buy-now:hover {
    background: #425931;
    color: #ffffff;
}
li.product .snz-loop-buy-now:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Wrapper that makes them sit in one row */
li.product .add_to_cart_button + .snz-loop-buy-now {
    /* they are adjacent siblings — use JS to wrap them, see below */
	color:#4a5a3b !important;
}

/* Applied by JS wrapper div */
li.product .snz-btn-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    margin-top: 4px;
	padding:10px;
	gap : 10px;
}
		@media(max-width:600px){
			li.product .snz-btn-row {
				flex-direction: column;
			}
			li.product .snz-btn-row .add_to_cart_button , li.product .snz-btn-row .snz-loop-buy-now{
				width: 100% !important;
			}
		}
li.product .snz-btn-row .add_to_cart_button {
    flex: 1 1 0;
    min-width: 0;
    margin: 0 !important;
    padding: 10px 8px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    font-size: 13px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
min-height: 36px;
}
li.product .snz-btn-row .snz-loop-buy-now {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 8px;
    border-radius: 14px !important;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    color: #425931;
    border: 2px solid #425931;
    border-left: none !important;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

/* ── Loop card buttons (was a second inline block in the same footer hook) ── */
    /* ── Loop card: side-by-side buttons ── */
    .snz-loop-actions {
        display: flex;
        gap: 6px;
        align-items: stretch;
        width: 100%;
        margin-top: 6px;
    }
    .snz-loop-actions .button:first-child {
        flex: 1 1 0;
    }
    div.snz-btn-row button.snz-loop-buy-now {
        flex: 0 0 auto;
        padding: 8px 14px !important;
        border-radius: 14px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        background: #ffffff !important;
        color: #425931 !important;
        border: 2px solid #425931 !important;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.15s ease, color 0.15s ease;
        font-family: inherit;
        line-height: 1.4;
    }
    div.snz-btn-row button.snz-loop-buy-now {
        background: #425931 !important;
        color: #ffffff !important;
    }
    div.snz-btn-row button.snz-loop-buy-now {
        opacity: 0.65;
        cursor: not-allowed;
    }
