/* ============================================
   WR Plus — Multi Inline Buttons Widget
   ============================================ */

.wr-multi-inline-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 12px;
    width: 100%;
}

.wr-inline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.3s ease;
}

/* --- Style: Solid --- */
.wr-btn-solid {
    background-color: #ffffff;
    color: #0a0a0a;
}

/* --- Style: Outline --- */
.wr-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* --- Style: Gradient --- */
.wr-btn-gradient {
    color: #ffffff;
    border: none;
}

/* --- Style: Ghost --- */
.wr-btn-ghost {
    background-color: rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* --- Style: Custom --- */
.wr-btn-custom {
    background-color: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

/* --- Icon --- */
.wr-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wr-btn-icon svg,
.wr-btn-icon i {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* --- Hover Transform Effects --- */
.wr-hover-translate_y:hover {
    transform: translateY(-3px);
}

.wr-hover-scale:hover {
    transform: scale(1.05);
}

.wr-hover-translate_x:hover {
    transform: translateX(4px);
}

/* --- Hover Shadow (conditional) --- */
.wr-hover-shadow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}