.list-confirm {
    margin-top: 60px;
    padding: 60px 0 80px;
}

.list-confirm__hero,
.list-confirm__body {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.list-confirm__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.list-confirm__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background: #fff;
}

.list-confirm__hero-body {
    margin: 0;
    padding: 0 0 0 0;
}

.list-confirm__hero-body h1 {
    font-size: 24px;
    margin: 0;
    padding-bottom: 0;
    line-height: 1.3;
}

.list-confirm__form {
    background: transparent;
}

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

.list-confirm__card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06); */
    border: solid 1px #d0d0d0;
}

.list-confirm__card h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.list-confirm__card-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.list-confirm__card-label span {
    font-size: 12px;
    margin-left: 6px;
}

.list-confirm__card-value {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.list-confirm__card-placeholder {
    font-size: 14px;
    color: #999;
}

.list-confirm__card--summary dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.list-confirm__card--summary dl div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    font-size: 15px;
    color: #333;
}

.list-confirm__card--summary dt {
    font-weight: 600;
}

.list-confirm__card--summary dd {
    margin: 0;
    font-weight: 700;
}

.list-confirm__total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.list-confirm__total dt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-confirm__total dt span {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.list-confirm__total dd {
    font-size: 24px;
    font-weight: 700;
    color: #d42232;
}

.list-confirm__deadline,
.list-confirm__external-note {
    font-size: 13px;
    color: #555;
    margin-top: 16px;
    line-height: 1.5;
}

.list-confirm__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    justify-content: center;
}

.list-confirm__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to bottom right, #f23041, #d42232);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-height: 50px;
    min-width: 180px;
}

.list-confirm__submit[disabled] {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.8;
}

.list-confirm__submit-label {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-size: 14px;
}

.list-confirm__submit-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: inherit;
}

.list-confirm__submit-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.list-confirm__actions .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 10px;
    margin: 0;
    width: auto;
    font-size: 16px;
    color: #d42232;
}

.list-confirm__actions .btn-white a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    width: 100%;
    font-size: inherit;
    color: inherit;
}

.list-confirm__actions .btn-white a:hover,
.list-confirm__actions .btn-white a:focus,
.list-confirm__actions .btn-white a:visited {
    color: inherit;
}

.list-confirm__back-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    color: inherit;
}

.list-confirm__alert {
    max-width: 960px;
    margin: 0 16px 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.list-confirm__alert--success {
    background: #ecf9ee;
    color: #1b5e20;
}

.list-confirm__alert--info {
    background: #e8f1ff;
    color: #0d47a1;
}

.list-confirm__alert--danger {
    background: #fdecea;
    color: #b71c1c;
}

@media (max-width: 960px) {
    .list-confirm {
        padding-top: 100px;
    }

    .list-confirm__hero,
    .list-confirm__body {
        padding: 0 16px;
    }

    .list-confirm__hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .list-confirm__grid {
        grid-template-columns: 1fr;
    }

    .list-confirm__submit {
        width: 100%;
    }

    .list-confirm__actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .list-confirm__actions .btn-white {
        width: 100%;
        text-align: center;
        font-size: 16px;
        height: 50px;
    }

    .list-confirm__actions .btn-white a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: inherit;
        color: inherit;
    }

    .list-confirm__back-label {
        justify-content: center;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .list-confirm {
        padding-top: 20px;
    }

    .list-confirm__hero,
    .list-confirm__body {
        margin-bottom: 24px;
    }

    .list-confirm__card {
        padding: 20px;
    }

    .list-confirm__card h2 {
        font-size: 16px;
        padding: 10px 0;
    }

    .list-confirm__hero-body h1 {
        font-size: 18px;
    }

    .list-confirm__hero-inner {
        gap: 16px;
    }

    .list-confirm__visual {
        display: none;
    }

    .list-confirm .list-ticket-hero__badge {
        display: none;
    }

    .list-confirm__grid {
        gap: 16px;
    }

    .list-confirm__submit {
        width: 100%;
        min-height: 50px;
    }

    .list-confirm__actions {
        margin-top: 24px;
    }

}
