.pcf-page-wrapper {
    min-height: 100dvh;
    padding-bottom: 6rem;
}

.pcf-container {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* Step bar */
.pcf-step-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3.2rem;
}

.pcf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pcf-step-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--antologa-light-gray);
    border: 2px solid var(--antologa-light-gray);
    transition: all 0.3s ease;
}

.pcf-step-dot--active {
    background-color: var(--antologa-primary);
    border-color: var(--antologa-primary);
    width: 1.2rem;
    height: 1.2rem;
}

.pcf-step-label {
    color: var(--antologa-gray) !important;
    font-size: 1.1rem !important;
    white-space: nowrap;
}

.pcf-step-label--active {
    color: var(--antologa-primary) !important;
    font-weight: 600;
}

.pcf-step-line {
    flex: 1;
    max-width: 8rem;
    height: 1px;
    background-color: var(--antologa-light-gray);
    margin: 0 1rem;
    margin-bottom: 1.4rem;
}

/* Progress */
.pcf-progress {
    margin-bottom: 2rem;
    border-radius: 0.4rem;
}

.pcf-alert {
    margin-bottom: 2rem;
}

/* Layout */
.pcf-layout {
    margin-top: 0;
}

/* Card */
.pcf-card {
    background-color: var(--antologa-white) !important;
    border: 1px solid var(--antologa-light-gray) !important;
    border-radius: 1.4rem !important;
    padding: 2.4rem;
    margin-bottom: 1.6rem;
}

/* Listing hero */
.pcf-listing-hero-wrap {
    width: 100%;
    height: 22rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.8rem;
}

.pcf-listing-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pcf-listing-hero:hover {
    transform: scale(1.02);
}

/* Listing body */
.pcf-listing-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pcf-listing-type-badge {
    display: inline-block;
    background-color: rgba(7, 130, 130, 0.1);
    color: var(--antologa-primary) !important;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 1.1rem !important;
    font-weight: 600;
    letter-spacing: 0.07em;
    align-self: flex-start;
}

.pcf-listing-title {
    font-family: 'Inter', sans-serif;
    color: var(--antologa-dark) !important;
    font-size: 2rem !important;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.4rem;
}

.pcf-listing-location {
    color: var(--antologa-gray) !important;
    font-size: 1.3rem !important;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pcf-location-icon {
    font-size: 1.5rem !important;
    color: var(--antologa-gray) !important;
}

/* Dates */
.pcf-dates-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 1.2rem;
    border: 1px solid var(--antologa-light-gray);
    border-radius: 1rem;
    overflow: hidden;
}

.pcf-date-item {
    flex: 1;
    padding: 1.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pcf-date-divider {
    width: 1px;
    background-color: var(--antologa-light-gray);
    flex-shrink: 0;
}

.pcf-date-label {
    color: var(--antologa-gray) !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pcf-date-value {
    color: var(--antologa-dark) !important;
    font-weight: 600;
    font-size: 1.3rem !important;
}

.pcf-date-time {
    color: var(--antologa-gray) !important;
    font-size: 1.1rem !important;
}

/* Section label */
.pcf-section-label {
    color: var(--antologa-gray) !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    letter-spacing: 0.09em;
    display: block;
    margin-bottom: 1.2rem;
}

/* Policy */
.pcf-policy-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.pcf-policy-tag--nonrefundable {
    background-color: rgba(196, 90, 50, 0.1);
    color: var(--antologa-terciary);
}

.pcf-policy-tag--refundable {
    background-color: rgba(7, 130, 130, 0.1);
    color: var(--antologa-primary);
}

.pcf-policy-text {
    color: var(--antologa-gray) !important;
    font-size: 1.3rem !important;
    line-height: 1.7;
}

/* Protection plan */
.pcf-protection-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pcf-protection-opt {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    padding: 1.6rem;
    border: 1px solid var(--antologa-light-gray);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pcf-protection-opt:hover {
    border-color: var(--antologa-primary);
    background-color: rgba(7, 130, 130, 0.03);
}

.pcf-protection-opt--selected {
    border-color: var(--antologa-primary) !important;
    background-color: rgba(7, 130, 130, 0.05) !important;
}

.pcf-prot-radio-wrap {
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.pcf-prot-radio {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    border: 2px solid var(--antologa-light-gray);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcf-prot-radio--on {
    border-color: var(--antologa-primary);
}

.pcf-prot-radio--on::after {
    content: '';
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background-color: var(--antologa-primary);
}

.pcf-prot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pcf-prot-title {
    color: var(--antologa-dark) !important;
    font-weight: 600;
    font-size: 1.3rem !important;
}

.pcf-prot-price {
    color: var(--antologa-primary) !important;
    font-size: 1.2rem !important;
    font-weight: 600;
}

.pcf-prot-subtitle {
    color: var(--antologa-gray) !important;
    font-size: 1.2rem !important;
}

.pcf-prot-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.pcf-prot-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pcf-prot-check {
    font-size: 1.5rem !important;
    color: var(--antologa-primary) !important;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pcf-prot-benefit-text {
    color: var(--antologa-gray) !important;
    font-size: 1.2rem !important;
    line-height: 1.5;
}

/* Check-in instructions */
.pcf-instructions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pcf-instruction-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pcf-instruction-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: var(--antologa-primary);
    flex-shrink: 0;
    margin-top: 0.6rem;
}

.pcf-instruction-text {
    color: var(--antologa-gray) !important;
    font-size: 1.3rem !important;
    line-height: 1.6;
}

/* Price card */
.pcf-price-card {
    position: sticky;
    top: 2rem;
}

.pcf-sticky-panel {
    position: sticky;
    top: 2rem;
}

.pcf-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.pcf-price-row--total {
    padding-top: 1rem;
}

.pcf-price-label {
    color: var(--antologa-gray) !important;
    font-size: 1.3rem !important;
}

.pcf-price-value {
    color: var(--antologa-dark) !important;
    font-size: 1.3rem !important;
}

.pcf-price-total-label {
    color: var(--antologa-dark) !important;
    font-weight: 700;
    font-size: 1.5rem !important;
}

.pcf-price-total-value {
    color: var(--antologa-primary) !important;
    font-weight: 700;
    font-size: 1.5rem !important;
}

.pcf-price-divider {
    border: none;
    border-top: 1px solid var(--antologa-light-gray);
    margin: 0.6rem 0;
}

/* Trust note */
.pcf-trust-note {
    background-color: var(--antologa-white);
    border: 1px solid var(--antologa-light-gray);
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    margin: 1.6rem 0 1.6rem;
}

.pcf-trust-text {
    color: var(--antologa-gray) !important;
    font-size: 1.2rem !important;
    line-height: 1.6;
}

/* Buttons */
.pcf-btn-continue {
    background-color: var(--antologa-primary) !important;
    color: var(--antologa-white) !important;
    border-radius: 0.8rem !important;
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    height: 5rem;
    transition: all 0.3s ease;
}

.pcf-btn-continue:hover {
    background-color: var(--antologa-secondary) !important;
    box-shadow: 0 4px 14px rgba(7, 130, 130, 0.35);
}

.pcf-btn-arrow {
    margin-left: 0.6rem;
    font-size: 1.8rem !important;
}

.pcf-btn-spinner {
    margin-right: 0.8rem;
}

.pcf-btn-back {
    color: var(--antologa-gray) !important;
    font-size: 1.3rem !important;
    margin-top: 0.4rem;
    transition: color 0.2s ease;
}

.pcf-btn-back:hover {
    color: var(--antologa-primary) !important;
}

/* Security note */
.pcf-security-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0.4rem 0;
}

.pcf-security-icon {
    font-size: 1.4rem !important;
    color: var(--antologa-gray) !important;
    flex-shrink: 0;
}

.pcf-security-text {
    color: var(--antologa-gray) !important;
    font-size: 1.15rem !important;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1280px) {
    .pcf-listing-hero-wrap {
        height: 18rem;
    }
}

@media (max-width: 600px) {
    .pcf-container {
        padding-top: 1.6rem;
    }

    .pcf-card {
        padding: 1.6rem;
        border-radius: 1.2rem !important;
    }

    .pcf-listing-hero-wrap {
        height: 16rem;
    }

    .pcf-dates-row {
        flex-direction: column;
    }

    .pcf-date-divider {
        width: 100%;
        height: 1px;
    }

    .pcf-step-line {
        max-width: 5rem;
    }

    .pcf-price-card {
        position: static;
    }

    .pcf-sticky-panel {
        position: static;
    }
}

@media (max-width: 400px) {
    .pcf-listing-title {
        font-size: 1.6rem !important;
    }

    .pcf-step-label {
        font-size: 1rem !important;
    }
}
