/* styles.css - Updated with BossCraft name, demo banner, logo placeholder, layout fixes, and advantage highlights */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #2d3748;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the workflow-container */
}
/* *** NEW DEMO BANNER STYLES *** */
.demo-banner {
    background-color: #fffbeb; /* Amber 50 */
    color: #92400e; /* Amber 800 */
    padding: 8px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px 8px 0 0; /* Round top corners */
    margin-bottom: 16px;
    border: 1px solid #fde68a; /* Amber 300 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%; /* Ensure it spans the container width */
    max-width: 1200px; /* Match workflow-container max-width */
}
/* *** UPDATED HEADER STYLES *** */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding-top: 12px;
    width: 100%; /* Ensure it spans the container width */
    max-width: 1200px; /* Match workflow-container max-width */
}
/* *** NEW LOGO CONTAINER *** */
.logo-container {
    display: flex;
    align-items: center;
    gap: 16px; /* Space between logo and text */
    margin-bottom: 8px;
}
/* *** NEW LOGO PLACEHOLDER *** */
.logo-placeholder {
    font-size: 36px; /* Size of the emoji/logo */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* *** UPDATED LOGO TEXT *** */
.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Amber gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tagline {
    color: #64748b;
    font-size: 16px;
}
/* --- LAYOUT FIX: Constrain the main workflow area --- */
.workflow-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    height: calc(100vh - 200px); /* Adjust if header/banner heights change significantly */
    max-width: 1200px; /* This constrains the overall width */
    width: 100%;
    margin: 0 auto; /* Center it within the .container */
}
.sidebar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a202c;
}
.step {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.step:hover {
    background: #f7fafc;
    transform: translateX(4px);
}
.step.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}
.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
}
.step.active .step-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.step.completed .step-number {
    background: #10b981;
    color: white;
}
.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    /* padding: 32px; */ /* Removed padding to be applied inside content-wrapper */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    /* Ensure padding is handled by content-wrapper */
    padding: 0;
    display: flex; /* Use flexbox */
    flex-direction: column;
}
.content-section {
    display: none;
    flex: 1; /* Take up available space within main-content */
    overflow-y: auto; /* Allow scrolling if content-section itself overflows */
    padding: 0; /* Remove any default padding that might interfere */
}
.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- LAYOUT FIX: Constrain content width for readability --- */
.content-wrapper {
    max-width: 800px; /* Adjust this value to your preference */
    margin-left: auto;
    margin-right: auto;
    padding: 32px; /* Moved padding here */
    padding-left: 20px; /* Adjust internal padding as needed */
    padding-right: 20px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}
.section-subtitle {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 16px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-textarea {
    min-height: 100px;
    resize: vertical;
}
.form-color-picker {
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}
.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}
.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}
.btn-secondary:hover {
    background-color: #d1d5db;
    transform: translateY(-1px);
}
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}
.btn-success:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}
/* - Quick Start Bar - */
.quick-start-bar {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* - Notification - */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 350px;
}
.notification.show {
    transform: translateX(0);
}
/* - Spinner Animation - */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* - AI Processing - */
.ai-processing {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: none;
}
.ai-processing.active {
    display: block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
.ai-processing-content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ai-processing-text {
    flex: 1;
}
.ai-processing-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}
.ai-processing-subtitle {
    font-size: 14px;
    opacity: 0.9;
}
/* - Preview - */
.preview-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.preview-device-buttons {
    display: flex;
    gap: 10px;
}
.preview-frame {
    width: 100%;
    height: 600px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}
.fee-tier-card {
    background: white;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #047857;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: left; /* Center items vertically */
    align-items: left; /* Center items horizontally */
}
.fee-tier-note {
    font-size: 10px;
    color: #64748b; /* Gray for note */
    font-style: italic;
    margin-top: 4px; /* Space above the note */
}
/* Ensure the main value and range are centered */
.fee-tier-value, .fee-tier-range {
    /* These styles likely already exist, just ensuring centering */
    text-align: left;
}
/* Add this to your styles.css */
.fee-example-total {
    /* ... (existing styles) ... */
    margin-bottom: 25px; /* Add this line */
}
/* - Style Options - */
.style-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.style-option {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.style-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}
.style-option.selected {
    border-color: #667eea;
    background: #f8faff;
}
.style-option-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.style-option-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.style-option-description {
    font-size: 14px;
    color: #64748b;
}
/* - Product Discovery - */
.discovery-info-banner {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.discovery-info-banner::after {
    content: "✨ Product Sourcing Included";
    position: absolute;
    top: 10px;
    right: -30px;
    background: #10b981;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0.9;
}
.discovery-info-title {
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
}
.discovery-info-description {
    font-size: 14px;
    color: #065f46;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.product-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    background: #ffffff;
    transition: all 0.2s ease;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}
.product-image-placeholder {
    font-size: 40px;
    margin-bottom: 12px;
}
.product-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}
.product-price {
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}
.product-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 12px;
    font-weight: normal;
}
.product-margin {
    font-size: 12px;
    color: #047857;
    font-weight: 500;
}
/* - Commission Info - */
.commission-info-banner {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.commission-info-title {
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
}
.commission-info-description {
    font-size: 14px;
    color: #065f46;
}
.commission-structure-card {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.commission-structure-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #10b981;
}
.commission-tiers-final-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}
.commission-tier-final-card {
    background: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}
.commission-tier-final-value {
    font-weight: 700;
    color: #10b981;
}
.commission-tier-final-range {
    font-size: 11px;
    color: #047857;
}
.commission-example {
    font-size: 12px;
    color: #047857;
    text-align: center;
}
/* - Fulfillment - */
.fulfillment-strategy-card {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.fulfillment-strategy-card::after {
     content: "📦 Fulfillment Managed";
    position: absolute;
    top: 10px;
    right: -30px;
    background: #3b82f6;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0.9;
}
.fulfillment-strategy-title {
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}
.fulfillment-strategy-description {
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 16px;
}
.fulfillment-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.fulfillment-strategy-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 500;
}
.warehouse-network-card {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.warehouse-network-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}
.warehouse-network-description {
    font-size: 14px;
    color: #92400e;
    margin-bottom: 16px;
}
.warehouse-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.warehouse-partner-card {
    background: white;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #fed7aa;
}
.warehouse-partner-info .warehouse-partner-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}
.warehouse-partner-info .warehouse-partner-location {
    font-size: 12px;
    color: #92400e;
}
.shipping-integrations-card {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.shipping-integrations-title {
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}
.shipping-integrations-description {
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 16px;
}
.shipping-integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.shipping-integration-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
}
/* - Compliance & Tax - */
.tax-compliance-card {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.tax-compliance-title {
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
}
.tax-compliance-description {
    font-size: 14px;
    color: #065f46;
}
.compliance-features-card {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.compliance-features-title {
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 12px;
}
.compliance-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.compliance-feature {
    padding: 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #dbeafe;
}
.compliance-feature-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e40af;
}
.compliance-feature-description {
    font-size: 14px;
    color: #1e40af;
}
/* - Backend Architecture / Components - */
.generated-components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}
.generated-components-grid::before {
     content: "💻 No Technical Skills";
    position: absolute;
    top: 10px;
    left: -30px;
    background: #8b5cf6;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0.9;
    z-index: 1;
}
.component-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}
.component-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}
.component-icon {
    font-size: 28px;
    margin-bottom: 12px;
}
.component-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 15px;
}
.component-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}
/* - Portal Prompt (Step 9) - */
.portal-prompt-card {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}
.portal-prompt-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.portal-prompt-description {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.portal-prompt-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.portal-prompt-actions .btn {
    flex: 1;
    min-width: 150px;
}
/* - Deployment Options - */
.deployment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.deployment-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}
.deployment-card.selected {
    border-color: #667eea;
    background: #f8faff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}
.deployment-card.free-start {
    border-color: #fbbf24;
    box-shadow: 0 0 0 1px #fbbf24;
}
.deployment-card.free-start .deployment-card-title::after {
    content: " (No Upfront Fee!)";
    color: #f59e0b;
    font-size: 16px;
    font-weight: normal;
}
.deployment-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}
.deployment-card-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}
.deployment-card-price {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 8px;
}
.deployment-card-commission {
    font-size: 14px;
    color: #047857;
    margin-bottom: 12px;
    font-weight: 500;
}
.deployment-card-benefit {
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
}
.plan-info-banner {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    text-align: center;
}
.plan-info-banner h4 {
    color: #047857;
    margin-bottom: 8px;
}
/* - Deployment Completion - */
.deployment-success-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.success-title {
    font-size: 32px;
    font-weight: 800;
    color: #f59e0b; /* Amber 500 */
    margin-bottom: 12px;
}
.success-subtitle {
    font-size: 18px;
    color: #374151;
    margin-bottom: 30px;
}
.tech-stack-card {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}
.tech-stack-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #667eea;
}
.tech-stack-details {
    font-size: 14px;
    color: #1e40af;
    line-height: 1.6;
}
.deployment-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.deployment-link-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.deployment-link-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #667eea;
}
.deployment-link-url {
    font-family: monospace;
    color: #10b981;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.deployment-link {
    color: #10b981;
    text-decoration: none;
}
.deployment-link:hover {
    text-decoration: underline;
}
.deployment-link-note {
    font-size: 12px;
    color: #64748b;
}
/* - Portal Benefits (Post-Deployment) - */
.portal-benefits-card {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
    text-align: left;
}
.portal-benefits-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #3b82f6;
}
.portal-benefits-description {
    font-size: 16px;
    color: #1e40af;
    margin-bottom: 20px;
}
.portal-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.portal-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.benefit-icon {
    font-size: 24px;
}
.benefit-text {
    font-weight: 500;
    color: #1e3a8a;
}
.success-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}
.success-action-btn {
    padding: 15px 20px;
    font-size: 16px;
}
/* - Domain Config - */
.domain-config-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: end;
    margin-top: 30px;
}
.domain-status {
    margin-top: 8px;
    font-size: 14px;
    color: #10b981;
}
/* - Deploy Progress - */
.deploy-progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
}
.deploy-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.5s ease;
}
.deploy-status {
    margin-top: 8px;
    font-size: 14px;
    color: #374151;
    text-align: center;
}
/* - Consent - */
.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    cursor: pointer;
    line-height: 1.5;
}
.consent-checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #9ca3af;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}
.consent-checkbox-label input[type="checkbox"]:checked {
    background-color: #667eea;
    border-color: #667eea;
}
.consent-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.consent-checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}
.consent-checkbox-label a:hover {
    color: #4f46e5;
}
.important-note {
    background-color: #fffbeb;
    border: 1px solid #f59e0b;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 14px;
}
.legal-frameworks-card {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.legal-frameworks-title {
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}
.legal-frameworks-description {
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 16px;
}
.legal-frameworks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.legal-framework-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.framework-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.framework-details {
    flex: 1;
}
.framework-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}
.framework-description {
    font-size: 14px;
    color: #374151;
}
/* --- KEY ADVANTAGES BANNER STYLES --- */
.key-advantages-banner {
    background: linear-gradient(135deg, #4338ca, #7e22ce);
    color: white;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.key-advantages-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}
.key-advantages-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.key-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.advantage-icon {
    font-size: 32px;
    margin-bottom: 15px;
}
.advantage-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.advantage-description {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}
.advantage-card:hover .advantage-icon {
    animation: tada 1s ease;
}
@keyframes tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}
/* --- END KEY ADVANTAGES STYLES --- */

/* --- AI PROCESSING HIGHLIGHT --- */
.ai-processing-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: bold;
}
/* --- END AI PROCESSING HIGHLIGHT --- */

/* - Media Queries - */
@media (max-width: 768px) {
    .workflow-container {
        grid-template-columns: 1fr;
        height: auto;
        max-width: 100%; /* Allow full width on mobile */
    }
    .sidebar {
        order: 2;
    }
    .main-content {
        order: 1;
    }
    .preview-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .preview-device-buttons {
        justify-content: center;
    }
    .deployment-options-grid,
    .generated-components-grid,
    .compliance-features-grid,
    .product-grid,
    .fulfillment-strategy-grid,
    .warehouse-partners-grid,
    .shipping-integrations-grid,
    .deployment-links-grid,
    .success-actions-grid,
    .portal-benefits-grid,
    .portal-prompt-actions,
    .key-advantages-grid {
        grid-template-columns: 1fr;
    }
    .domain-config-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ai-processing-content {
        flex-direction: column;
        text-align: center;
    }
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .demo-banner {
        font-size: 12px;
        padding: 6px 12px;
    }
    .content-wrapper {
        padding: 20px; /* Adjust padding for mobile */
    }
    /* --- AI Edit Request Section (Step 3) --- */
    .ai-edit-request-section {
        background: #f0f9ff;
        border: 1px solid #3b82f6;
        border-radius: 8px;
        padding: 20px;
        margin: 30px 0 20px 0;
    }
    .ai-edit-request-title {
        font-weight: 700;
        color: #3b82f6;
        margin-bottom: 8px;
        font-size: 18px;
    }
    .ai-edit-request-description {
        font-size: 14px;
        color: #1e40af;
        margin-bottom: 15px;
    }
    .ai-edit-input-group {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .ai-edit-input-group .form-input {
        flex: 1;
        min-width: 200px;
    }
    .ai-edit-input-group .btn {
        white-space: nowrap;
    }
    /* --- End AI Edit Request Section --- */
    /* --- Updated Deployment Card Styles (Step 9) --- */
    .deployment-card[data-plan="custom"] {
        background: #f8fafc;
        border-color: #94a3b8;
    }
    .deployment-card[data-plan="custom"] .deployment-card-title {
        color: #0f172a;
    }
    .deployment-card[data-plan="custom"] .deployment-card-price {
        color: #0f172a;
    }
    .deployment-card[data-plan="custom"] .deployment-card-insight {
        background-color: #e2e8f0;
        color: #0f172a;
    }
    /* --- End Updated Deployment Card Styles --- */
}
