/* MotoSocial ürün sayfası teması */

:root {
    --ms-bg: #0c0a09;
    --ms-surface: #1c1917;
    --ms-text: #fafaf9;
    --ms-muted: #a8a29e;
    --ms-accent: #ea580c;
    --ms-accent-hover: #f97316;
    --ms-card-border: rgba(255, 255, 255, 0.08);
}

body.theme-motosocial {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--ms-bg);
    color: var(--ms-text);
    padding-top: 40px;
    line-height: 1.6;
}

.ms-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

.ms-hero {
    text-align: center;
    padding: 2.5rem 0 2rem;
}

.ms-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ms-hero .ms-tagline {
    font-size: 1.15rem;
    color: var(--ms-muted);
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.ms-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.ms-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--ms-surface);
    color: var(--ms-text);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--ms-card-border);
    font-weight: 600;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.ms-store-btn:hover {
    border-color: var(--ms-accent);
    background: rgba(234, 88, 12, 0.12);
}

.ms-store-btn.is-placeholder {
    opacity: 0.65;
    cursor: default;
}

.ms-section {
    margin-top: 3rem;
}

.ms-section h2 {
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
    font-weight: 700;
}

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

.ms-feature {
    background: var(--ms-surface);
    border: 1px solid var(--ms-card-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.ms-feature i {
    color: var(--ms-accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.ms-feature h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.ms-feature p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ms-muted);
}

.ms-screens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.ms-screen-slot {
    aspect-ratio: 9 / 19.5;
    max-height: 420px;
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.12), rgba(0, 0, 0, 0.5));
    border-radius: 24px;
    border: 1px solid var(--ms-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ms-muted);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.75rem;
}

.ms-screen-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.ms-note {
    font-size: 0.8125rem;
    color: var(--ms-muted);
    margin-top: 2.5rem;
    text-align: center;
}
