/* ============================================
   Merch.v3 Product Short List Block Button Styles
   ============================================ */

/* Ensure mobile header arrows are clickable (z-index, pointer-events) */
.product-short-list-block__header .product-short-list-block__arrow {
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

/* Button container and text styles */
.product-short-list-block__button {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 20px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
    pointer-events: auto;
    transition: 0.3s;
    text-decoration: none;
    text-transform: capitalize;
    font: 0.875rem / 1.125rem var(--wp--preset--font-family--outfit);
    font-weight: 700;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    height: auto;
}

/* Specific styles for bottom button */
.product-short-list-block__button--bottom {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    border-radius: 20px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
    pointer-events: auto;
    transition: 0.3s;
    text-transform: capitalize;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;

    height: 40px;
    box-sizing: border-box;
}

