body {
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.img-cover {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.section {
    padding: 15px;
}

.badge {
    display: flex;
    align-items: center;
    background: #e5e7eb;
    padding: 8px 12px;
    border-radius: 12px;
    margin-right: 12px;
}

    .badge svg {
        margin-right: 6px;
    }

.price {
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
}

.flight-details h2 {
    font-size: 1.25em;
    font-weight: bold;
    margin: 0 0 10px;
}

.flight-info {
    text-align: center;
}

    .flight-info .code {
        font-size: 1em;
        font-weight: bold;
    }

.small {
    font-size: 0.9em;
    color: #6b7280;
}

.button {
    background: #2563eb;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 12px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

.info-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    font-size: 0.9em;
    color: #4b5563;
}

    .info-box .label {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        margin-bottom: 4px;
    }

.accordion {
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    cursor: pointer;
}

    .accordion:hover {
        background: #f3f4f6;
    }

.pmGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

@media (max-width: 720px) {
    .pmGrid {
        grid-template-columns: 1fr
    }
}

.pmCard {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

    .pmCard input {
        margin-top: 3px;
        width: 20px;
    }

.pmTitle {
    font-weight: 950;
    font-size: 13px
}

.pmDesc {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.35
}
