/* Parking User Terminal — 1280 × 1024 landscape */

.put-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - var(--nav-height));
    padding: 0 100px;
    text-align: center;
}

.put-main.from-top {
    justify-content: flex-start;
    padding-top: 73px;
}

/* PIN screen sits slightly higher (Figma: title 50px below the nav). */
.put-main.pin {
    padding-top: 50px;
}

.put-title {
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
}

.put-title.error {
    color: var(--color-error);
}

.put-title.small {
    font-size: 35px;
}

.put-subtitle {
    margin-top: 45px;
    max-width: 1031px;
    font-size: 50px;
    font-weight: 500;
}

.put-arrow {
    width: 266px;
    margin-top: 90px;
}

.put-action {
    margin-top: 90px;
}

/* --- Something went wrong: error list ------------------------------ */
.put-error-list {
    margin-top: 120px;
    counter-reset: put-error;
}

.put-error-list li {
    counter-increment: put-error;
    margin-bottom: 24px;
    font-size: 30px;
    font-weight: 500;
    color: var(--color-gray-list);
}

.put-error-list li::before {
    content: counter(put-error) '. ';
}

/* --- Parking in progress: spinner ---------------------------------- */
.spinner {
    width: 145px;
    height: 145px;
    margin-bottom: 74px;
    border: 14px solid var(--color-gray-disabled);
    border-top-color: #3d3d3d;
    border-right-color: #3d3d3d;
    border-bottom-color: #3d3d3d;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- PIN code entry ------------------------------------------------- */
.pin-slots {
    display: flex;
    gap: 15px;
    margin-top: 68px;
}

.pin-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border: 4px solid var(--color-gray-muted);
    border-radius: 50%;
    font-size: 38px;
    font-weight: 600;
}

.pin-slot.active {
    border-color: var(--color-primary);
}

.pin-slot.filled::after {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-black);
}

.pin-pad {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    gap: 14px;
    margin-top: 58px;
}

.pin-key {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-key);
    font-size: 38px;
    font-weight: 600;
}

.pin-key:active {
    background-color: var(--color-gray-disabled);
}

.pin-key.back {
    grid-column: 2 / span 2;
    width: 235px;
    border-radius: var(--radius-back);
    background-color: var(--color-peach);
    font-size: 30px;
    font-weight: 500;
}

/* --- Checklist ------------------------------------------------------ */
.checklist-timer {
    margin-top: 27px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-error);
}

.checklist-card {
    width: 1073px;
    margin-top: 30px;
    padding: 63px 58px;
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 58px;
    margin-bottom: 19px;
    cursor: pointer;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.checklist-item input {
    display: none;
}

.checklist-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: var(--color-gray-disabled);
    flex-shrink: 0;
    transition: background-color 120ms ease;
}

.checklist-check img {
    width: 26px;
    height: 22px;
}

.checklist-item input:checked + .checklist-check {
    background-color: var(--color-primary);
}

.checklist-item span:last-child {
    font-size: 23px;
    font-weight: 600;
}

.checklist-confirm {
    margin-top: 40px;
    width: 214px;
    padding: 0;
}

/* --- Options -------------------------------------------------------- */
.option-tile {
    width: 463px;
    height: 288px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 96px;
    background-color: var(--color-white);
    border: 6px solid transparent;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: border-color 120ms ease;
}

.option-tile.selected {
    border-color: var(--color-primary);
}

.option-tile img {
    width: 227px;
    height: 172px;
}

.option-label {
    margin-top: 29px;
    font-size: 35px;
    font-weight: 600;
    color: var(--color-gray-text);
}

.option-continue {
    margin-top: 100px;
    width: 463px;
}
