@charset "utf-8";
/* CSS Document */
/* =========================================
   SPORFORMA.NET FORMA TASARLAMA ARACI
========================================= */

#sfFormaTasarla {
    --sf-primary: #06285c;
    --sf-secondary: #16c1c8;
    --sf-third: #ffffff;
    --sf-dark: #07182d;
    --sf-light: #f5f7fa;
    --sf-border: #e2e8f0;

    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.sf-third-fill {
    fill: var(--sf-third);
    transition: fill 0.25s ease;
}

#sfFormaTasarla *,
#sfFormaTasarla *::before,
#sfFormaTasarla *::after {
    box-sizing: border-box;
}


/* ANA ALAN */

.sf-designer {
    width: 100%;
    max-width: 1250px;
    margin: 30px auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.10);
}


/* BAŞLIK */

.sf-designer-header {
    text-align: center;
    padding: 35px 20px 30px;
    background:
        linear-gradient(
            135deg,
            #061b3c,
            #063b67
        );

    color: #ffffff;
}

.sf-mini-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #39d5da;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sf-designer-header h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.sf-designer-header p {
    max-width: 650px;
    margin: auto;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}


/* GRID */

.sf-designer-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 680px;
}


/* SOL PANEL */

.sf-controls {
    background: #f7f9fc;
    padding: 25px;
    border-right: 1px solid var(--sf-border);
}

.sf-control-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 13px;
    margin-bottom: 18px;
    border: 1px solid var(--sf-border);
}

.sf-control-box h3 {
    margin: 0 0 17px;
    color: #07182d;
    font-size: 16px;
    font-weight: 800;
}


/* MODEL BUTONLARI */

.sf-model-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sf-model-btn,
.sf-view-btn {
    border: 1px solid #d7dee7;
    background: #ffffff;
    color: #344054;
    border-radius: 8px;
    padding: 11px 8px;
    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.sf-model-btn:hover,
.sf-view-btn:hover {
    border-color: #16c1c8;
}

.sf-model-btn.active,
.sf-view-btn.active {
    background: #06285c;
    border-color: #06285c;
    color: #ffffff;
}


/* RENK */

.sf-color-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;
    border-bottom: 1px solid #edf0f4;
}

.sf-color-row:last-child {
    border-bottom: 0;
}

.sf-color-row label {
    font-size: 14px;
    font-weight: 700;
    color: #344054;
}

.sf-color-row input[type="color"] {
    width: 58px;
    height: 38px;

    padding: 2px;
    border: 1px solid #d7dee7;
    border-radius: 7px;
    cursor: pointer;

    background: #ffffff;
}


/* INPUT */

.sf-input-label {
    display: block;

    margin: 12px 0 7px;

    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.sf-text-input {
    width: 100%;
    height: 44px;

    padding: 0 12px;

    background: #ffffff;

    border: 1px solid #d7dee7;
    border-radius: 8px;

    color: #07182d;
    font-size: 15px;

    outline: none;

    transition: 0.2s ease;
}

.sf-text-input:focus {
    border-color: #16c1c8;
    box-shadow: 0 0 0 3px rgba(22, 193, 200, 0.12);
}


/* GÖRÜNÜM BUTONLARI */

.sf-view-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


/* ÖNİZLEME */

.sf-preview {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #eef2f6 100%
        );
}

.sf-preview-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #667085;
    font-size: 12px;
    letter-spacing: 1px;
}

.sf-preview-title strong {
    color: #06285c;
    font-size: 14px;
    letter-spacing: 0;
}


/* FORMA SAHNESİ */

.sf-shirt-stage {
    width: 100%;
    max-width: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
}

#sfJersey {
    display: block;
    width: 100%;
    height: auto;

    overflow: visible;

    filter:
        drop-shadow(
            0 15px 15px rgba(0,0,0,0.12)
        );
}


/* SVG RENKLER */

.sf-primary-fill {
    fill: var(--sf-primary);
    transition: fill 0.25s ease;
}

.sf-secondary-fill {
    fill: var(--sf-secondary);
    transition: fill 0.25s ease;
}

.sf-shadow {
    fill: rgba(0, 0, 0, 0.15);
}


/* FORMA YAZILARI */

.sf-front-brand {
    fill: #ffffff;

    font-size: 31px;
    font-weight: 900;

    letter-spacing: 2px;
}

.sf-player-name {
    fill: #ffffff;

    font-size: 35px;
    font-weight: 900;

    letter-spacing: 2px;
}

.sf-player-number {
    fill: #ffffff;

    font-size: 180px;
    font-weight: 900;
}


/* ALT NOT */

.sf-preview-message {
    background: #ffffff;

    padding: 10px 17px;

    border: 1px solid var(--sf-border);
    border-radius: 30px;

    color: #667085;

    font-size: 12px;
    text-align: center;
}


/* MOBİL */

@media (max-width: 900px) {

    .sf-designer {
        margin: 10px auto;
        border-radius: 10px;
    }

    .sf-designer-grid {
        grid-template-columns: 1fr;
    }

    .sf-controls {
        border-right: 0;
        border-bottom: 1px solid var(--sf-border);
    }

    .sf-preview {
        min-height: 570px;
    }

}


@media (max-width: 500px) {

    .sf-designer-header h1 {
        font-size: 27px;
    }

    .sf-designer-header p {
        font-size: 14px;
    }

    .sf-controls {
        padding: 15px;
    }

    .sf-preview {
        padding: 20px 10px;
        min-height: 500px;
    }

    .sf-model-buttons {
        grid-template-columns: 1fr;
    }

    .sf-shirt-stage {
        max-width: 420px;
    }

}
/* =========================================
   FORMA DESEN SEÇİMİ
========================================= */

.sf-pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sf-pattern-btn {
    border: 1px solid #d7dee7;
    background: #ffffff;
    border-radius: 10px;
    padding: 7px;
    cursor: pointer;
    transition: 0.2s ease;
}

.sf-pattern-btn:hover {
    border-color: #16c1c8;
    transform: translateY(-2px);
}

.sf-pattern-btn.active {
    border-color: #06285c;
    box-shadow: 0 0 0 2px rgba(6, 40, 92, 0.10);
}

.sf-pattern-btn small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #344054;
}

.sf-pattern-thumb {
    display: block;
    width: 100%;
    height: 70px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background-color: #06285c;
}


/* DESEN 1 */

.sf-pattern-thumb.pattern1 {
    background:
        linear-gradient(
            75deg,
            #06285c 0%,
            #06285c 35%,
            #16c1c8 35%,
            #16c1c8 53%,
            #ffffff 53%,
            #ffffff 60%,
            #06285c 60%
        );
}


/* DESEN 2 */

.sf-pattern-thumb.pattern2 {
    background:
        linear-gradient(
            135deg,
            #06285c 0%,
            #06285c 45%,
            #16c1c8 45%,
            #16c1c8 65%,
            #06285c 65%
        );
}


/* DESEN 3 */

.sf-pattern-thumb.pattern3 {
    background:
        linear-gradient(
            90deg,
            #06285c 0%,
            #06285c 28%,
            #16c1c8 28%,
            #16c1c8 48%,
            #ffffff 48%,
            #ffffff 52%,
            #06285c 52%
        );
}


/* DESEN 4 */

.sf-pattern-thumb.pattern4 {
    background:
        linear-gradient(
            115deg,
            #06285c 0%,
            #06285c 30%,
            #16c1c8 30%,
            #16c1c8 42%,
            #06285c 42%,
            #06285c 62%,
            #ffffff 62%,
            #ffffff 69%,
            #06285c 69%
        );
}


/* DESEN 5 */

.sf-pattern-thumb.pattern5 {
    background:
        repeating-linear-gradient(
            135deg,
            #06285c 0px,
            #06285c 12px,
            #16c1c8 12px,
            #16c1c8 24px
        );
}


/* DESEN 6 */

.sf-pattern-thumb.pattern6 {
    background:
        linear-gradient(
            160deg,
            #06285c 0%,
            #06285c 50%,
            #16c1c8 50%,
            #16c1c8 70%,
            #ffffff 70%,
            #ffffff 76%,
            #06285c 76%
        );
}


@media (max-width: 500px) {

    .sf-pattern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* =========================================
   LOGO VE SPONSOR
========================================= */

.sf-upload-section {
    padding: 14px 0;
    border-bottom: 1px solid #edf0f4;
}

.sf-upload-section:first-of-type {
    padding-top: 0;
}

.sf-upload-section:last-of-type {
    border-bottom: 0;
}

.sf-upload-title {
    display: block;

    margin-bottom: 9px;

    color: #344054;

    font-size: 13px;
    font-weight: 700;
}


/* DOSYA YÜKLEME BUTONU */

.sf-upload-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 42px;

    margin: 0;

    border: 1px dashed #16c1c8;
    border-radius: 8px;

    background: #f3fcfc;

    color: #06285c;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.sf-upload-button:hover {
    background: #e8fafa;
    border-color: #06285c;
}

.sf-upload-button input {
    display: none;
}


/* LOGO KONTROLLERİ */

.sf-logo-controls {
    margin-top: 13px;
}

.sf-logo-controls label {
    display: block;

    margin-bottom: 7px;

    color: #667085;

    font-size: 12px;
    font-weight: 700;
}


/* BOYUT SLIDER */

.sf-logo-controls input[type="range"] {
    width: 100%;
    cursor: pointer;
}


/* KALDIR BUTONU */

.sf-remove-logo {
    width: 100%;

    margin-top: 9px;
    padding: 9px 10px;

    border: 1px solid #e2e8f0;
    border-radius: 7px;

    background: #ffffff;

    color: #b42318;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.sf-remove-logo:hover {
    background: #fff4f2;
    border-color: #f5b7b1;
}


/* BİLGİ NOTU */

.sf-drag-info {
    margin-top: 12px;

    padding: 10px;

    border-radius: 7px;

    background: #f1f8ff;

    color: #475467;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}
/* =========================================
   TASARIMI KAYDET / WHATSAPP
========================================= */

.sf-finish-box {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f5fbfc
        );
}

.sf-finish-text {
    margin: 0 0 15px;

    color: #667085;

    font-size: 12px;
    line-height: 1.6;
}


/* PNG KAYDET */

.sf-download-button {
    width: 100%;

    padding: 13px 10px;

    border: 0;
    border-radius: 8px;

    background: #06285c;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.sf-download-button:hover {
    background: #0b3c75;
    transform: translateY(-1px);
}


/* WHATSAPP */

.sf-whatsapp-design-button {
    width: 100%;

    margin-top: 10px;

    padding: 13px 10px;

    border: 0;
    border-radius: 8px;

    background: #25D366;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;
}

.sf-whatsapp-design-button:hover {
    background: #1fbd5b;
    transform: translateY(-1px);
}


/* DURUM MESAJI */

.sf-export-status {
    display: none;

    margin-top: 10px;
    padding: 9px 10px;

    border-radius: 7px;

    background: #eff8ff;

    color: #344054;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}


/* İŞLEM SIRASINDA */

.sf-download-button:disabled,
.sf-whatsapp-design-button:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}
/* =========================================
   CANLI ÖNİZLEME DÜZENLEMESİ
   Forma daha büyük + daha yukarıda
========================================= */

.sf-preview {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 30px 20px;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #eef2f6 100%
        );

    min-height: 720px;
}


/* CANLI ÖNİZLEME BAŞLIĞI */

.sf-preview-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 5px;

    color: #667085;

    font-size: 12px;
    letter-spacing: 1px;
}

.sf-preview-title strong {
    color: #06285c;

    font-size: 14px;
    letter-spacing: 0;
}


/* FORMANIN BULUNDUĞU ALAN */

.sf-shirt-stage {
    width: 100%;
    max-width: 650px;

    height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
}


/* FORMA */

#sfJersey {
    display: block;

    width: 100%;
    max-width: 620px;
    height: auto;

    overflow: visible;

    transform: translateY(-20px);

    filter:
        drop-shadow(
            0 16px 16px rgba(0, 0, 0, 0.12)
        );
}


/* ALT BİLGİ */

.sf-preview-message {
    margin-top: 0;

    background: #ffffff;

    padding: 10px 17px;

    border: 1px solid #e2e8f0;
    border-radius: 30px;

    color: #667085;

    font-size: 12px;

    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sf-preview {
        min-height: 620px;
        padding: 25px 15px 20px;
    }

    .sf-shirt-stage {
        height: 520px;
        max-width: 560px;
    }

    #sfJersey {
        max-width: 540px;

        transform: translateY(-10px);
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 500px) {

    .sf-preview {
        min-height: 500px;

        padding:
            20px
            10px
            15px;
    }

    .sf-shirt-stage {
        height: 420px;

        max-width: 420px;
    }

    #sfJersey {
        max-width: 410px;

        transform: translateY(-5px);
    }

    .sf-preview-title {
        padding: 0 5px;

        font-size: 10px;
    }

    .sf-preview-title strong {
        font-size: 12px;
    }

}
/* FORMA DERİNLİK EFEKTİ */

#sfJersey {
    filter:
        drop-shadow(
            0 18px 22px rgba(0, 0, 0, 0.16)
        );
}

.sf-primary-fill {
    transition:
        fill 0.25s ease;
}

.sf-secondary-fill {
    transition:
        fill 0.25s ease;
}
.sf-pattern-thumb.pattern7 {
    background:
        linear-gradient(
            90deg,
            #06285c 0%,
            #06285c 38%,
            #16c1c8 38%,
            #16c1c8 62%,
            #06285c 62%
        );
}

.sf-pattern-thumb.pattern8 {
    background:
        linear-gradient(
            145deg,
            #06285c 0%,
            #06285c 35%,
            #16c1c8 35%,
            #16c1c8 50%,
            #ffffff 50%,
            #ffffff 57%,
            #06285c 57%
        );
}

.sf-pattern-thumb.pattern9 {
    background:
        linear-gradient(
            0deg,
            #16c1c8 0%,
            #16c1c8 28%,
            #ffffff 28%,
            #ffffff 36%,
            #06285c 36%
        );
}

.sf-pattern-thumb.pattern10 {
    background:
        repeating-linear-gradient(
            90deg,
            #06285c 0px,
            #06285c 18px,
            #16c1c8 18px,
            #16c1c8 28px
        );
}

.sf-pattern-thumb.pattern11 {
    background:
        linear-gradient(
            135deg,
            #16c1c8 0%,
            #16c1c8 22%,
            #06285c 22%,
            #06285c 65%,
            #ffffff 65%,
            #ffffff 72%,
            #06285c 72%
        );
}

.sf-pattern-thumb.pattern12 {
    background:
        linear-gradient(
            160deg,
            #06285c 0%,
            #06285c 42%,
            #16c1c8 42%,
            #16c1c8 58%,
            #06285c 58%
        );
}
/* =========================================
   YAZI STİLİ
========================================= */

.sf-select {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    padding: 0 12px;
    border: 1px solid #d8dee7;
    border-radius: 8px;
    background: #fff;
    color: #10233f;
    font-size: 14px;
    outline: none;
}

.sf-select:focus {
    border-color: #16b8c4;
}

.sf-text-color-title {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sf-text-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sf-text-color {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 3px solid #e0e5eb;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s ease;
}

.sf-text-color:hover {
    transform: scale(1.08);
}

.sf-text-color.active {
    border-color: #0a376c;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px #16b8c4;
}

.sf-custom-text-color {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #edf0f4;
}

#sfTextColor {
    width: 54px;
    height: 38px;
    padding: 3px;
    border: 1px solid #d8dee7;
    border-radius: 7px;
    cursor: pointer;
}
/* =========================================
   İSİM / NUMARA BOYUTU
========================================= */

.sf-text-size-group {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf0f4;
}

.sf-text-size-group label {
    display: block;
    margin: 12px 0 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.sf-range-row {
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
    gap: 10px;
}

.sf-range-row input[type="range"] {
    width: 100%;
    cursor: pointer;
}

.sf-range-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 6px;
    background: #f4f7fa;
    color: #06285c;
    font-size: 12px;
    font-weight: 800;
}
/* =========================================
   TAKIM KADROSU DOSYA YÜKLEME
========================================= */

.sf-roster-description {
    margin: 0 0 15px;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}


.sf-roster-upload {
    width: 100%;
    min-height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 18px;

    border: 2px dashed #16c1c8;
    border-radius: 12px;

    background: #f5fcfc;

    color: #06285c;

    text-align: center;

    cursor: pointer;

    transition: 0.2s ease;
}


.sf-roster-upload:hover {
    border-color: #06285c;
    background: #eefafa;
    transform: translateY(-1px);
}


.sf-roster-upload input {
    display: none;
}


.sf-roster-upload-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    background: #06285c;

    color: #ffffff;

    font-size: 23px;
    font-weight: 800;
}


.sf-roster-upload strong {
    font-size: 14px;
    font-weight: 800;
}


.sf-roster-upload small {
    margin-top: 4px;

    color: #667085;

    font-size: 11px;
}


.sf-roster-info {
    margin-top: 12px;
}


.sf-roster-file {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 12px;

    border: 1px solid #dfe6ed;
    border-radius: 9px;

    background: #ffffff;
}


.sf-roster-file strong {
    display: block;

    max-width: 230px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #06285c;

    font-size: 12px;
}


.sf-roster-file small {
    display: block;

    margin-top: 3px;

    color: #667085;

    font-size: 10px;
}


.sf-roster-remove {
    width: 30px;
    height: 30px;

    border: 0;
    border-radius: 50%;

    background: #fff1f0;

    color: #d92d20;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
}


.sf-roster-remove:hover {
    background: #fee4e2;
}


.sf-roster-count {
    margin-top: 8px;

    padding: 9px 11px;

    border-radius: 8px;

    background: #ecfdf3;

    color: #067647;

    font-size: 11px;
    font-weight: 700;

    text-align: center;
}


.sf-roster-help {
    display: flex;
    flex-direction: column;

    margin-top: 14px;

    padding: 11px;

    border-radius: 8px;

    background: #f5f7fa;

    color: #667085;

    font-size: 10px;
    line-height: 1.6;
}


.sf-roster-help strong {
    color: #344054;
}
.sf-roster-whatsapp-button {
    margin-top: 10px;
    background: #128c7e;
}

.sf-roster-whatsapp-button:hover {
    background: #0f756a;
}
/* =====================================================
   TAKIM KADROSU - YENİ DİNAMİK SİSTEM
===================================================== */

.sf-roster-box {
    overflow: hidden;
}


/* AÇIKLAMA */

.sf-roster-description {
    margin: 0 0 16px;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}


/* FORMA ADEDİ */

.sf-quantity-box {
    margin-bottom: 12px;
}

.sf-quantity-box .sf-input-label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.sf-quantity-input {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #d8dee7;
    border-radius: 8px;
    background: #ffffff;
    color: #06285c;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    transition: 0.2s ease;
}

.sf-quantity-input:focus {
    border-color: #16c1c8;
    box-shadow: 0 0 0 3px rgba(22, 193, 200, 0.12);
}


/* MİNİMUM SİPARİŞ BİLGİSİ */

.sf-min-order-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 18px;
    padding: 11px 12px;
    border: 1px solid #d5f3f4;
    border-radius: 8px;
    background: #f1fbfc;
}

.sf-min-order-info strong {
    color: #087f86;
    font-size: 12px;
}

.sf-min-order-info span {
    color: #667085;
    font-size: 11px;
    line-height: 1.5;
}


/* KADRO BAŞLIĞI */

.sf-roster-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid #edf0f4;
}

.sf-roster-header strong {
    display: block;
    color: #06285c;
    font-size: 14px;
}

.sf-roster-header small {
    display: block;
    margin-top: 2px;
    color: #16a6af;
    font-size: 11px;
    font-weight: 700;
}


/* OYUNCU SATIRLARI */

.sf-roster-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* TEK OYUNCU KARTI */

.sf-player-row {
    display: grid;
    grid-template-columns: 38px minmax(150px, 1fr) 90px 100px;
    gap: 8px;
    align-items: end;

    padding: 11px;

    border: 1px solid #e3e8ef;
    border-radius: 10px;

    background: #ffffff;

    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);

    transition: 0.2s ease;
}

.sf-player-row:hover {
    border-color: #b7e7e9;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
}


/* SIRA NUMARASI */

.sf-player-row-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 1px;

    border-radius: 50%;

    background: #06285c;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}


/* ALANLAR */

.sf-player-field {
    min-width: 0;
}

.sf-player-field label {
    display: block;
    margin-bottom: 5px;

    color: #667085;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}


/* İSİM / NUMARA INPUT */

.sf-player-field input,
.sf-player-field select {
    width: 100%;
    height: 38px;

    padding: 0 9px;

    border: 1px solid #d8dee7;
    border-radius: 7px;

    background: #ffffff;

    color: #101828;

    font-size: 12px;

    outline: none;

    transition: 0.2s ease;
}

.sf-player-field input:focus,
.sf-player-field select:focus {
    border-color: #16c1c8;
    box-shadow: 0 0 0 2px rgba(22, 193, 200, 0.10);
}


/* İSİM ALANI */

.sf-player-name-input {
    font-weight: 600;
}


/* NUMARA ALANI */

.sf-player-number-input {
    text-align: center;
    font-weight: 700;
}


/* BEDEN MENÜSÜ */

.sf-player-size-input {
    cursor: pointer;
    font-weight: 700;
    color: #06285c;
}


/* ALT AÇIKLAMA */

.sf-roster-help {
    display: flex;
    flex-direction: column;
    gap: 2px;

    margin-top: 14px;

    padding: 11px 12px;

    border-radius: 8px;

    background: #f5f7fa;

    color: #667085;

    font-size: 10px;
    line-height: 1.55;
}

.sf-roster-help strong {
    color: #344054;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .sf-player-row {
        grid-template-columns: 36px minmax(130px, 1fr) 78px 90px;
        gap: 7px;
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 767px) {

    .sf-roster-description {
        font-size: 12px;
    }

    .sf-quantity-input {
        height: 44px;
    }

    .sf-player-row {
        grid-template-columns: 34px 1fr 72px;
        grid-template-areas:
            "number name name"
            "number jersey size";

        align-items: end;

        gap: 8px;

        padding: 10px;
    }


    .sf-player-row-number {
        grid-area: number;

        align-self: stretch;

        width: 32px;
        height: auto;
        min-height: 78px;

        border-radius: 8px;
    }


    .sf-player-name-field {
        grid-area: name;
    }


    .sf-player-number-field {
        grid-area: jersey;
    }


    .sf-player-size-field {
        grid-area: size;
    }


    .sf-player-field input,
    .sf-player-field select {
        height: 40px;
        font-size: 13px;
    }


    .sf-player-field label {
        font-size: 9px;
    }

}


/* =====================================================
   ÇOK KÜÇÜK EKRAN
===================================================== */

@media (max-width: 420px) {

    .sf-player-row {
        grid-template-columns: 30px 1fr 68px;
        gap: 6px;
        padding: 8px;
    }

    .sf-player-row-number {
        width: 29px;
    }

    .sf-player-field input,
    .sf-player-field select {
        padding: 0 7px;
        font-size: 12px;
    }

}
@media (min-width: 768px) {

    .sf-player-row {
        display: grid !important;

        grid-template-columns:
            42px
            minmax(180px, 1fr)
            90px
            100px !important;

        grid-template-areas:
            "no name number size" !important;

        gap: 10px !important;

        align-items: end !important;

        width: 100% !important;

        box-sizing: border-box !important;

        padding: 12px !important;
    }


    .sf-player-row-number {
        grid-area: no !important;

        width: 36px !important;
        height: 40px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 50% !important;
    }


    .sf-player-name-field {
        grid-area: name !important;
        min-width: 180px !important;
    }


    .sf-player-number-field {
        grid-area: number !important;
        min-width: 0 !important;
    }


    .sf-player-size-field {
        grid-area: size !important;
        min-width: 0 !important;
    }


    .sf-player-field {
        min-width: 0 !important;
    }


    .sf-player-field label {
        display: block !important;

        width: 100% !important;

        margin-bottom: 5px !important;

        color: #667085 !important;

        font-size: 9px !important;
        font-weight: 700 !important;

        text-transform: uppercase !important;

        white-space: nowrap !important;
    }


    .sf-player-field input,
    .sf-player-field select {
        width: 100% !important;
        min-width: 0 !important;

        height: 40px !important;

        box-sizing: border-box !important;

        padding: 0 9px !important;

        border: 1px solid #d8dee7 !important;
        border-radius: 7px !important;

        background: #ffffff !important;
    }


    .sf-player-name-input {
        text-align: left !important;
    }


    .sf-player-number-input,
    .sf-player-size-input {
        text-align: center !important;
    }

}
/* =====================================================
   MOBİLDE CANLI ÖNİZLEMEYİ EN ÜSTE AL
===================================================== */

@media (max-width: 767px) {

    .sf-designer-grid {
        display: flex;
        flex-direction: column;
    }

    .sf-preview {
        order: 1;
    }

    .sf-controls {
        order: 2;
    }

}
@media (max-width: 767px) {

    .sf-player-row {
        display: grid !important;
        grid-template-columns: 38px 1fr 1fr !important;
        grid-template-areas:
            "no name name"
            "no number size" !important;

        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: end !important;
    }

    .sf-player-row-number {
        grid-area: no !important;

        width: 34px !important;
        min-width: 34px !important;
        height: 100% !important;
        min-height: 82px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 8px !important;
    }

    .sf-player-name-field {
        grid-area: name !important;
        min-width: 0 !important;
    }

    .sf-player-number-field {
        grid-area: number !important;
        min-width: 0 !important;
    }

    .sf-player-size-field {
        grid-area: size !important;
        min-width: 0 !important;
    }

    .sf-player-field input,
    .sf-player-field select {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

}
/* =====================================================
   KADRO ALANI - TÜM EKRANLARDA TAŞMASIZ DÜZEN
===================================================== */

.sf-player-row {
    display: grid !important;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    grid-template-areas:
        "no name name"
        "no number size" !important;

    gap: 8px !important;

    width: 100% !important;
    max-width: 100% !important;

    padding: 10px !important;

    box-sizing: border-box !important;

    align-items: end !important;

    overflow: hidden !important;
}


/* SIRA NUMARASI */

.sf-player-row-number {
    grid-area: no !important;

    width: 34px !important;
    height: 100% !important;
    min-height: 82px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    align-self: stretch !important;

    border-radius: 8px !important;
}


/* OYUNCU ADI */

.sf-player-name-field {
    grid-area: name !important;

    min-width: 0 !important;
    width: 100% !important;
}


/* NUMARA */

.sf-player-number-field {
    grid-area: number !important;

    min-width: 0 !important;
    width: 100% !important;
}


/* BEDEN */

.sf-player-size-field {
    grid-area: size !important;

    display: block !important;

    min-width: 0 !important;
    width: 100% !important;
}


/* TÜM INPUT VE SELECTLER */

.sf-player-field input,
.sf-player-field select {

    display: block !important;

    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    height: 40px !important;

    box-sizing: border-box !important;

    padding: 0 9px !important;

    border: 1px solid #d8dee7 !important;
    border-radius: 7px !important;

    background: #ffffff !important;

    font-size: 12px !important;
}


/* BAŞLIKLAR */

.sf-player-field label {

    display: block !important;

    margin-bottom: 5px !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    white-space: nowrap !important;
}


/* NUMARA VE BEDEN */

.sf-player-number-input,
.sf-player-size-input {
    text-align: center !important;
}
.sf-pattern-thumb.pattern13 {
    position: relative;
    overflow: hidden;
    background: var(--sf-primary);
}

.sf-pattern-thumb.pattern13::before {
    content: "";
    position: absolute;

    width: 85%;
    height: 120%;

    left: -25%;
    top: -10%;

    border: 12px solid var(--sf-secondary);
    border-right-color: transparent;
    border-radius: 50%;

    transform: rotate(-15deg);
}

.sf-pattern-thumb.pattern13::after {
    content: "";
    position: absolute;

    width: 70%;
    height: 90%;

    left: 5%;
    top: 15%;

    border: 5px solid var(--sf-third);
    border-right-color: transparent;
    border-radius: 50%;

    transform: rotate(-18deg);
}

/* =====================================================
   MOBİL - MİNİ CANLI FORMA TAKİP SİSTEMİ
   MASAÜSTÜ KODUNA DOKUNMA :)
===================================================== */

@media (max-width: 991px) {

    .sf-preview.sf-mobile-follow {

        position: fixed !important;

        top: 75px !important;
        right: 10px !important;
        left: auto !important;

        width: 165px !important;
        height: 205px !important;
        min-height: 0 !important;

        padding: 8px !important;
        margin: 0 !important;

        background: rgba(255,255,255,0.97) !important;

        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;

        box-shadow:
            0 8px 25px rgba(0,0,0,0.18) !important;

        z-index: 9999 !important;

        overflow: hidden !important;

        transform: none !important;

        transition:
            width .2s ease,
            height .2s ease,
            opacity .2s ease !important;
    }


    /* Mini kutudaki başlık */

    .sf-preview.sf-mobile-follow .sf-preview-title {

        font-size: 8px !important;

        margin: 0 0 3px !important;

        padding: 0 !important;
    }


    .sf-preview.sf-mobile-follow .sf-preview-title strong {

        font-size: 9px !important;
    }


    /* Forma alanı */

    .sf-preview.sf-mobile-follow .sf-shirt-stage {

        width: 100% !important;

        height: 160px !important;

        min-height: 0 !important;

        margin: 0 auto !important;

        padding: 0 !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;
    }


    /* Forma */

    .sf-preview.sf-mobile-follow #sfJersey {

        width: 145px !important;

        max-width: 145px !important;

        height: auto !important;

        transform: none !important;
    }


    /* Alttaki açıklamayı mini görünümde gizle */

    .sf-preview.sf-mobile-follow .sf-preview-message {

        display: none !important;
    }

}
/* =====================================================
   FORMA TASARLAMA
   FOOTER TAŞMASINI ENGELLE
===================================================== */

.sf-designer {
    position: relative;
}

.sf-designer-grid {
    position: relative;
}

@media (min-width: 992px) {

    .sf-preview {
        align-self: flex-start;
    }

}