.white-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    padding-top: clamp(2px, calc(0.1076vw + 0.934px), 3px);
    padding-right: clamp(2px, calc(0.1076vw + 0.934px), 3px);
    padding-bottom: clamp(2px, calc(0.1076vw + 0.934px), 3px);
    padding-left: clamp(12px, calc(0.7535vw + 4.533px), 19px);
    font-size: clamp(14px, calc(0.43057vw + 9.733px), 18px);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    color: #353331;
    background: #fff;
    gap: 13px;
    font-family: 'Commissioner', sans-serif;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
    border: none;
}
.white-button:hover {
    background: #f5f5f5;
    color: #353331;
}
.white-button .btn-icon-wrap {
    margin-left: 13px;
    display: flex;
    align-items: center;
    gap: 0;
}
.white-button .btn-square {
    width: clamp(35px, calc(1.076vw + 24.338px), 45px);
    height: clamp(35px, calc(1.076vw + 24.338px), 45px);
    background: #353331;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.white-button .btn-square img {
    width: 12px;
    height: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
    .white-button {
        font-size: 18px;
        letter-spacing: -4%;
        padding-top: 3px;
        padding-right: 3px;
        padding-bottom: 3px;
        padding-left: 20px;
    }
    .white-button .btn-square {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }
}
@media (max-width: 575px) {
    .white-button {
        font-size: 16px;
        letter-spacing: -4%;
        padding-top: 3px;
        padding-right: 3px;
        padding-bottom: 3px;
        padding-left: 14px;
        justify-content: space-between;
        width: 100%;
    }
    .white-button .btn-square {
        width: 41px;
        height: 41px;
        min-width: 41px;
        min-height: 41px;
    }
    .white-button .btn-square img {
        width: 12px;
        height: 12px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        filter: brightness(0) invert(1);
    }
} 