/* ==========================================================================
   Block-based page editor — Frontend styles
   Add to your main CSS or include as separate file
   ========================================================================== */

/* Image + Text */
.block-image-text {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 30px 0;
}
.block-image-text__image {
    flex: 0 0 40%;
}
.block-image-text__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.block-image-text__body {
    flex: 1;
}
@media (max-width: 768px) {
    .block-image-text {
        flex-direction: column;
    }
    .block-image-text--right {
        flex-direction: column-reverse;
    }
    .block-image-text__image {
        flex: none;
        width: 100%;
    }
}

/* Big Image */
.block-big-image {
    position: relative;
    margin: 30px 0;
}
.block-big-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.block-big-image__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    font-size: 1.5em;
    border-radius: 4px;
}

/* Box Options */
.block-box-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}
.box-option {
    flex: 1;
    min-width: 150px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.box-option:hover {
    border-color: #7cc35b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.box-option__image {
    width: 100%;
    overflow: hidden;
}
.box-option__image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.box-option__label {
    display: block;
    padding: 12px 15px;
    font-weight: 600;
}

/* CTA */
.block-cta {
    text-align: center;
    padding: 30px 20px;
    background: #f4fbf0;
    border: 1px solid #d4edcc;
    border-radius: 8px;
    margin: 30px 0;
}
.block-cta__text {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #333;
}
.block-cta__button {
    display: inline-block;
    padding: 12px 40px;
    background: #00AD50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}
.block-cta__button:hover {
    background: #009945;
    color: #fff;
    text-decoration: none;
}

/* CTA with Text */
.block-cta-text {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 25px;
    background: #f4fbf0;
    border: 1px solid #d4edcc;
    border-radius: 8px;
    margin: 30px 0;
}
.block-cta-text__body {
    flex: 1;
}
.block-cta-text__action {
    flex: 0 0 auto;
}
.block-cta-text__action .btn {
    padding: 12px 30px;
    background: #00AD50;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.block-cta-text__action .btn:hover {
    background: #009945;
    color: #fff;
}
@media (max-width: 768px) {
    .block-cta-text {
        flex-direction: column;
        text-align: center;
    }
}

/* Location Search */
.block-location-search {
    padding: 25px;
    background: #fafafa;
    border-radius: 8px;
    margin: 30px 0;
}
.block-location-search__input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* FAQ accordion */
.block-faq {
    margin: 30px 0;
}
.block-faq button {
    color: #000;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.block-faq .card-header {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #fff;
}
.block-faq .card-body {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    line-height: 1.6;
}
.block-faq .card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.block-faq button:before {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome';
    content: "\f077";
    float: right;
    font-weight: 900;
    transition: all 0.5s;
}
.block-faq button.collapsed:before {
    transform: rotate(180deg);
}

/* Text block */
.block-text {
    margin: 20px 0;
    line-height: 1.7;
}





 	
.block-location span.category_over{
 display:block;
 background:rgba(0, 0, 0, 0.4);;
 color:#fff;
 width: 70%;
 text-align: center;
 padding: 1rem;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);
 font-weight:bold;
	}
 