/* Shared arrow button styles
 * Used by: hero-slider-arrow, popular-cities-arrow, standalone-slider-arrow
 * 
 * These styles are applied to elements matching the pattern:
 * [class*="-arrow"] [class*="-arrow-bg"] for background
 * [class*="-arrow"] svg for icon
 */

/* Rounded button background for arrows using PNG */
[class*="-arrow"] [class*="-arrow-bg"] {
    position: absolute;
    inset: 0;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-image: url('/resources/images/home_new/arrow-default.png');
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: background-image 0.3s ease;
    z-index: 1;
}

[class*="-arrow"]:hover [class*="-arrow-bg"] {
    background-image: url('/resources/images/home_new/arrow-hover.png');
}

[class*="-arrow"]:active [class*="-arrow-bg"] {
    background-image: url('/resources/images/home_new/arrow-press.png');
}

/* Arrow icon on top of background */
[class*="-arrow"] svg {
    position: relative;
    z-index: 2;
    width: 19px;
    height: 14px;
    display: block;
    pointer-events: none;
}
