    /* ── Single product: side-by-side buttons ── */
    .snz-cart-actions-wrap {
        display: flex;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }
		@media(max-width: 600px){
			.snz-cart-actions-wrap{
				flex-direction:column;
				padding:0px 20px;
			}
		}
    .snz-cart-actions-wrap .single_add_to_cart_button {
        flex: 1 1 0;
        margin: 0 !important;
		padding: 25px !important;
		height :fit-content !important;
    }
    .snz-buy-now-single {
        flex: 1 1 0;
        padding: 14px 18px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        background: #ffffff !important;
        color: #425931;
        border: 2px solid #425931;
        cursor: pointer;
        text-align: center;
        font-family: inherit;
        transition: background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }
    .snz-buy-now-single:hover {
        background: #425931 !important;
        color: #ffffff;
    }
    .snz-buy-now-single:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }
