/* ============================================
   Do Product Support Flow - Frontend Stilleri
   ============================================ */

/* ---- Ana Başlık ---- */
.do-support-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
}

/* ---- Ana Wrapper ---- */
.do-support-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   STEPPER
   ============================================ */
.do-support-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 20px 0;
}

.do-support-stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    min-width: 80px;
}

.do-support-stepper-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #ccc;
    color: #999;
    background: #fff;
    transition: all 0.3s ease;
}

.do-support-stepper-step.active .step-number {
    background: #f5a623;
    color: #fff;
    border-color: #f5a623;
}

.do-support-stepper-step .step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
}

.do-support-stepper-step.active .step-label {
    color: #333;
}

.do-support-stepper-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
    align-self: flex-start;
    margin-top: 18px;
}

.do-support-stepper-line.active {
    background: #f5a623;
}

/* ============================================
   ALT METİN
   ============================================ */
.do-support-subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

/* ============================================
   KATEGORİ / ÜRÜN KARTLARI GRIDİ
   ============================================ */
.do-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.do-support-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
}

.do-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.do-support-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.do-support-card-title {
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* ============================================
   ÜRÜN BİLGİ KARTI
   ============================================ */
.do-support-product-info {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 30px;
}

.do-support-product-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f8f8f8;
}

.do-support-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.do-support-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px 0;
}

.do-support-product-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.do-support-product-sku {
    font-size: 13px;
    color: #999;
}

/* ============================================
   DESTEK SEÇENEKLERİ GRIDİ
   ============================================ */
.do-support-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.do-support-option-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.do-support-option-card:hover {
    border-color: #f5a623;
    background: #fff8ee;
    color: #f5a623;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.15);
}

.do-support-option-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.do-support-option-title {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   MİNİ ÜRÜN KARTI
   ============================================ */
.do-support-mini-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    align-items: center;
}

.do-support-mini-card-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f8f8f8;
}

.do-support-mini-card-info {
    flex: 1;
}

.do-support-mini-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px 0;
}

.do-support-mini-card-info p {
    font-size: 13px;
    color: #666;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.do-support-mini-card-info .sku {
    font-size: 12px;
    color: #999;
}

/* ============================================
   RESPONSİVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .do-support-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .do-support-product-image {
        width: 200px;
        height: 200px;
    }

    .do-support-product-name {
        font-size: 20px;
    }
}

/* ============================================
   RESPONSİVE — MOBİL (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    .do-support-wrap {
        padding: 15px;
    }

    /* Başlık mobil */
    .do-support-heading {
        font-size: 22px;
    }

    /* Stepper mobil */
    .do-support-stepper {
        padding: 15px 0;
    }

    .do-support-stepper-step {
        min-width: 50px;
    }

    .do-support-stepper-step .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .do-support-stepper-step .step-label {
        font-size: 10px;
    }

    .do-support-stepper-line {
        margin: 0 5px;
        margin-top: 15px;
    }

    /* Kartlar mobil */
    .do-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .do-support-card-title {
        padding: 10px 8px;
        font-size: 13px;
    }

    /* Ürün bilgi kartı mobil */
    .do-support-product-info {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .do-support-product-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .do-support-product-details {
        text-align: center;
    }

    .do-support-product-name {
        font-size: 18px;
    }

    .do-support-product-desc {
        font-size: 14px;
    }

    /* Destek seçenekleri mobil */
    .do-support-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .do-support-option-card {
        padding: 20px 15px;
    }

    /* Mini kart mobil */
    .do-support-mini-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .do-support-mini-card-image {
        width: 80px;
        height: 80px;
    }
}