/* ===========================
   Theme: Minimalist Essentialism
   =========================== */

[data-theme="minimal"] {
    --theme-toggle-bg: #ffffff;
    --theme-toggle-color: #111111;
    --dropdown-bg: #ffffff;
    --dropdown-border: #e8e8e8;
    --dropdown-text: #111111;
    --dropdown-label: #999999;
    --dropdown-hover: #f5f5f5;
    --dropdown-active: #f0f0f0;
}

[data-theme="minimal"] body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Hero */
[data-theme="minimal"] .hero {
    padding: 140px 0 120px;
    text-align: center;
    background: #ffffff;
    color: #111111;
    margin-bottom: 0;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
}

[data-theme="minimal"] .hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    word-break: break-all;
}

[data-theme="minimal"] .hero p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    word-break: keep-all;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

[data-theme="minimal"] .mobile-break {
    display: none;
}

/* App Grid */
[data-theme="minimal"] .app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 0;
    background: #e8e8e8;
}

/* App Card */
[data-theme="minimal"] .app-card {
    background: #ffffff;
    padding: 48px 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

[data-theme="minimal"] .app-card:hover {
    background: #fafafa;
}

/* App Icon */
[data-theme="minimal"] .app-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

[data-theme="minimal"] .app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App Info */
[data-theme="minimal"] .app-info {
    flex: 1;
}

[data-theme="minimal"] .app-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    color: #111111;
}

[data-theme="minimal"] .app-desc {
    font-size: 0.9375rem;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.6;
    word-break: keep-all;
}

/* Badge */
[data-theme="minimal"] .app-meta {
    margin-bottom: 20px;
}

[data-theme="minimal"] .since-badge {
    display: inline-block;
    padding: 4px 0;
    background: none;
    color: #999999;
    border: none;
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Download */
[data-theme="minimal"] .download-links {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
}

[data-theme="minimal"] .btn-badge {
    display: inline-block;
    height: 40px;
    text-decoration: none;
    opacity: 0.85;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

[data-theme="minimal"] .btn-badge:hover {
    opacity: 1;
}

[data-theme="minimal"] .google-badge,
[data-theme="minimal"] .apple-badge {
    height: 100%;
    width: auto;
    display: block;
}

/* Footer */
[data-theme="minimal"] footer {
    text-align: center;
    padding: 48px 0;
    color: #999999;
    font-size: 0.8125rem;
    font-weight: 400;
    border-top: 1px solid #e8e8e8;
    letter-spacing: 0.3px;
    background: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    [data-theme="minimal"] .hero {
        padding: 100px 0 80px;
    }

    [data-theme="minimal"] .hero h2 {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    [data-theme="minimal"] .hero p {
        font-size: 1rem;
        padding: 0 20px;
        white-space: normal;
    }

    [data-theme="minimal"] .mobile-break {
        display: block;
    }

    [data-theme="minimal"] .app-card {
        padding: 32px 20px;
        gap: 20px;
    }

    [data-theme="minimal"] .app-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 12px;
    }
}
