/**
 * Elementor Amenities Widget Styling
 */

.amenities-container {
    padding: 20px 0;
    max-width: 100%;
}

.amenities-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #222222;
    font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    margin-bottom: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-item {
    display: flex;
    align-items: center;
    font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    color: #222222;
    font-size: 16px;
    line-height: 24px;
}

.amenity-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #222222;
    flex-shrink: 0;
}

.amenity-icon svg, 
.amenity-icon i {
    width: 100%;
    height: auto;
}

.amenity-text {
    flex-grow: 1;
}

/* Not Included Styling */
.amenity-item.not-included {
    opacity: 0.5;
}

.amenity-item.not-included .amenity-text {
    text-decoration: line-through;
}

/* Hidden Items & Show All Button */
.amenity-item.hidden-amenity {
    display: none;
}

.show-all-button-wrapper {
    margin-top: 10px;
}

.show-all-amenities-btn {
    display: inline-block;
    padding: 13px 23px;
    border: 1px solid #222222;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.show-all-amenities-btn:hover {
    background-color: #f7f7f7;
}

.show-all-amenities-btn:active {
    transform: scale(0.96);
}
