/* =========================================================
   GENEL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: #090b10;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

a {
    color: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    background: #090b10;

    border-bottom: 1px solid #1c2028;

    position: relative;

    z-index: 100;
}

.logo {
    color: #7b61ff;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 3px;

    text-decoration: none;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #b8bcc7;

    text-decoration: none;

    font-size: 14px;

    transition: 0.25s;
}

nav a:hover {
    color: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(123, 97, 255, 0.18),
            transparent 35%
        ),
        #090b10;
}

.hero-content {
    max-width: 780px;
}

.small-title {
    color: #7b61ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero h1 {
    font-size:
        clamp(
            48px,
            6vw,
            76px
        );

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: #7b61ff;
}

.description {
    max-width: 590px;

    color: #9298a7;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 36px;
}

.main-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    background: #7b61ff;

    border-radius: 8px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s;
}

.main-button:hover {
    background: #8c75ff;

    transform: translateY(-3px);
}


/* =========================================================
   ÜRÜNLER
========================================================= */

.designs {
    padding: 100px 8%;
}

.section-title {
    margin-bottom: 45px;
}

.section-title p {
    color: #7b61ff;

    font-size: 12px;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 25px;
}

.product-card {
    background: #11141b;

    border: 1px solid #1c2028;

    border-radius: 14px;

    overflow: hidden;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: #7b61ff;
}

.product-image-link {
    display: block;

    text-decoration: none;
}

.product-image {
    height: 320px;

    overflow: hidden;

    background: #11141b;
}


/* =========================================================
   ÜRÜN KARTI GÖRSEL HİZASI
   YÜZ / ÜST GÖVDE ODAKLI
========================================================= */

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
        Ana değişiklik burada.

        center 18%:
        görselin üst kısmını daha fazla gösterir.
        Böylece yüz ve üst gövde karta gelir.
    */

    object-position: center 18%;

    display: block;

    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 22px;
}

.category {
    color: #7b61ff;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 22px;

    margin-bottom: 25px;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.product-bottom > span {
    font-size: 18px;

    font-weight: bold;
}

.preview-button {
    padding: 10px 18px;

    border: 1px solid #343946;

    border-radius: 7px;

    color: white;

    text-decoration: none;

    font-size: 13px;
}

.preview-button:hover {
    background: #7b61ff;
}


/* =========================================================
   NASIL ÇALIŞIR
========================================================= */

.about {
    padding: 100px 8%;

    background: #0d1016;
}

.about > p {
    color: #7b61ff;

    font-size: 12px;

    letter-spacing: 3px;
}

.about > h2 {
    font-size: 40px;

    margin-top: 10px;

    margin-bottom: 50px;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.step {
    padding: 35px;

    background: #10131a;

    border: 1px solid #1c2028;

    border-radius: 12px;
}

.step span {
    color: #7b61ff;
}

.step h3 {
    margin-top: 25px;

    margin-bottom: 12px;
}

.step p {
    color: #8c92a0;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 35px 8%;

    border-top:
        1px solid #1c2028;

    color: #606673;
}


/* =========================================================
   PREVIEW GENEL
========================================================= */

.preview-page {
    padding:
        60px 4%
        100px;
}

.back-button {
    display: inline-block;

    margin-bottom: 40px;

    color: #9298a7;

    text-decoration: none;
}

.back-button:hover {
    color: white;
}

.preview-heading {
    margin-bottom: 45px;
}

.preview-heading h1 {
    font-size: 48px;

    margin-bottom: 15px;
}

.preview-heading > p:last-child {
    color: #9298a7;
}

.preview-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 3.2fr)
        minmax(310px, 1fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   STEAM PREVIEW WINDOW
========================================================= */

.steam-preview-window {
    width: 100%;

    aspect-ratio: 16 / 9;

    position: relative;

    overflow: hidden;

    background: #000000;

    border-radius: 14px;
}


/* =========================================================
   SABİT 1920x1080 STEAM CANVAS
========================================================= */

.steam-canvas {
    --artwork-x: 510px;
    --main-width: 507px;
    --side-width: 100px;
    --artwork-height: 824px;
    --artwork-y: 256px;

    width: 1920px;

    height: 1080px;

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%)
        scale(var(--steam-scale, 1));

    transform-origin:
        center center;

    background-color: #111111;

    background-size:
        1920px 1080px;

    background-position:
        center center;

    background-repeat:
        no-repeat;
}


/* =========================================================
   STEAM KARARTMA
========================================================= */

.steam-vignette {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.7) 0%,
            rgba(0,0,0,0.12) 18%,
            rgba(0,0,0,0.03) 50%,
            rgba(0,0,0,0.12) 82%,
            rgba(0,0,0,0.7) 100%
        );
}


/* =========================================================
   AVATAR
========================================================= */

.canvas-avatar {
    position: absolute;

    left: 490px;

    top: 40px;

    width: 150px;

    height: 150px;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #7b61ff,
            #201744
        );

    border:
        3px solid #66c0f4;

    color: #ffffff;

    font-size: 44px;

    font-weight: bold;
}


/* =========================================================
   PROFİL BİLGİLERİ
========================================================= */

.canvas-user {
    position: absolute;

    left: 660px;

    top: 56px;

    z-index: 3;

    width: 420px;
}

.canvas-user h2 {
    font-size: 29px;

    font-weight: 400;

    margin-bottom: 4px;
}

.canvas-user > span {
    display: block;

    color: #bfc0c2;

    font-size: 11px;

    margin-bottom: 18px;
}

.canvas-user p {
    color: #eeeeee;

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================================
   LEVEL
========================================================= */

.canvas-level {
    position: absolute;

    left: 1090px;

    top: 55px;

    width: 265px;

    z-index: 3;
}

.level-line {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 23px;

    margin-bottom: 18px;
}

.level-line span {
    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        2px solid #d84b38;

    border-radius: 50%;

    font-size: 14px;
}

.level-card {
    min-height: 60px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    background:
        rgba(
            0,
            0,
            0,
            0.48
        );
}

.level-icon {
    width: 46px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #4b3879;

    font-weight: bold;
}

.level-card strong {
    display: block;

    font-size: 11px;

    margin-bottom: 4px;
}

.level-card small {
    color: #dddddd;

    font-size: 10px;
}


/* =========================================================
   ARTWORK
========================================================= */

.canvas-artwork {
    position: absolute;

    left: var(--artwork-x);

    top: var(--artwork-y);

    z-index: 3;

    width: calc(var(--main-width) + var(--side-width) + 5px);

    height: var(--artwork-height);

    display: flex;

    align-items: flex-start;

    gap: 5px;

    box-shadow:
        0 0 0 6px rgba(0, 0, 0, 0.52),
        0 0 0 8px rgba(255, 255, 255, 0.16),
        0 10px 30px rgba(0, 0, 0, 0.38);

    border-radius: 3px;
}

.canvas-main-art {
    width: var(--main-width);

    height: var(--artwork-height);

    flex: none;

    display: block;

    box-shadow:
        inset 0 0 0 2px
        rgba(255, 255, 255, 0.08);
}

.canvas-side-art {
    width: var(--side-width);

    height: var(--artwork-height);

    flex: none;

    display: block;

    box-shadow:
        inset 0 0 0 2px
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   SAĞ PANEL
========================================================= */

.canvas-sidebar {
    position: absolute;

    left: 1138px;

    top: 248px;

    width: 270px;

    min-height: 420px;

    z-index: 3;

    padding: 18px;

    background:
        rgba(
            0,
            0,
            0,
            0.53
        );
}

.canvas-online {
    color: #66c0f4;

    font-size: 18px;

    margin-bottom: 25px;
}

.canvas-badges-title {
    color: #dddddd;

    font-size: 14px;
}

.canvas-badges-title span {
    color: #777777;

    font-size: 20px;

    margin-left: 6px;
}

.canvas-badges {
    display: flex;

    gap: 13px;

    margin-top: 15px;

    margin-bottom: 30px;
}

.canvas-badges span {
    width: 32px;

    height: 32px;

    background:
        linear-gradient(
            135deg,
            #585858,
            #222222
        );

    border-radius: 4px;
}

.canvas-links p {
    color: #eeeeee;

    font-size: 12px;

    margin-bottom: 16px;
}

.canvas-links span {
    color: #888888;

    font-size: 19px;

    margin-left: 4px;
}


/* =========================================================
   ÜRÜN BİLGİLERİ
========================================================= */

.preview-product-info {
    position: sticky;

    top: 30px;

    padding: 35px;

    background: #11141b;

    border:
        1px solid #1c2028;

    border-radius: 14px;
}

.preview-product-info h2 {
    font-size: 34px;

    margin-bottom: 20px;
}

.preview-description {
    color: #9298a7;

    line-height: 1.7;

    margin-bottom: 30px;
}

.detail-section {
    padding: 24px 0;
    border-top: 1px solid #242936;
}

.detail-section h3,
.technical-grid + h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    display: flex;
    gap: 10px;
    color: #c5c9d2;
    font-size: 13px;
    line-height: 1.65;
}

.detail-list li + li { margin-top: 10px; }
.detail-list li::before { content: "✓"; color: #9b83ff; font-weight: 800; }
.detail-list--spark li::before { content: "✦"; }

.technical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.technical-grid div {
    min-width: 0;
    padding: 13px;
    border: 1px solid #282d38;
    border-radius: 9px;
    background: #0c0f15;
}

.technical-grid dt {
    margin-bottom: 6px;
    color: #777f90;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.technical-grid dd {
    margin: 0;
    color: #e5e0ef;
    font-size: 12px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.included {
    padding: 25px 0;

    border-bottom:
        1px solid #242936;
}

.included p {
    color: #c5c9d2;

    margin-bottom: 14px;
}

.preview-price {
    font-size: 32px;

    font-weight: bold;

    margin: 30px 0;
}

.buy-button {
    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #7b61ff;

    border-radius: 8px;

    color: white;

    text-decoration: none;

    font-weight: bold;
}

.buy-button:hover {
    background:
        #8c75ff;
}

.shopier-note {
    margin-top: 13px;

    color: #606775;

    font-size: 11px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {

    .preview-layout {
        grid-template-columns: 1fr;
    }

    .preview-product-info {
        position: static;
    }

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 760px) {

    .navbar {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .hero {
        padding:
            70px 20px;
    }

    .designs,
    .about {
        padding:
            70px 20px;
    }

    .product-grid,
    .steps {
        grid-template-columns:
            1fr;
    }

    .preview-page {
        padding:
            40px 10px
            70px;
    }

    .preview-heading {
        padding: 0 10px;
    }

    .preview-heading h1 {
        font-size: 34px;
    }

    .preview-product-info { padding: 26px; }
    .technical-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(36px, 9vw, 48px); }
    .section-title h2, .about > h2 { font-size: 32px; }

}
/* =========================================================
   ÖNİZLEME KONTROLLERİ, DURUMLAR VE ERİŞİLEBİLİRLİK
========================================================= */
[hidden] { display: none !important; }

.product-card img,
.hero-artworks img,
#main-artwork-image,
#side-artwork-image {
    -webkit-user-drag: none;
    user-select: none;
}

:focus-visible {
    outline: 3px solid #b8a9ff;
    outline-offset: 5px;
}
.skip-link {
    position: absolute;
    left: 20px;
    top: -100px;
    z-index: 200;
    padding: 12px 18px;
    background: #201744;
    border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.preview-visual { min-width: 0; }
.preview-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.preview-view-button {
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #343946;
    border-radius: 8px;
    background: #11141b;
    color: #c5c9d2;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}
.preview-view-button[aria-pressed="true"] {
    color: #ffffff;
    background: #33265c;
    border-color: #7b61ff;
}
.preview-view-button:hover { border-color: #b8a9ff; }
.preview-status, .no-script {
    padding: 16px;
    margin-top: 16px;
    border: 1px solid #766137;
    border-radius: 8px;
    background: #272115;
    color: #f3ddb5;
    line-height: 1.6;
}
.product-image { position: relative; }
.image-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    padding: 24px;
    color: #c5c9d2;
    text-align: center;
    line-height: 1.6;
}
.buy-button[aria-disabled="true"] {
    background: #292536;
    color: #c5bedc;
    cursor: default;
}
.shopier-note { color: #a3aab9; line-height: 1.6; }
.preview-button { min-height: 44px; display: inline-flex; align-items: center; }
.preview-heading h1, .preview-product-info h2 { overflow-wrap: anywhere; }

@media (min-width: 761px) and (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
    .product-card:hover, .product-card:hover .product-image img,
    .main-button:hover { transform: none; }
}

/* =========================================================
   KOLEKSİYON, FAVORİLER VE ÜRÜN DETAYLARI
========================================================= */

button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
.muted-text { color: #a3aab9; font-size: 14px; line-height: 1.65; }
.feedback-message { color: #c6baff; font-size: 12px; line-height: 1.6; overflow-wrap: anywhere; }
.feedback-message:not(:empty) { margin-top: 12px; }
.catalog-toolbar { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.catalog-filter { display: grid; gap: 8px; min-width: 210px; }
.catalog-filter label { color: #c5c9d2; font-size: 13px; }
.catalog-toolbar + .feedback-message { margin-bottom: 24px; }
.catalog-toolbar .muted-text { margin-left: auto; align-self: center; }
.secondary-button, .favorite-button {
    min-height: 44px; padding: 10px 16px; border: 1px solid #343946;
    border-radius: 8px; color: #d6d9e2; background: #141720;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; font-size: 13px; font-weight: 600; cursor: pointer;
}
.secondary-button:hover, .favorite-button:hover { border-color: #b8a9ff; background: #211b34; }
.secondary-button[aria-pressed="true"], .favorite-button[aria-pressed="true"] {
    border-color: #9b83ff; background: #302344; color: #e5dcff;
}
.secondary-button:disabled { opacity: .65; cursor: wait; }
#favorites-count { min-width: 20px; text-align: center; padding: 1px 5px; background: #ffffff12; border-radius: 5px; }
.product-card { position: relative; }
.favorite-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: none; }
.favorite-button[aria-pressed="true"] svg { fill: currentColor; }
.favorite-button--card {
    position: absolute; top: 14px; right: 14px; width: 44px; height: 44px;
    padding: 11px; border-radius: 50%; background: #0b0e16eb; color: #ffffff; z-index: 2;
}
.favorite-button--card:focus-visible { outline-offset: 3px; }
.product-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.product-tag { display: inline-block; padding: 5px 9px; background: #7b61ff12; border: 1px solid #7b61ff30; color: #c6baff; border-radius: 5px; font-size: 11px; line-height: 1.4; }
.product-info h3 { margin-bottom: 14px; }
.catalog-empty { padding: 36px; text-align: center; border: 1px dashed #343946; background: #10131a; border-radius: 14px; }
.catalog-empty h3 { font-size: 22px; margin-bottom: 12px; }
.catalog-empty p { color: #a3aab9; line-height: 1.7; margin-bottom: 22px; }
.included h3 { font-size: 16px; margin-bottom: 18px; }
.included ul { list-style: none; padding: 0; }
.included li { display: flex; gap: 9px; color: #c5c9d2; font-size: 14px; line-height: 1.65; }
.included li + li { margin-top: 12px; }
.included li::before { content: "✓"; color: #b8a9ff; }
.purchase-details { margin-top: 20px; }
.purchase-details summary { font-size: 14px; color: #d6d9e2; padding: 10px 0; cursor: pointer; line-height: 1.6; }
.purchase-details dl { padding: 12px 0; font-size: 13px; line-height: 1.65; }
.purchase-details dt { color: #eee9ff; font-weight: 700; margin: 12px 0 5px; }
.purchase-details dd { color: #a3aab9; margin: 0; }
.setup-note { color: #a3aab9; font-size: 12px; line-height: 1.7; margin: 18px 0 8px; }
.text-link { display: inline-block; color: #c6baff; line-height: 1.7; font-size: 13px; text-underline-offset: 4px; padding: 8px 0; }
.product-actions { display: grid; gap: 10px; margin-top: 22px; }
.product-actions button { width: 100%; }
.share-fallback { margin-top: 16px; }
.share-fallback label { display: block; font-size: 12px; margin-bottom: 8px; }
.share-fallback input { width: 100%; min-width: 0; }

/* PROFİL EDİTÖRÜ */
.profile-editor-panel { margin-top: 20px; border: 1px solid #292e3c; background: #11141b; border-radius: 12px; }
.profile-editor-panel > summary {
    cursor: pointer; padding: 20px; color: #ede9fa; font-size: 15px; line-height: 1.6;
}
.profile-editor-panel > summary span { color: #b8a9ff; font-size: 12px; margin-left: 8px; }
.profile-editor-content { padding: 0 22px 22px; }
.profile-editor-content > p { margin-bottom: 20px; }
.editor-fields { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; align-content: start; min-width: 0; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { color: #d6d9e2; font-size: 13px; font-weight: 600; }
input, select, textarea {
    color: #f0edf6; background: #0b0e15; border: 1px solid #343946; border-radius: 7px;
    padding: 11px 12px; min-height: 44px; max-width: 100%; min-width: 0;
}
textarea { resize: vertical; line-height: 1.6; }
input[type="file"] { width: 100%; font-size: 12px; padding: 8px; }
input[type="file"]::file-selector-button {
    background: #302344; color: #e5dcff; border: 0; border-radius: 5px;
    padding: 8px 10px; margin-right: 10px; cursor: pointer; font: inherit;
}
.form-field small { color: #a3aab9; font-size: 11px; line-height: 1.6; }
.editor-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.canvas-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.canvas-user h2, .canvas-user > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.canvas-user p { overflow-wrap: anywhere; white-space: pre-line; max-height: 90px; overflow: hidden; }

/* KURULUM REHBERİ VE SSS */
.guide-section, .faq-section { padding: 90px 8%; scroll-margin-top: 24px; }
.guide-section { background: #090b10; }
.faq-section { background: #0d1016; }
.section-intro { max-width: 780px; color: #a3aab9; line-height: 1.8; margin-bottom: 32px; }
.guide-steps { list-style: none; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; padding: 0; }
.guide-steps li { display: flex; gap: 18px; border: 1px solid #252a36; background: #11141b; padding: 28px; border-radius: 12px; }
.guide-number { color: #b8a9ff; font-size: 14px; font-weight: 700; padding-top: 4px; }
.guide-steps h3 { font-size: 18px; margin-bottom: 10px; }
.guide-steps p { color: #a3aab9; font-size: 14px; line-height: 1.8; }
.guide-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.source-note { color: #a3aab9; font-size: 12px; line-height: 1.8; margin-top: 18px; max-width: 780px; }
.source-note a { color: #c6baff; text-underline-offset: 3px; }
.faq-list { max-width: 900px; }
.faq-list details { border-bottom: 1px solid #292e3c; }
.faq-list summary { cursor: pointer; padding: 22px 8px; font-size: 16px; color: #ede9fa; line-height: 1.6; }
.faq-list details[open] summary { color: #c6baff; }
.faq-list p { padding: 0 8px 22px; color: #a3aab9; line-height: 1.8; font-size: 14px; max-width: 780px; }

@media (max-width: 1000px) {
    nav { gap: 18px; }
    .navbar { padding: 0 4%; }
}
@media (max-width: 760px) {
    .navbar { height: auto; min-height: 80px; padding: 20px; flex-wrap: wrap; gap: 20px; }
    nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
    nav a { font-size: 12px; padding: 5px 0; }
    .guide-section, .faq-section { padding: 65px 20px; }
    .guide-steps, .editor-fields { grid-template-columns: minmax(0,1fr); }
    .guide-steps li { padding: 22px; }
    .catalog-filter { min-width: 0; flex: 1 1 170px; }
    .catalog-toolbar .muted-text { flex-basis: 100%; margin-left: 0; }
    .profile-editor-panel > summary { padding: 16px; }
    .profile-editor-panel > summary span { display: block; margin-left: 0; }
    .profile-editor-content { padding: 0 16px 18px; }
}
