.ptp-trip,
.ptp-trip * {
    box-sizing: border-box;
}

.ptp-trip {
    --ptp-primary: #e4003a;
    --ptp-accent: #fb6b00;
    --ptp-ink: #141820;
    --ptp-muted: #667085;
    --ptp-line: #e7e9ee;
    --ptp-soft: #f5f6f8;
    --ptp-card: #ffffff;
    --ptp-good: #1c9b72;
    --ptp-danger: #ef3340;
    color: var(--ptp-ink);
    background: var(--ptp-soft);
    font-family: Poppins, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    margin: 0 calc(50% - 50vw);
    padding: 24px 16px 54px;
}

.ptp-shell,
.ptp-gallery-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.ptp-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.9fr);
    gap: 8px;
    min-height: 360px;
}

.ptp-gallery-large,
.ptp-gallery-tile {
    position: relative;
    overflow: hidden;
    background: #dfe7eb;
}

.ptp-gallery-large {
    border-radius: 8px 0 0 8px;
}

.ptp-gallery-small {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ptp-gallery-tile:nth-child(2) {
    border-radius: 0 8px 0 0;
}

.ptp-gallery-tile:nth-child(4) {
    border-radius: 0 0 8px 0;
}

.ptp-gallery img,
.ptp-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 176px;
    object-fit: cover;
    display: block;
}

.ptp-gallery-large img,
.ptp-gallery-large .ptp-img-placeholder {
    min-height: 360px;
}

.ptp-img-placeholder {
    background: linear-gradient(135deg, #d5e7e2, #f2f5f6 45%, #e8dfd0);
}

.ptp-gallery-tile:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 54%;
    display: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54));
}

.ptp-gallery-tile span,
.ptp-gallery-tile:not(:has(span)):after {
    display: none;
}

.ptp-gallery-tile span {
    display: none;
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.ptp-trip-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 348px;
    gap: 24px;
    align-items: start;
    margin-top: 22px;
}

.ptp-main {
    min-width: 0;
}

.ptp-hero-card,
.ptp-section,
.ptp-action-bar,
.ptp-tabs-wrap,
.ptp-sidebar-card,
.ptp-package-card {
    background: var(--ptp-card);
    border: 1px solid var(--ptp-line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ptp-hero-card {
    padding: 26px 28px;
}

.ptp-hero-card h1 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.25vw, 40px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
}

.ptp-subtitle {
    margin: -6px 0 18px;
    color: var(--ptp-muted);
    font-size: 16px;
    line-height: 1.6;
}

.ptp-trip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    color: var(--ptp-muted);
}

.ptp-trip-meta strong {
    color: #c8cbd2;
    font-size: 30px;
    line-height: 1;
    margin-right: 4px;
}

.ptp-duration {
    background: var(--ptp-primary);
    color: #fff;
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 800;
    line-height: 1;
}

.ptp-amenities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 26px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--ptp-line);
    color: var(--ptp-ink);
}

.ptp-amenities span:before {
    content: "\2713";
    color: var(--ptp-good);
    border: 1px solid #a8dcca;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
}

.ptp-action-bar {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 22px;
    padding: 18px 24px;
}

.ptp-action-label {
    margin-right: auto;
    font-size: 16px;
    font-weight: 400;
}

.ptp-action-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ptp-ink) !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: color 0.18s ease;
    white-space: nowrap;
}

.ptp-action-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #7b828c;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.18s ease, transform 0.18s ease;
}

.ptp-action-link:hover,
.ptp-action-link:focus {
    color: var(--ptp-primary) !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.ptp-action-link:hover svg,
.ptp-action-link:focus svg {
    stroke: var(--ptp-primary);
    transform: translateY(-1px);
}

.ptp-whatsapp-action:hover,
.ptp-whatsapp-action:focus {
    color: #25d366 !important;
}

.ptp-whatsapp-action:hover svg,
.ptp-whatsapp-action:focus svg {
    stroke: #25d366;
}

.ptp-tabs-wrap {
    position: sticky;
    top: var(--wp-admin--admin-bar--height, 0px);
    z-index: 5;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: center;
    margin-top: 22px;
}

.ptp-tabs {
    display: flex;
    gap: 42px;
    overflow-x: auto;
    padding: 0 26px;
    scrollbar-width: none;
    font-family: Poppins, "Segoe UI", Arial, sans-serif;
    scroll-behavior: smooth;
}

.ptp-tabs::-webkit-scrollbar {
    display: none;
}

.ptp-tabs a {
    flex: 0 0 auto;
    color: var(--ptp-ink);
    text-decoration: none;
    padding: 24px 0;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.ptp-tabs-arrow {
    width: 28px;
    height: 100%;
    min-height: 62px;
    border: 0;
    background: transparent;
    color: #8a8f98;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 0;
}

.ptp-tabs-arrow:hover,
.ptp-tabs-arrow:focus {
    background: transparent;
    color: var(--ptp-primary);
    outline: 0;
    box-shadow: none;
}

.ptp-tabs a:hover,
.ptp-tabs a.is-active {
    color: var(--ptp-primary);
    border-color: #202020;
    font-weight: 500;
}

.ptp-section {
    margin-top: 22px;
    padding: 26px 24px;
    scroll-margin-top: 96px;
}

.ptp-section h2 {
    position: relative;
    margin: 0 0 16px;
    font-size: clamp(30px, 2.15vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.ptp-section h2:before {
    content: "";
    position: absolute;
    left: -28px;
    top: 3px;
    width: 5px;
    height: 38px;
    border-radius: 0 999px 999px 0;
    background: var(--ptp-primary);
}

.ptp-section h3 {
    margin: 16px 0 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0;
}

.ptp-section p {
    color: var(--ptp-ink);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.ptp-check-list,
.ptp-x-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ptp-check-list li,
.ptp-x-list li {
    position: relative;
    margin: 0 0 18px;
    padding-left: 34px;
    color: #3f3f3f;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.ptp-check-list li:before,
.ptp-x-list li:before {
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.ptp-check-list li:before {
    content: "\2713";
    color: var(--ptp-good);
    border: 1px solid #a8dcca;
}

.ptp-x-list li:before {
    content: "x";
    color: var(--ptp-danger);
    border: 1px solid var(--ptp-danger);
}

.ptp-date-pill {
    display: inline-flex;
    align-items: center;
    background: var(--ptp-primary);
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    margin: 18px 0;
    font-size: 17px;
    font-weight: 800;
}

.ptp-validity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
    color: var(--ptp-ink);
}

.ptp-validity a {
    margin-left: auto;
    border-radius: 6px;
    background: var(--ptp-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 11px 18px;
}

.ptp-destination-box {
    background: #f3f5f8;
    border-radius: 8px;
    margin: 16px 0 26px;
    padding: 20px 22px;
    font-weight: 800;
}

.ptp-day {
    border: 1px solid var(--ptp-line);
    border-radius: 8px;
    padding: 0;
    margin: 12px 0;
    overflow: hidden;
}

.ptp-day summary {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 800;
}

.ptp-day summary span {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    flex-direction: column;
    border-radius: 50%;
    background: var(--ptp-primary);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    line-height: 1;
}

.ptp-day summary span small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.ptp-day p {
    margin: 0;
    padding: 0 20px 20px 94px;
}

.ptp-table-wrap {
    overflow-x: auto;
}

.ptp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.ptp-table th,
.ptp-table td {
    padding: 15px 14px;
    text-align: left;
    border-bottom: 1px solid var(--ptp-line);
}

.ptp-table th {
    font-size: 16px;
}

.ptp-inclusions {
    padding: 0;
    overflow: hidden;
}

.ptp-cost-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ptp-card);
}

.ptp-cost-tabs button {
    border: 0;
    border-bottom: 1px solid var(--ptp-line);
    background: transparent;
    box-shadow: none !important;
    color: var(--ptp-ink);
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    padding: 20px 16px;
}

.ptp-cost-tabs button:hover,
.ptp-cost-tabs button:focus {
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.ptp-cost-tabs button.is-active[data-ptp-cost-tab="includes"] {
    color: var(--ptp-good);
    border-bottom-color: var(--ptp-good);
}

.ptp-cost-tabs button.is-active[data-ptp-cost-tab="excludes"] {
    color: var(--ptp-danger);
    border-bottom-color: var(--ptp-danger);
}

.ptp-cost-panel {
    display: none;
    padding: 30px 28px;
}

.ptp-cost-panel.is-active {
    display: block;
}

.ptp-cost-includes {
    background: #edf9f4;
    background: color-mix(in srgb, var(--ptp-good) 10%, var(--ptp-card) 90%);
}

.ptp-cost-excludes {
    background: #fdecef;
    background: color-mix(in srgb, var(--ptp-danger) 10%, var(--ptp-card) 90%);
}

.ptp-sidebar {
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 18px);
}

.ptp-sidebar-card {
    padding: 18px;
    margin-bottom: 18px;
}

.ptp-price-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ptp-line);
}

.ptp-price {
    display: block;
    font-size: 22px;
    line-height: 1.2;
}

.ptp-price-row span,
.ptp-price-row del {
    color: var(--ptp-muted);
    font-size: 13px;
}

.ptp-price-row del {
    display: block;
    margin-top: 8px;
    font-size: 16px;
}

.ptp-rating {
    color: var(--ptp-good) !important;
    font-weight: 800;
    white-space: nowrap;
}

.ptp-sale-badge {
    float: right;
    margin: -15px 0 12px;
    background: #ffc226;
    color: #fff;
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 900;
}

.ptp-primary-btn,
.ptp-fallback-form button {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: var(--ptp-accent);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    padding: 15px 18px;
    font-size: 16px;
}

.ptp-primary-btn:hover,
.ptp-primary-btn:focus,
.ptp-fallback-form button:hover,
.ptp-fallback-form button:focus {
    background: var(--ptp-accent);
    color: #fff;
    box-shadow: none;
    outline: 0;
}

.ptp-form-card {
    padding: 16px;
}

.ptp-fallback-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ptp-fallback-form input,
.ptp-fallback-form textarea {
    width: 100%;
    border: 1px solid var(--ptp-line);
    border-radius: 5px;
    padding: 13px 12px;
    font: inherit;
}

.ptp-fallback-form input:nth-child(1),
.ptp-fallback-form input:nth-child(2),
.ptp-fallback-form textarea,
.ptp-fallback-form button {
    grid-column: 1 / -1;
}

.ptp-fallback-form textarea {
    min-height: 86px;
}

.ptp-packages-page {
    padding-top: 34px;
}

.ptp-packages-page,
.ptp-packages-page * {
    box-sizing: border-box;
}

.ptp-packages-page .ptp-shell {
    max-width: 1500px;
}

.ptp-packages-page .ptp-packages-head {
    margin: 0 0 18px !important;
}

.ptp-packages-page .ptp-packages-head span {
    color: var(--ptp-primary);
    display: block;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ptp-packages-page .ptp-packages-head h2 {
    color: var(--ptp-ink);
    font-size: 30px !important;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.15 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ptp-packages-page .ptp-listing {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    gap: 20px;
    margin: 0 !important;
}

.ptp-packages-page .ptp-listing-filter {
    align-self: start;
    background: var(--ptp-card);
    border: 1px solid var(--ptp-line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    padding: 16px;
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 16px);
}

.ptp-packages-page .ptp-listing-filter h3 {
    margin: 0 0 12px !important;
    color: var(--ptp-ink);
    font-size: 17px !important;
    font-weight: 650;
    line-height: 1.25 !important;
    padding: 0 !important;
}

.ptp-packages-page .ptp-destination-tabs {
    display: grid;
    gap: 8px;
}

.ptp-packages-page .ptp-destination-tabs button {
    border: 1px solid var(--ptp-line);
    border-radius: 6px;
    background: transparent;
    color: var(--ptp-ink);
    cursor: pointer;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    padding: 9px 11px !important;
    text-align: left;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
    width: 100%;
}

.ptp-packages-page .ptp-destination-tabs button.is-active,
.ptp-packages-page .ptp-destination-tabs button:hover,
.ptp-packages-page .ptp-destination-tabs button:focus {
    border-color: var(--ptp-primary);
    color: var(--ptp-primary);
    background: color-mix(in srgb, var(--ptp-primary) 7%, #fff);
    outline: 0;
}

.ptp-packages-page .ptp-price-filter {
    border-top: 1px solid var(--ptp-line);
    margin-top: 16px;
    padding-top: 16px;
}

.ptp-packages-page .ptp-price-filter label,
.ptp-packages-page .ptp-price-filter span {
    display: grid;
    gap: 10px;
    color: var(--ptp-muted);
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.ptp-packages-page .ptp-price-filter input,
.ptp-packages-page .ptp-listing-main {
    width: 100%;
}

.ptp-packages-page .ptp-listing-main {
    min-width: 0;
}

.ptp-packages-page .ptp-package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px;
    align-items: start;
}

.ptp-packages-page .ptp-package-card {
    overflow: hidden;
    min-width: 0;
    height: auto !important;
}

.ptp-packages-page .ptp-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #e5e7eb;
    min-height: 0 !important;
}

.ptp-packages-page .ptp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0 !important;
}

.ptp-packages-page .ptp-card-body {
    padding: 12px !important;
}

.ptp-packages-page .ptp-card-body h3 {
    margin: 0 0 7px !important;
    color: var(--ptp-ink);
    display: -webkit-box;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    max-height: 58px;
    overflow: hidden;
    padding: 0 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ptp-packages-page .ptp-card-body h3 a {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.ptp-packages-page .ptp-card-body a {
    color: inherit;
    text-decoration: none;
}

.ptp-packages-page .ptp-card-body p {
    color: var(--ptp-muted);
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 0 11px !important;
    padding: 0 !important;
}

.ptp-packages-page .ptp-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.ptp-packages-page .ptp-card-cta strong {
    color: var(--ptp-primary);
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    min-width: 0;
}

.ptp-packages-page .ptp-card-cta a {
    border: 1px solid var(--ptp-primary);
    border-radius: 5px;
    color: var(--ptp-primary);
    flex: 0 0 auto;
    font-size: 11px !important;
    font-weight: 600;
    line-height: 1 !important;
    padding: 7px 8px !important;
}

.ptp-card-body a {
    color: inherit;
    text-decoration: none;
}

.ptp-card-body p {
    color: var(--ptp-muted);
    font-size: 12px;
    line-height: 1.45;
    margin: 0 0 14px;
}

.ptp-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.ptp-card-cta strong {
    color: var(--ptp-primary);
    font-size: 13px;
    line-height: 1.2;
    min-width: 0;
}

.ptp-card-cta a {
    border: 1px solid var(--ptp-primary);
    border-radius: 5px;
    color: var(--ptp-primary);
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 8px 9px;
}

.ptp-no-results {
    background: var(--ptp-card);
    border: 1px solid var(--ptp-line);
    border-radius: 8px;
    margin: 0;
    padding: 18px;
}

@media (max-width: 980px) {
    .ptp-trip-layout,
    .ptp-gallery,
    .ptp-inclusion-tabs,
    .ptp-inclusion-grid {
        grid-template-columns: 1fr;
    }

    .ptp-packages-page .ptp-listing {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .ptp-packages-page .ptp-listing-filter {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        position: sticky;
        top: calc(var(--wp-admin--admin-bar--height, 0px) + 8px);
        z-index: 4;
    }

    .ptp-packages-page .ptp-listing-filter > h3 {
        display: none;
    }

    .ptp-packages-page .ptp-destination-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ptp-packages-page .ptp-destination-tabs::-webkit-scrollbar {
        display: none;
    }

    .ptp-packages-page .ptp-destination-tabs button {
        flex: 0 0 auto;
        border-radius: 999px;
        background: var(--ptp-card);
        box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
        font-size: 12px !important;
        padding: 7px 11px !important;
        white-space: nowrap;
        width: auto;
    }

    .ptp-packages-page .ptp-price-filter {
        background: var(--ptp-card);
        border: 1px solid var(--ptp-line);
        border-radius: 8px;
        margin-top: 10px;
        padding: 10px 12px;
    }

    .ptp-packages-page .ptp-price-filter h3 {
        display: none;
    }

    .ptp-packages-page .ptp-price-filter label {
        align-items: center;
        display: grid;
        gap: 10px;
        grid-template-columns: max-content minmax(120px, 1fr);
    }

    .ptp-packages-page .ptp-price-filter span {
        color: var(--ptp-ink);
        display: block;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .ptp-packages-page .ptp-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .ptp-packages-page .ptp-card-media {
        aspect-ratio: 4 / 3;
    }

    .ptp-packages-page .ptp-card-body {
        padding: 10px !important;
    }

    .ptp-packages-page .ptp-card-body h3 {
        font-size: 13px !important;
        margin-bottom: 7px !important;
        max-height: 50px;
    }

    .ptp-packages-page .ptp-card-body p {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }

    .ptp-packages-page .ptp-card-cta {
        align-items: center;
        gap: 6px;
    }

    .ptp-packages-page .ptp-card-cta strong {
        font-size: 11px !important;
    }

    .ptp-packages-page .ptp-card-cta a {
        font-size: 10px !important;
        padding: 7px 8px !important;
    }

    .ptp-gallery-large,
    .ptp-gallery-tile:nth-child(2),
    .ptp-gallery-tile:nth-child(4) {
        border-radius: 8px;
    }

    .ptp-sidebar {
        position: static;
    }

    .ptp-sidebar {
        order: -1;
    }

    .ptp-tabs-wrap {
        position: sticky;
        top: var(--wp-admin--admin-bar--height, 0px);
        z-index: 8;
    }

    .ptp-form-card {
        display: none;
    }

    .ptp-mobile-form-open .ptp-form-card {
        display: block;
    }
}

@media (max-width: 680px) {
    .ptp-trip {
        padding: 12px 10px 34px;
    }

    .ptp-gallery-small,
    .ptp-amenities {
        grid-template-columns: 1fr 1fr;
    }

    .ptp-gallery,
    .ptp-gallery-large img,
    .ptp-gallery-large .ptp-img-placeholder {
        min-height: 240px;
    }

    .ptp-gallery img,
    .ptp-img-placeholder {
        min-height: 142px;
    }

    .ptp-hero-card,
    .ptp-section {
        padding: 20px;
    }

    .ptp-section h2:before {
        left: -20px;
    }

    .ptp-action-bar {
        gap: 16px;
        overflow-x: auto;
        padding: 14px 16px;
        scrollbar-width: none;
    }

    .ptp-action-bar::-webkit-scrollbar {
        display: none;
    }

    .ptp-action-label {
        min-width: max-content;
        margin: 0;
    }

    .ptp-action-link {
        font-size: 14px;
        gap: 8px;
    }

    .ptp-action-link svg {
        width: 21px;
        height: 21px;
    }

    .ptp-tabs-wrap {
        top: var(--wp-admin--admin-bar--height, 0px);
    }

    .ptp-tabs a {
        padding: 14px 10px;
        font-size: 14px;
    }

    .ptp-section h2 {
        font-size: 25px;
    }

    .ptp-section h3 {
        font-size: 20px;
    }

    .ptp-check-list li,
    .ptp-x-list li,
    .ptp-section p {
        font-size: 15px;
    }

    .ptp-trip-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ptp-amenities,
    .ptp-fallback-form {
        grid-template-columns: 1fr;
    }

    .ptp-validity {
        align-items: flex-start;
        flex-direction: column;
    }

    .ptp-validity a {
        margin-left: 0;
    }

    .ptp-day summary {
        font-size: 18px;
    }

    .ptp-day p {
        padding-left: 20px;
    }
}
