/* Bilgi / form sayfaları — sipariş (order) kutulu düzen ile uyumlu */

html body.site-shell-app.info-page-view {
    background: #f0f2f5 !important;
}

.info-page-shell {
    width: 100%;
    max-width: 100%;
    padding: 0 0 16px;
    margin-top: 0;
    box-sizing: border-box;
}

.info-card {
    width: 100%;
    margin: 0 0 12px;
    padding: 0 16px 16px;
    background: #fff;
    border: 1px solid rgba(40, 52, 88, 0.07);
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(40, 52, 88, 0.08);
    box-sizing: border-box;
    overflow: hidden;
}

.info-page-shell > .info-card:first-child {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
}

.info-card__title {
    margin: 0 -16px 16px;
    padding: 16px 14px;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, #66c512 0%, #5fbd0f 100%);
    border-radius: 0;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.info-card__title i {
    margin-right: 8px;
    opacity: 0.95;
}

.info-card__body {
    color: #334155;
    font-size: 17px;
    line-height: 1.6;
    text-align: left;
}

.info-card__body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 16px;
    border-radius: 10px;
}

.info-card__body .info-block-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff7f00;
    margin: 0 0 8px;
}

.info-card__body p {
    margin: 0 0 16px;
    color: #475569;
}

.info-card__body h3,
.info-card__body h4 {
    color: #283458;
    font-weight: 700;
    margin: 16px 0 8px;
}

.info-card__body ul,
.info-card__body ol {
    margin: 0 0 16px;
    padding-left: 1.25rem;
}

.info-card__body a {
    color: #5fbd0f;
    font-weight: 600;
}

.info-card__body .info-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
    border: none;
}

/* Uyarılar */
.info-alert {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.45;
}

.info-alert--error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.info-alert--success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

/* Form */
.info-form .form-group {
    margin: 0 0 14px;
}

.info-form label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #283458;
    margin-bottom: 6px;
}

.info-form .form-control {
    width: 100%;
    height: 50px;
    font-size: 18px;
    border-radius: 20px;
    border: 1px solid #ced4da;
    background: #fff;
    color: #283458;
    box-sizing: border-box;
}

.info-form textarea.form-control {
    height: auto;
    min-height: 90px;
    padding: 12px 14px;
    border-radius: 16px;
    resize: vertical;
}

.info-form select.form-control {
    height: 50px;
    padding: 0 14px;
}

.info-form .form-control:focus {
    border-color: #5fbd0f;
    box-shadow: 0 0 0 3px rgba(95, 189, 15, 0.15);
    outline: none;
}

.info-form__submit {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #72c918 0%, #5fbd0f 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(95, 189, 15, 0.28);
}

/* Alt butonlar */
.info-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 14px;
}

.info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.info-btn--orange {
    background: linear-gradient(180deg, #ff9220 0%, #ff7f00 100%);
    box-shadow: 0 4px 14px rgba(255, 127, 0, 0.25);
}

.info-btn--secondary {
    background: linear-gradient(180deg, #3d4f6f 0%, #283458 100%);
    box-shadow: 0 4px 14px rgba(40, 52, 88, 0.2);
}

.info-btn--green {
    background: linear-gradient(180deg, #72c918 0%, #5fbd0f 100%);
    box-shadow: 0 4px 14px rgba(95, 189, 15, 0.22);
}

.info-actions--in-card {
    padding: 16px 0 0;
    margin-top: 8px;
}

@media (max-width: 479px) {
    html body.site-shell-app.info-page-view {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .info-page-shell {
        padding: 0 0 12px;
    }

    .info-card {
        margin: 0 0 8px;
        padding: 0 14px 14px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: none;
    }

    .info-card__title {
        margin: 0 -14px 14px;
        padding: 14px 12px;
        font-size: 22px;
    }

    .info-form label {
        font-size: 16px;
    }

    .info-form .form-control {
        height: 48px;
        font-size: 16px;
    }

    .info-form__submit {
        font-size: 18px;
    }

    .info-actions {
        padding: 0 12px;
    }
}
