/* Demo Mockup Styles */
.business-demo {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.ecommerce-demo {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.portfolio-demo {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.restaurant-demo {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
}

.health-demo {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.business2-demo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 12px;
}

.demo-logo {
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-nav {
    display: flex;
    gap: 4px;
}

.demo-nav span {
    width: 16px;
    height: 2px;
    background: var(--gray-400);
    border-radius: 1px;
}

.demo-hero, .demo-content {
    padding: 0 12px;
}

.demo-text {
    background: var(--gray-300);
    border-radius: 2px;
    margin-bottom: 6px;
}

.demo-text.large {
    height: 8px;
    width: 80%;
}

.demo-text.medium {
    height: 6px;
    width: 60%;
}

.demo-button, .demo-cta {
    width: 40px;
    height: 16px;
    background: var(--primary-600);
    border-radius: 8px;
    margin-top: 8px;
}

.demo-products, .demo-gallery {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
}

.demo-product, .demo-image {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
}

.demo-cart, .demo-menu, .demo-contact, .demo-appointment {
    font-size: 14px;
}

.demo-menu-items, .demo-services {
    padding: 8px 12px;
}

.demo-item, .demo-service {
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin-bottom: 4px;
}

.demo-reservation, .demo-testimonial {
    height: 16px;
    background: var(--primary-200);
    border-radius: 3px;
    margin-top: 6px;
}

/* Portfolio Item Styles */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tags {
    display: flex;
    gap: var(--space-xs);
    margin: var(--space-sm) 0;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-100);
    color: var(--primary-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-weight: 700;
    color: var(--primary-600);
    font-size: 0.9rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.pricing-notes {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--gray-600);
}

.pricing-notes p {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.guarantee {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}