/* d:\wamp64\www\dev\wp-content\plugins\reservation-button\assets\css\style.css */
.res-button-container {
    position: relative;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.res-button-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
    transition: all 0.2s ease-in-out;
}

.res-button-trigger:hover, .res-button-trigger:focus {
    filter: brightness(0.9);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.25), 0 4px 6px -2px rgba(37, 99, 235, 0.15);
}

.res-button-trigger[aria-expanded="true"] {
    filter: brightness(0.8);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.res-button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease-in-out;
}

.res-button-trigger[aria-expanded="true"] .res-button-icon {
    transform: rotate(180deg);
}

.res-button-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    overflow: hidden;
}

.res-button-dropdown[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.res-button-options {
    display: flex;
    flex-direction: column;
}

.res-button-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.15s ease-in-out;
}

.res-button-option:hover, .res-button-option:focus {
    background-color: #f3f4f6;
    color: #111827;
}

.res-button-option:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.res-option-whatsapp:hover svg {
    color: #25D366;
}

.res-option-email:hover svg {
    color: #EA4335;
}

.res-button-option svg {
    transition: color 0.15s ease-in-out;
}
