/* Shop Holding Page Styles */

.shop-holding {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.holding-content {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.holding-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.shop-holding header {
  background-color: transparent;
}

.holding-header {
    margin-bottom: 2.5rem;
}

.holding-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.holding-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

.holding-message {
    margin-bottom: 3rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #f6ad55;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #744210;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.message-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 2.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-preview {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.features-preview h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 1.5rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
}

.holding-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.contact-info {
    font-size: 1rem;
    color: #4a5568;
    margin: 0 0 1.5rem 0;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: #5a67d8;
    text-decoration: underline;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-home:hover,
.back-home:focus {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-holding {
        padding: 1rem;
    }
    
    .holding-content {
        padding: 2rem 1.5rem;
    }
    
    .holding-title {
        font-size: 2rem;
    }
    
    .holding-subtitle {
        font-size: 1.125rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .features-list li {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .holding-content {
        padding: 1.5rem 1rem;
    }
    
    .holding-title {
        font-size: 1.75rem;
    }
    
    .features-preview {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .status-dot {
        animation: none;
    }
    
    .back-home:hover,
    .back-home:focus {
        transform: none;
    }
}

/* Focus styles for better accessibility */
.contact-link:focus,
.back-home:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .holding-content {
        border: 2px solid #000;
    }
    
    .status-indicator {
        border: 2px solid #000;
    }
    
    .features-preview {
        border: 2px solid #000;
    }
}
