.mazarat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.mazarat-display {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    min-height: 400px;
}

.image-section {
    flex: 1;
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.location-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #d4a853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 3;
}

.nav-arrow:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.content-section {
    flex: 1;
    padding: 20px 0;
}

.location-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #d4a853;
    padding-bottom: 10px;
}

.location-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.spiritual-significance {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4a853;
}

.spiritual-significance h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.spiritual-significance p {
    color: #666;
    line-height: 1.5;
}

.mazarat-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    margin-top: 30px;
}

.mazarat-tab {
    padding: 15px 30px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
}

.mazarat-tab:hover {
    border-color: #d4a853;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2);
}

.mazarat-tab.active {
    background: #d4a853;
    color: white;
    border-color: #d4a853;
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4a853;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .mazarat-display {
        flex-direction: column;
    }
    
    .mazarat-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .mazarat-tab {
        padding: 10px;
        font-size: 14px;
    }
}

/* ICON HEADING WIDGET */

/* Main wrapper styles */
.icon-heading-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Position variations */
.icon-position-left .icon-heading-wrapper {
    flex-direction: row;
}

.icon-position-right .icon-heading-wrapper {
    flex-direction: row-reverse;
}

.icon-position-top .icon-heading-wrapper {
    flex-direction: column;
    justify-content: center;
}

.icon-position-bottom .icon-heading-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
}

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

/* Ensure icons stay visible */
.icon-heading-icon i,
.icon-heading-icon svg {
    display: block !important;
    transition: all 0.3s ease;
}

/* Text styles */
.icon-heading-text {
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.3;
}

/* Additional spacing for vertical layouts */
.icon-position-top .icon-heading-text,
.icon-position-bottom .icon-heading-text {
    text-align: center;
    width: 100%;
}

/* Fix for Elementor editor specificity */
.elementor-widget-icon_heading .icon-heading-wrapper {
    display: flex !important;
}

.elementor-widget-icon_heading .icon-heading-icon {
    display: flex !important;
}