/* Single Malls Directory Style CSS */

/* High Specificity Rules for Single Mall Template */
body.single-malls .directory-header-section,
.single-malls .directory-header-section {
    background: #fff !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 20px 0 !important;
    margin: 0 !important;
}

body.single-malls .directory-main-header,
.single-malls .directory-main-header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 30px !important;
    margin: 20px 0 !important;
}

body.single-malls .header-left,
.single-malls .header-left {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    flex: 1 !important;
}

body.single-malls .business-image,
.single-malls .business-image {
    flex-shrink: 0 !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    background: #f8f9fa !important;
}

body.single-malls .business-thumb,
.single-malls .business-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.single-malls .business-name,
.single-malls .business-name {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.2 !important;
}

body.single-malls .business-category,
.single-malls .business-category {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #007bff !important;
    font-weight: 600 !important;
}

body.single-malls .business-address,
.single-malls .business-address {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    font-size: 16px !important;
    color: #495057 !important;
}

body.single-malls .directory-content-section,
.single-malls .directory-content-section {
    padding: 40px 0 !important;
    background: #f8f9fa !important;
    margin: 0 !important;
}

body.single-malls .directory-layout,
.single-malls .directory-layout {
    display: grid !important;
    grid-template-columns: 1fr 350px !important;
    gap: 40px !important;
    align-items: start !important;
}

body.single-malls .directory-card,
.single-malls .directory-card {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e9ecef !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

body.single-malls .card-header,
.single-malls .card-header {
    padding: 20px 25px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: #fafbfc !important;
}

body.single-malls .card-title,
.single-malls .card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

body.single-malls .card-content,
.single-malls .card-content {
    padding: 25px !important;
}

/* Quick Facts Grid */
body.single-malls .facts-grid,
.single-malls .facts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
}

body.single-malls .fact-item,
.single-malls .fact-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

body.single-malls .fact-icon,
.single-malls .fact-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    background: var(--brand-blue) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
}

/* Map Container */
body.single-malls .map-container,
.single-malls .map-container {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
}

body.single-malls .google-map-embed,
.single-malls .google-map-embed {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Action Buttons */
body.single-malls .action-btn,
.single-malls .action-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    min-width: 140px !important;
    justify-content: center !important;
}

body.single-malls .action-btn.primary,
.single-malls .action-btn.primary {
    background: var(--brand-blue) !important;
    color: white !important;
}

body.single-malls .action-btn.secondary,
.single-malls .action-btn.secondary {
    background: #f8f9fa !important;
    color: #495057 !important;
    border: 1px solid #dee2e6 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    body.single-malls .directory-layout,
    .single-malls .directory-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    body.single-malls .directory-main-header,
    .single-malls .directory-main-header {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    body.single-malls .header-left,
    .single-malls .header-left {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    body.single-malls .business-image,
    .single-malls .business-image {
        align-self: center !important;
    }
    
    body.single-malls .business-name,
    .single-malls .business-name {
        font-size: 24px !important;
        text-align: center !important;
    }
    
    body.single-malls .facts-grid,
    .single-malls .facts-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    body.single-malls .map-container,
    .single-malls .map-container {
        height: 250px !important;
    }
}
