/* ============================================
   OPTIPIX — Global Styles
   ============================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --bg: #ffffff;
    --bg-dark: #0f0f14;
    --bg-card: #f8f9fb;
    --bg-card-hover: #f0f1f5;
    --text: #1a1a2e;
    --text-light: #64748b;
    --text-white: #f1f5f9;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: default;
    opacity: 0.6;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: 140px 24px 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ============================================
   TOOLS SECTION
   ============================================ */

.tools-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: white;
}

.tool-card-soon {
    opacity: 0.55;
    cursor: default;
}

.tool-card-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
    background: var(--bg-card);
}

.tool-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-icon-compress {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.tool-icon-bg {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.tool-icon-convert {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.tool-icon-format {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.tool-icon-soon {
    background: rgba(100, 116, 139, 0.08);
    color: var(--text-light);
}

.tool-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.tool-card-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.tool-card:hover .tool-card-cta {
    text-decoration: underline;
}

.tool-card-badge {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(100, 116, 139, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Featured card (Retouche Photo) */
.tool-card-featured {
    position: relative;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(99,102,241,0.04) 0%, rgba(6,182,212,0.04) 100%);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}

.tool-card-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(99,102,241,0.18);
}

.tool-card-badge-star {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}

/* Tool features pills (on tool page header) */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 12px;
    justify-content: center;
}

.tool-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 24px;
    background: rgba(100, 116, 139, 0.08);
    color: var(--text-muted);
}

.tool-feature-star {
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(6,182,212,0.12) 100%);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid rgba(99,102,241,0.2);
    font-size: 0.88rem;
    padding: 8px 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   PRIVACY
   ============================================ */

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

.privacy-card {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(6, 182, 212, 0.04));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.privacy-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.privacy-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-card p {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 8px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   TOOL PAGE LAYOUT
   ============================================ */

.tool-page {
    padding-top: 100px;
    min-height: 100vh;
}

.tool-header {
    text-align: center;
    padding: 40px 24px 32px;
}

.tool-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.tool-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Upload Zone */
.upload-zone {
    max-width: 680px;
    margin: 0 auto 40px;
    padding: 60px 40px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg-card);
}

.upload-zone:hover, .upload-zone.drag-over {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.04);
}

.upload-zone-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.upload-zone h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.upload-zone p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.upload-zone input[type="file"] {
    display: none;
}

.upload-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: 10px;
    cursor: pointer;
    transition: background var(--transition);
}

.upload-btn:hover {
    background: var(--primary-dark);
}

/* Processing Area */
.processing-area {
    display: none;
    max-width: 680px;
    margin: 0 auto 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.processing-area.visible {
    display: block;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.file-preview {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border);
}

.file-preview-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
}

.file-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-all;
}

.file-details p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Settings (Compressor) */
.settings-group {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.settings-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.settings-group input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.quality-value {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.format-select {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    cursor: pointer;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-process {
    flex: 1;
    padding: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-retouch {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.btn-retouch:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.btn-process:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-process:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-reset {
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-reset:hover {
    background: var(--bg-card);
}

/* Result Area */
.result-area {
    display: none;
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 32px;
    background: white;
    border: 2px solid var(--success);
    border-radius: var(--radius);
}

.result-area.visible {
    display: block;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.result-header .check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.result-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.result-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
}

.result-stat .label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-stat .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
}

.result-stat .value.green {
    color: var(--success);
}

.result-preview {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    background: repeating-conic-gradient(#f0f0f0 0% 25%, white 0% 50%) 50% / 16px 16px;
}

.btn-download {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: var(--success);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-download:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* Progress bar */
.progress-container {
    display: none;
    margin: 20px 0;
}

.progress-container.visible {
    display: block;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Checkerboard background for transparency */
.checkerboard {
    background: repeating-conic-gradient(#e0e0e0 0% 25%, white 0% 50%) 50% / 16px 16px;
}

/* ============================================
   FOOTER (updated grid layout)
   ============================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
}

.nav-overlay.open {
    display: block;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 150;
    padding: 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px 8px;
    line-height: 1;
}

.nav-mobile-close:hover {
    color: var(--text);
}

.nav-mobile-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin: 48px 0 8px;
}

.nav-mobile-header:first-of-type {
    margin-top: 0;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 110px 16px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .tools-section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        padding: 24px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .step {
        padding: 20px 16px;
    }

    .result-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stats {
        gap: 20px;
    }

    .upload-zone {
        padding: 40px 20px;
    }

    .processing-area, .result-area {
        margin-left: 16px;
        margin-right: 16px;
    }

    .tool-header h1 {
        font-size: 1.6rem;
    }

    .privacy-card {
        padding: 32px 20px;
    }

    /* Tool-specific responsive */
    .presets-grid { grid-template-columns: 1fr 1fr; }
    .custom-size { justify-content: center; }
    .exif-grid { grid-template-columns: 1fr; }
    .pdf-tabs { flex-wrap: wrap; }
    .pdf-tab { min-width: 45%; flex: unset; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .presets-grid { grid-template-columns: 1fr; }
    .palette-grid { grid-template-columns: 1fr 1fr; }
}
