/* ToolCart Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

/* Tool Page Specific Styles */
.tool-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.tool-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.tool-icon-large {
    font-size: 64px;
    margin-bottom: 1rem;
}

.tool-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.tool-description {
    font-size: 1.125rem;
    opacity: 0.95;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.story-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
}

.story-card.before {
    border-color: #fbbf24;
    background: linear-gradient(to bottom, #fffbeb, white);
}

.story-card.after {
    border-color: #34d399;
    background: linear-gradient(to bottom, #d1fae5, white);
}

.story-emoji {
    font-size: 48px;
    margin-bottom: 1rem;
}

.story-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.story-attribution {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.story-details h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.story-details p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.story-arrow {
    font-size: 48px;
    color: #3b82f6;
}

.tool-visual {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin: 2rem 0;
}

.visual-content {
    font-size: 48px;
    margin-bottom: 1rem;
}

.visual-caption {
    color: #6b7280;
    font-style: italic;
}

.tool-interface {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
}

.upload-area {
    border: 3px dashed #3b82f6;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.upload-icon {
    font-size: 64px;
    margin-bottom: 1rem;
}

.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon h2 {
    font-size: 2rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.benefits {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.privacy-notice {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.privacy-notice p {
    color: #1e40af;
    font-weight: 500;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-arrow {
        transform: rotate(90deg);
    }
    
    .tool-hero h1 {
        font-size: 1.75rem;
    }
    
    .tool-interface {
        padding: 1.5rem;
    }
}
