/* EXPERIMENTAL STYLES - Safe to modify without affecting main site */
/* This file starts as a copy of the original style.css */
/* Modify the .experiment-page class and its children to test new layouts */

/* Only apply experimental styles when the body has the experiment-page class */
body.experiment-page {
    /* Add your experimental styles here */
}

/* For now, everything below is the same as the original */
/* You can gradually modify styles under .experiment-page selector */

/* Example: To change the header only on experiment page:
body.experiment-page .header {
    background: #f0f0f0;
}
*/

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #ffffff;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #000000;
    min-height: 100vh;
    font-weight: 400;
}

.container-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header .artwork-item {
    border: 0;
}

body.canvas-active .container-header {
    display: none;
}

/* Header Image Rotation Styles */

/* Container with fixed height */
.header .artwork-item {
    position: relative;
    overflow: hidden;
    height: 600px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Smooth fade transition for rotating images */
.header .artwork-image {
    transition: opacity 2.0s ease-in-out;
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintains aspect ratio, no cropping */
    display: block;
}

/* Optional: Loading state to prevent flash */
.header .artwork-image.loading {
    opacity: 0;
}

/* Responsive heights */
@media (max-width: 768px) {
    .header .artwork-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header .artwork-item {
        height: 250px;
    }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - Minimalist like molly.studio */
.header {
    background: #ffffff;
    color: #000000;
    text-align: left;
    padding: 60px 40px 40px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.header h1 {
    font-size: 72px;
    line-height: 80px;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.header p {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 400;
    max-width: 500px;
}

/* Status messages - Clean minimal styling */
.status-message {
    margin: 0;
    background: white;
    padding: 20px 40px;
}

.status-message:empty {
    display: none;
}

/* Status message content styling */
.status-message p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.status-message div {
    padding: 20px;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    background: #ffffff;
}

/* Success state */
.status-message div[style*="background: #e8f5e8"],
.status-message div[style*="background:#e8f5e8"] {
    background: #f8f8f8 !important;
    border-left: 3px solid #000000 !important;
}

.status-message div[style*="color: #2e7d32"] strong,
.status-message div[style*="color:#2e7d32"] strong {
    color: #000000 !important;
}

.status-message div[style*="color: #558b2f"] span,
.status-message div[style*="color:#558b2f"] span {
    color: #666666 !important;
}

/* Error state */
.status-message div[style*="background: #ffebee"],
.status-message div[style*="background:#ffebee"] {
    background: #f8f8f8 !important;
    border-left: 3px solid #cccccc !important;
}

.status-message div[style*="color: #d32f2f"] strong,
.status-message div[style*="color:#d32f2f"] strong {
    color: #000000 !important;
}

.status-message div[style*="color: #c62828"] span,
.status-message div[style*="color:#c62828"] span {
    color: #666666 !important;
}

/* Loading state */
.status-message p[style*="background: #e3f2fd"],
.status-message p[style*="background:#e3f2fd"] {
    background: #f8f8f8 !important;
    border: 1px solid #e5e5e5 !important;
    color: #000000 !important;
    border-radius: 0 !important;
}

/* General status message styling override */
.status-message small {
    color: #999999 !important;
}

/* Gallery View - Text-focused like molly.studio */
.gallery-view {
    flex: 1;
    padding: 40px 40px 60px 40px;
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-header h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gallery-header p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   FAQ SECTION - Cafe-style Layout with Site Colors
   Matches your exact markup structure
======================================== */

.faq-header {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 60px 40px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Ordered List - The main steps */
ol.faq {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 40px 0;
}

ol.faq > li {
    counter-increment: step-counter;
    position: relative;
    padding: 32px 0 32px 80px;
    border-bottom: 1px solid #e5e5e5;
}

ol.faq > li:last-child {
    border-bottom: none;
}

/* Step Number Circle */
ol.faq > li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 32px;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
}

/* Step Title */
ol.faq > li > p:first-child b {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

/* Step Description */
ol.faq > li > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

ol.faq > li > p:not(:first-child) {
    margin-top: 8px;
}

/* Nested Bullet List */
ol.faq > li ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

ol.faq > li ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
}

ol.faq > li ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 1.2rem;
    color: #000000;
}

/* Closing Paragraph */
.faq-header > p:last-of-type {
    font-size: 1.1rem;
    color: #666666;
    margin-top: 40px;
    text-align: center;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header {
        padding: 40px 20px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    ol.faq > li {
        padding: 24px 0 24px 68px;
    }
    
    ol.faq > li::before {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        top: 24px;
    }
    
    ol.faq > li > p:first-child b {
        font-size: 1.2rem;
    }
    
    ol.faq > li > p,
    ol.faq > li ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.75rem;
    }
    
    ol.faq > li {
        padding: 20px 0 20px 58px;
    }
    
    ol.faq > li::before {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        top: 20px;
    }
    
    ol.faq > li > p:first-child b {
        font-size: 1.1rem;
    }
    
    .faq-header > p:last-of-type {
        font-size: 1rem;
    }
}


/* ========================================
   PROMO SECTION - Browser Extension
======================================== */

.promo-section {
    margin: 80px 0;
    padding: 0 40px;
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.promo-text {
    max-width: 600px;
}

.promo-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.promo-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.promo-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #000000;
    background: #000000;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.promo-btn:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-btn svg {
    flex-shrink: 0;
}

/* Branded button colors */
.promo-btn-chrome {
    background: #4285f4;
    border-color: #4285f4;
}

.promo-btn-chrome:hover {
    background: #357ae8;
    border-color: #357ae8;
    color: white;
}

.promo-btn-firefox {
    background: #ff7139;
    border-color: #ff7139;
}

.promo-btn-firefox:hover {
    background: #e96030;
    border-color: #e96030;
    color: white;
}

/* Visual Element */
.promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
}

.promo-icon svg {
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-section {
        margin: 60px 0;
        padding: 0 20px;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 32px;
        text-align: center;
    }
    
    .promo-text {
        max-width: 100%;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .promo-buttons {
        justify-content: center;
    }
    
    .promo-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .promo-section {
        margin: 40px 0;
    }
    
    .promo-content {
        padding: 32px 24px;
    }
    
    .promo-title {
        font-size: 1.3rem;
    }
    
    .promo-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* URL Input Section - positioned between header and gallery */
.url-input-section {
    margin-bottom: 60px;
    padding: 30px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 0;
}

.url-input-section h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.url-input-section p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.url-input-section .url-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 16px;
}

.url-input-section input[type="text"] {
    flex: 1;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: white;
    font-size: 0.95rem;
    color: #000000;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.url-input-section input[type="text"]:focus {
    outline: none;
    border-color: #000000;
}

.url-input-section input[type="text"]::placeholder {
    color: #999999;
    font-size: 0.9rem;
}

.load-url-btn {
    padding: 16px 20px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.load-url-btn:hover:not(:disabled) {
    background: #333333;
}

.load-url-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    color: #999999;
}

.load-url-btn svg {
    width: 16px;
    height: 16px;
}

.url-loading-status {
    font-size: 0.9rem;
    min-height: 20px;
}

.url-loading-status:empty {
    display: none;
}

.url-loading-status.loading {
    color: #666666;
}

.url-loading-status.success {
    color: #2e7d32;
}

.url-loading-status.error {
    color: #d32f2f;
}

/* Simplified gallery layout - more like a portfolio */
.artwork-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
}

.artwork-item {
    background: white;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
}

.artwork-item:hover {
    border-color: #000000;
    text-decoration: none;
    color: inherit;
    transform: translateY(-1px);
}

.artwork-item:active {
    transform: translateY(0);
}

/* Image styling - completely natural aspect ratio */
.artwork-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.artwork-info {
    background: white;
}

.artwork-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.artwork-artist {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 4px;
    line-height: 1.4;
}

.artwork-museum {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 400;
}

.loading-message {
    text-align: center;
    padding: 80px 20px;
    color: #666666;
    font-size: 1rem;
}

/* Canvas View - Full width layout */
.canvas-view {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Print info - NOW positioned naturally in document flow between status and canvas */
.print-info {
    background: #f8f8f8;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 20px 40px;
    margin: 0;
    text-align: left;
}

/* Print quality indicator - Subtle */
.print-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.print-label {
    font-weight: 500;
    color: #000000;
    font-size: 0.95rem;
}

.print-value {
    color: #666666;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Main content layout - column layout */
.main-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
}

/* Canvas section - full width, centered - REMOVED margin-top compensation */
.canvas-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    padding: 40px;
    border-bottom: 1px solid #e5e5e5;
}

/* Canvas styling - maintains 3:2 aspect ratio */
#postcard {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    max-width: calc(100% - 40px);
    width: 600px;
    height: 400px; /* Maintains 3:2 ratio (600×400) */
    cursor: grab;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#postcard:active {
    cursor: grabbing;
}

/* Controls section - below canvas, full width */
.controls-section {
    background: white;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Message and button elements span full width */
.control-group:has(#postcardMessage),
.action-section {
    grid-column: 1 / -1;
}

.control-group {
    margin-bottom: 40px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
}

/* Color input - Cleaner */
.color-input-wrapper {
    display: flex;
    align-items: center;
}

input[type="color"] {
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

input[type="color"]:hover {
    border-color: #000000;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}

input[type="color"]::-moz-color-swatch {
    border: none;
}

/* Range sliders - Clean and minimal */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

input[type="range"] {
    flex: 1;
    height: 2px;
    border-radius: 0;
    background: #e5e5e5;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #000000;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #000000;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #333333;
}

input[type="range"]::-moz-range-thumb:hover {
    background: #333333;
}

input[type="range"]:focus {
    outline: none;
}

output {
    min-width: 45px;
    text-align: right;
    font-weight: 500;
    color: #000000;
    font-size: 0.9rem;
}

/* Textarea - Clean */
.message-input-wrapper {
    position: relative;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    background: white;
    color: #000000;
    line-height: 1.6;
    transition: border-color 0.2s ease;
}

textarea:focus {
    outline: none;
    border-color: #000000;
}

textarea::placeholder {
    color: #999999;
}

.character-count {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.8rem;
    color: #999999;
    font-weight: 500;
}

/* Action section - Prominent but clean */
.action-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.cta-button {
    margin-top:16px;
    padding: 20px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.cta-button:hover:not(:disabled) {
    background: #333333;
}

.cta-button:active {
    background: #000000;
}

.cta-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    color: #999999;
}

.makepostcard-button {
    width: 100%;
    padding: 20px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.makepostcard-button:hover:not(:disabled) {
    background: #333333;
}

.makepostcard-button:active {
    background: #000000;
}

.makepostcard-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    color: #999999;
}

/* Footer - Minimal */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 40px;
}

.url-section {
    max-width: 100%;
}

.url-section label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
}

.url-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.url-input-wrapper input[type="text"] {
    flex: 1;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: white;
    font-size: 0.95rem;
    color: #000000;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.url-input-wrapper input[type="text"]:focus {
    outline: none;
    border-color: #000000;
}

.copy-btn {
    padding: 16px 20px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #333333;
}

.copy-btn:active {
    background: #000000;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* Quality indicators - Subtle */
.quality-indicator {
    font-family: inherit;
    line-height: 1.5;
    background: #f8f8f8 !important;
    border: 1px solid #e5e5e5 !important;
    border-left: 3px solid #000000 !important;
    border-radius: 0 !important;
}

.quality-excellent { border-left-color: #000000 !important; }
.quality-good { border-left-color: #333333 !important; }
.quality-acceptable { border-left-color: #666666 !important; }
.quality-poor { border-left-color: #999999 !important; }
.quality-very-poor { border-left-color: #cccccc !important; }

/* Mobile responsiveness - New layout */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .header {
        padding: 40px 20px 30px 20px;
    }
    
    .header h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .header p {
        font-size: 1rem;
    }

    .header .grid-item {
        text-align: center;
    }
    
    .url-input-section {
        margin-bottom: 40px;
        padding: 20px;
    }
    
    .url-input-section h3 {
        font-size: 1.1rem;
    }
    
    .url-input-section p {
        font-size: 0.9rem;
    }
    
    .url-input-section .url-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .load-url-btn {
        align-self: flex-start;
    }
    
    .gallery-view {
        padding: 30px 20px 40px 20px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-header h2 {
        font-size: 1.3rem;
    }
    
    .artwork-gallery {
        gap: 30px;
    }
    
    .artwork-item {
        padding: 16px;
    }
    
    .artwork-title {
        font-size: 1rem;
    }
    
    .artwork-artist {
        font-size: 0.95rem;
    }
    
    .artwork-museum {
        font-size: 0.85rem;
    }
    
    .status-message {
        padding: 20px;
    }
    
    .print-info {
        padding: 16px 20px;
        margin: 0;
    }
    
    .canvas-section {
        padding: 20px;
    }
    
    #postcard {
        max-width: calc(100vw - 40px);
        width: auto;
        height: auto;
        aspect-ratio: 3/2;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .controls-section {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .control-group {
        margin-bottom: 0;
    }
    
    .action-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .makepostcard-button {
        padding: 18px 24px;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .url-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .copy-btn {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 16px 24px 16px;
    }
    
    .header h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .gallery-view {
        padding: 24px 16px 30px 16px;
    }
    
    .artwork-item {
        padding: 12px;
    }
    
    .artwork-image {
        margin-bottom: 12px;
    }
    
    .canvas-section {
        padding: 20px 16px;
    }
    
    .controls-section {
        padding: 24px 16px;
    }
    
    .footer {
        padding: 24px 16px;
    }
    
    .print-specs {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Touch improvements for mobile - maintaining minimal aesthetic */
@media (pointer: coarse) {
    input[type="range"] {
        height: 3px;
    }
    
    input[type="range"]::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    input[type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    .makepostcard-button {
        padding: 20px 24px;
        font-size: 1.1rem;
    }
    
    input[type="color"] {
        width: 60px;
        height: 60px;
    }
}

/* Additional molly.studio inspired elements */
.typography-focus {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    max-width: 65ch;
}

.minimal-divider {
    height: 1px;
    background: #e5e5e5;
    border: none;
    margin: 40px 0;
}

/* Subtle animations */
.artwork-item,
.makepostcard-button,
input[type="color"],
input[type="range"]::-webkit-slider-thumb {
    transition: all 0.2s ease;
}

/* Focus states */
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Selection styling */
::selection {
    background: #000000;
    color: white;
}

/* Legal Pages Styling */
.page-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.page-content h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.page-content p {
    margin-bottom: 15px;
    color: #666;
}

.page-content strong {
    color: #333;
}

.page-content a {
    color: #0066cc;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content ul, .page-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.page-content li {
    margin-bottom: 8px;
    color: #666;
}

.page-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #eee;
}

.page-content ol {
    list-style-type: lower-alpha;
}

@media (max-width: 768px) {
    .page-content {
        padding: 15px;
        margin: 20px auto;
    }
    
    .page-content h1 {
        font-size: 1.5rem;
    }
    
    .page-content h2 {
        font-size: 1.25rem;
    }
}



