.amenities-container-14d6f8b9 {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.amenities-trigger-btn-14d6f8b9 {
    background: #c29b38;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenities-trigger-btn-14d6f8b9:hover {
    background: #ab842a;
}

/* Modal Styles */
.amenities-modal-14d6f8b9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

body.admin-bar .amenities-modal-14d6f8b9 {
    top: var(--wp-admin--admin-bar--height, 32px);
}

.amenities-modal-14d6f8b9.is-active {
    display: flex;
}

.modal-overlay-14d6f8b9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content-14d6f8b9 {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 1100px;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    overflow-y: auto;
    padding: 30px;
    animation: amenitiesFadeIn 0.3s ease forwards;
}

@keyframes amenitiesFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-14d6f8b9 {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close-14d6f8b9:hover {
    color: #c29b38;
}

.modal-title-14d6f8b9 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 15px;
}

/* Grid Layout */
.first-level1-14d6f8b9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    padding: 10px 5px;
}

.col-2-14d6f8b9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.col-2-14d6f8b9:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #c29b38;
}

.img-wrapper-14d6f8b9 {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper-14d6f8b9 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.col-2-14d6f8b9 span {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    body.admin-bar .amenities-modal-14d6f8b9 {
        top: 46px;
    }
}
