/* Beautiful Modern Single Business Design */

.abd-single-business {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section */
.abd-business-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.abd-business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.abd-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.abd-business-logo-large {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abd-business-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abd-business-logo-large.abd-no-logo {
    background: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
}

.abd-business-logo-large.abd-no-logo .dashicons {
    font-size: 48px;
    color: rgba(255,255,255,0.7);
}

.abd-hero-info h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.abd-hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.abd-meta-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.abd-meta-badge .dashicons {
    font-size: 16px;
}

.abd-hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.abd-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abd-action-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.abd-action-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.abd-action-btn.primary {
    background: #ff6b6b;
    border-color: #ff5252;
}

.abd-action-btn.primary:hover {
    background: #ff5252;
    border-color: #ff1744;
}

/* Content Grid */
.abd-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Main Content */
.abd-main-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.abd-content-section {
    margin-bottom: 40px;
}

.abd-content-section:last-child {
    margin-bottom: 0;
}

.abd-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e3f2fd;
    position: relative;
}

.abd-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.abd-business-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Gallery */
.abd-business-gallery {
    margin-top: 30px;
}

.abd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.abd-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.abd-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.abd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.abd-gallery-item:hover img {
    transform: scale(1.1);
}

/* Sidebar */
.abd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.abd-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.abd-sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.abd-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abd-card-title .dashicons {
    color: #667eea;
    font-size: 20px;
}

/* Contact Information */
.abd-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abd-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.abd-contact-item:last-child {
    border-bottom: none;
}

.abd-contact-item:hover {
    background: #f8f9ff;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.abd-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.abd-contact-details {
    flex: 1;
}

.abd-contact-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.abd-contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.abd-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.abd-contact-value a:hover {
    color: #667eea;
}

/* Share Card */
.abd-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.abd-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.abd-share-btn.facebook {
    background: #1877f2;
    color: white;
}

.abd-share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.abd-share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.abd-share-btn.copy {
    background: #f8f9fa;
    color: #495057;
    border-color: #dee2e6;
}

.abd-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Status Badge */
.abd-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.abd-status-badge.verified {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.abd-status-badge.pending {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .abd-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .abd-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .abd-hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .abd-single-business {
        padding: 15px;
    }
    
    .abd-business-hero {
        padding: 25px;
    }
    
    .abd-hero-info h1 {
        font-size: 2rem;
    }
    
    .abd-business-logo-large {
        width: 80px;
        height: 80px;
    }
    
    .abd-main-content,
    .abd-sidebar-card {
        padding: 20px;
    }
    
    .abd-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .abd-hero-meta {
        justify-content: center;
    }
    
    .abd-share-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .abd-hero-info h1 {
        font-size: 1.5rem;
    }
    
    .abd-business-logo-large {
        width: 60px;
        height: 60px;
    }
    
    .abd-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .abd-action-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.abd-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.abd-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .abd-hero-actions,
    .abd-share-buttons {
        display: none;
    }
    
    .abd-business-hero {
        background: #f8f9fa;
        color: #333;
    }
    
    .abd-content-grid {
        grid-template-columns: 1fr;
    }
}