/* Fixed Package Detail — pixel-perfect layout */

.kv-page-pd-detail {
    background: #f3f4f6;
}

.kv-pd-page {
    padding: 16px 0 48px;
}

/* Breadcrumb */
.kv-pd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

.kv-pd-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.kv-pd-breadcrumb a:hover {
    color: #f97316;
}

.kv-pd-breadcrumb .is-current {
    color: #111827;
}

/* Page grid */
.kv-pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) 320px;
    grid-template-areas:
        "breadcrumb breadcrumb breadcrumb"
        "gallery info aside"
        "main main aside";
    gap: 20px 24px;
    align-items: start;
}

.kv-pd-gallery-col { grid-area: gallery; }
.kv-pd-info-col { grid-area: info; }
.kv-pd-aside-col { grid-area: aside; }
.kv-pd-main-col { grid-area: main; min-width: 0; }

.kv-pd-breadcrumb { grid-area: breadcrumb; }

/* Gallery */
.kv-pd-gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: clamp(220px, 28vw, 320px);
    background: #e5e7eb;
}

.kv-pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kv-pkg-detail-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.kv-pkg-detail-gallery-nav:hover {
    background: #f97316;
    color: #fff;
}

.kv-pkg-detail-gallery-nav--prev { left: 12px; }
.kv-pkg-detail-gallery-nav--next { right: 12px; }

.kv-pd-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 10px;
    margin-top: 12px;
}

.kv-pd-thumb,
.kv-pd-thumb-more {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    height: 68px;
    position: relative;
}

.kv-pd-thumb img,
.kv-pd-thumb-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kv-pd-thumb.active,
.kv-pd-thumb:hover {
    border-color: #f97316;
}

.kv-pd-thumb-more {
    min-width: 120px;
    border: none;
}

.kv-pd-thumb-more span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    padding: 6px;
    line-height: 1.3;
}

/* Package info */
.kv-pd-info-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.kv-pd-info h1 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.25;
    flex: 1;
    min-width: 200px;
}

.kv-pd-tour-badge {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #fed7aa;
    background: #fff7ed;
    color: #ea580c;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.kv-pd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.kv-pd-meta-row i {
    color: #f97316;
    margin-right: 4px;
}

.kv-pd-meta-row .bi-star-fill {
    color: #f97316;
}

.kv-pd-intro {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6b7280;
    margin-bottom: 16px;
}

.kv-pd-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.kv-pd-feature {
    text-align: center;
    padding: 12px 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.kv-pd-feature i {
    display: block;
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.kv-pd-feature strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.kv-pd-feature small {
    display: block;
    font-size: 0.65rem;
    color: #9ca3af;
    margin-top: 2px;
}

.kv-pd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kv-pd-chip {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.kv-pd-chip--more {
    color: #f97316;
    border-color: #fed7aa;
    background: #fff7ed;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.kv-pd-chip--more:hover,
.kv-pd-chip--more:focus-visible {
    color: #ea580c;
    border-color: #fdba74;
    background: #ffedd5;
    outline: none;
}

/* Sticky sidebar */
.kv-pd-aside-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kv-pd-aside-below {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Price card */
.kv-pd-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.kv-pd-price-card--with-summary {
    padding-bottom: 18px;
}

.kv-pd-booking-summary .kv-booking-summary-card {
    margin: 0;
    box-shadow: none;
    border: 1px solid #e5e7eb;
}

.kv-pd-booking-summary .kv-booking-summary-img {
    max-height: 140px;
    object-fit: cover;
}

.kv-pd-booking-summary .kv-booking-summary-sticky {
    position: static;
}

.kv-pd-price-main {
    margin-bottom: 4px;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.55rem;
}

.kv-pd-price-was {
    font-size: 1.05rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
}

.kv-pd-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: -0.02em;
}

.kv-pd-price-unit {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.kv-pd-price-tax {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0 0 16px;
}

.kv-pd-price-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 14px;
}

.kv-pd-price-guarantee i {
    font-size: 1.05rem;
    color: #10b981;
}

.kv-pd-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kv-pd-price-feature {
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.4;
}

.kv-pd-price-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.kv-pd-price-feature-label i {
    color: #f97316;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.kv-pd-price-feature--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.kv-pd-price-feature--split small {
    color: #9ca3af;
    font-size: 0.7rem;
    font-weight: 400;
    text-align: right;
    line-height: 1.35;
    flex-shrink: 0;
    max-width: 48%;
}

.kv-pd-price-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kv-pd-price-actions .kv-pd-book-form {
    margin: 0;
}

.kv-pd-btn-primary {
    background: #f97316;
    border: none;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 20px;
    transition: background 0.2s, box-shadow 0.2s;
}

.kv-pd-btn-primary:hover {
    background: #ea580c;
    color: #fff;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.kv-pd-btn-outline {
    border: 2px solid #f97316;
    color: #f97316;
    background: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.kv-pd-btn-outline:hover {
    background: #fff7ed;
    color: #ea580c;
}

/* Sidebar cards */
.kv-pd-side-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
}

.kv-pd-side-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px;
}

.kv-pd-side-card--why {
    background: #fff7ed;
    border-color: #fed7aa;
    margin-top: 4px;
    margin-bottom: 4px;
}

.kv-pd-details-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kv-pd-details-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.kv-pd-details-list > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kv-pd-details-list > div:first-child {
    padding-top: 0;
}

.kv-pd-details-list dt {
    color: #6b7280;
    font-weight: 500;
}

.kv-pd-details-list dd {
    color: #111827;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

.kv-pd-boarding-list {
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kv-pd-boarding-list > div {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: 12px;
    font-size: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.kv-pd-boarding-list > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kv-pd-boarding-list dt {
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

.kv-pd-boarding-list dd {
    color: #111827;
    margin: 0;
    line-height: 1.5;
}

.kv-pd-boarding-note {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

.kv-pd-boarding-note strong {
    display: block;
    color: #111827;
    margin-bottom: 0.35rem;
}

.kv-pd-boarding-note p {
    margin: 0;
}

.kv-pd-boarding-compact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.kv-pd-boarding-compact-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
}

.kv-pd-boarding-compact-row span {
    color: #6b7280;
    font-weight: 500;
}

.kv-pd-boarding-compact-row strong {
    color: #111827;
    font-weight: 600;
    line-height: 1.45;
}

.kv-pd-boarding-note--compact {
    margin-top: 0.75rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.78rem;
}

.kv-pd-boarding-notes p {
    margin: 0 0 0.85rem;
    line-height: 1.6;
    color: #374151;
}

.kv-pd-boarding-notes p:last-child {
    margin-bottom: 0;
}

.kv-pd-dates-empty {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.kv-pd-dates-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kv-pd-dates-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #374151;
}

.kv-pd-seats-left {
    color: #059669;
    font-weight: 600;
    font-size: 0.75rem;
}

.kv-pd-view-all-dates {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #f97316;
    font-weight: 500;
    text-decoration: none;
}

.kv-pd-view-all-dates:hover {
    color: #ea580c;
}

.kv-pd-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kv-pd-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.4;
    font-weight: 500;
}

.kv-pd-why-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
}

.kv-pd-review-snippet {
    text-align: left;
}

.kv-pd-review-score {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
}

.kv-pd-review-stars {
    color: #f97316;
    margin: 6px 0 12px;
}

.kv-pd-review-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 6px;
}

.kv-pd-review-author {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 10px;
}

.kv-pd-view-reviews {
    font-size: 0.8rem;
    color: #f97316;
    font-weight: 500;
    text-decoration: none;
}

.kv-pd-view-reviews:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Main sections */
.kv-pd-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
}

.kv-pd-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.kv-pd-section-head--split {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.kv-pd-section-head i {
    color: #f97316;
    font-size: 1.15rem;
}

.kv-pd-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff7ed;
    color: #f97316;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.kv-pd-section-head h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.kv-pd-link-orange {
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
}

.kv-pd-link-orange:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Highlights */
.kv-pd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
}

.kv-pd-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

.kv-pd-highlight-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff7ed;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Add-ons */
.kv-pd-addons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kv-pd-addon-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kv-pd-addon-card.is-included {
    border-color: #fdba74;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.1);
}

.kv-pd-addon-card.is-optional {
    background: #f9fafb;
}

.kv-pd-addon-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff7ed;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.kv-pd-addon-card.is-included .kv-pd-addon-card-icon {
    background: #f97316;
    color: #fff;
}

.kv-pd-addon-card-body {
    min-width: 0;
    flex: 1;
}

.kv-pd-addon-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.kv-pd-addon-card-top h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.kv-pd-addon-card-body p {
    margin: 0 0 6px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #6b7280;
}

.kv-pd-addon-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.kv-pd-addon-badge.is-included {
    background: #f97316;
    color: #fff;
}

.kv-pd-addon-badge.is-optional {
    background: #fff;
    color: #f97316;
    border: 1px solid #fdba74;
}

.kv-pd-addon-note {
    display: inline-block;
    font-size: 0.75rem;
    color: #9ca3af;
}

.kv-addon-picker-hint {
    margin: -4px 0 16px;
    font-size: 0.85rem;
    color: #6b7280;
}

.kv-addon-picker-card {
    cursor: pointer;
    user-select: none;
}

.kv-addon-picker-card.is-selected {
    border-color: #f97316 !important;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%) !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}

.kv-addon-picker-card.is-selected .kv-pd-addon-card-icon {
    background: #f97316;
    color: #fff;
}

.kv-pd-addon-card--thali {
    flex-direction: column;
    align-items: stretch;
    cursor: default;
}
.kv-pd-addon-card--thali .kv-pd-addon-card-icon {
    margin-bottom: 4px;
}
.kv-pd-addon-card--thali .kv-pd-addon-card-body {
    width: 100%;
}
.kv-pd-addon-card--thali.is-selected {
    border-color: #f97316 !important;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%) !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}
.kv-pd-thali-note {
    margin: 8px 0 10px;
    padding: 8px 10px;
    border: 1px solid #fdba74;
    border-radius: 8px;
    background: #fff7ed;
    color: #4b5563;
    font-size: 0.75rem;
    line-height: 1.45;
}
.kv-pd-thali-note p {
    margin: 0;
}
.kv-pd-thali-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.kv-pd-thali-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.kv-pd-thali-option:hover {
    border-color: #fdba74;
    background: #fffbf7;
}
.kv-pd-thali-option.is-selected {
    border-color: #f97316;
    background: #fff7ed;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.12);
}
.kv-pd-thali-option.is-included {
    cursor: default;
}
.kv-pd-thali-option__box {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.kv-pd-thali-option.is-selected .kv-pd-thali-option__box {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
}
.kv-pd-thali-option__body {
    flex: 1 1 auto;
    min-width: 0;
}
.kv-pd-thali-option__body strong {
    display: block;
    font-size: 0.8rem;
    color: #111827;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.kv-pd-thali-option__price {
    font-weight: 700;
    color: #ea580c;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.kv-addon-picker-card:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.kv-booking-addon-items {
    margin: 4px 0 8px;
    padding-left: 8px;
    border-left: 2px solid #fed7aa;
}

.kv-booking-addon-item + .kv-booking-addon-item {
    margin-top: 4px;
}

/* Itinerary accordion */
.kv-pd-itinerary-accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    --bs-accordion-active-color: #111827;
    --bs-accordion-active-bg: #fff7ed;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kv-pd-itinerary-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
}

.kv-pd-itinerary-accordion .accordion-button {
    padding: 16px 18px;
    font-weight: 600;
    color: #111827;
    background: #fff;
    box-shadow: none;
}

.kv-pd-itinerary-accordion .accordion-button::after {
    background-size: 1rem;
    filter: none;
}

.kv-pd-itinerary-accordion .accordion-button:not(.collapsed) {
    background: #fff7ed;
    color: #111827;
    box-shadow: none;
}

.kv-pd-itinerary-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(52%) sepia(86%) saturate(2476%) hue-rotate(346deg) brightness(98%) contrast(96%);
}

.kv-pd-itinerary-acc-btn-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-right: 8px;
    text-align: left;
}

.kv-pd-itinerary-acc-title {
    flex: 1 1 180px;
    min-width: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.kv-pd-itinerary-acc-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.kv-pd-itinerary-acc-body {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.kv-pd-itinerary-acc-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 16px;
    padding-top: 16px;
}

.kv-pd-itinerary-acc-content .kv-pd-timeline-stops {
    margin-top: 0;
}

/* Timeline (legacy / stops) */
.kv-pd-timeline {
    position: relative;
    padding-left: 28px;
}

.kv-pd-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e7eb;
}

.kv-pd-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 16px;
    padding-bottom: 28px;
    margin-bottom: 4px;
}

.kv-pd-timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f97316;
    border: 3px solid #fff7ed;
    box-shadow: 0 0 0 2px #f97316;
    z-index: 1;
}

.kv-pd-timeline-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.kv-pd-day-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #f97316;
    background: #fff7ed;
    color: #ea580c;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.kv-pd-timeline-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}

.kv-pd-timeline-body p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 10px;
}

.kv-pd-timeline-stops {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.kv-pd-timeline-stop {
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.12);
}

.kv-pd-timeline-stop-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.kv-pd-timeline-stop-time,
.kv-pd-timeline-stop-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #9a3412;
}

.kv-pd-timeline-stop-time i {
    color: #f97316;
}

.kv-pd-timeline-stop-activity {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.45;
}

.kv-pd-timeline-stop-meta {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 0 0 6px;
    line-height: 1.5;
}

.kv-pd-timeline-stop-meta i {
    color: #f97316;
    margin-right: 4px;
}

.kv-pd-timeline-stop-details {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    white-space: pre-line;
}

.kv-pd-timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.72rem;
    color: #6b7280;
}

.kv-pd-timeline-meta i {
    color: #9ca3af;
    margin-right: 3px;
}

.kv-pd-timeline-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100px;
    min-height: 100px;
}

.kv-pd-timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inclusions / Exclusions */
.kv-pd-section--inc-exc {
    padding: 0;
    overflow: hidden;
}

.kv-pd-inc-col,
.kv-pd-exc-col {
    padding: 22px;
}

.kv-pd-exc-col {
    border-left: 1px solid #e5e7eb;
}

.kv-pd-inc-exc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.kv-pd-inc-exc-head h2 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.kv-pd-inc-exc-head--green {
    color: #059669;
}

.kv-pd-inc-exc-head--red {
    color: #dc2626;
}

.kv-pd-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kv-pd-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.45;
}

.kv-pd-checklist--green i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.kv-pd-checklist--red i {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Places grid */
.kv-pd-section--places {
    padding: 22px;
}

.kv-pd-places-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.kv-pd-place-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.kv-pd-place-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.kv-pd-place-media {
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
    overflow: hidden;
}

.kv-pd-place-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kv-pd-place-media--empty {
    background: #f9fafb;
}

.kv-pd-place-label {
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
}

.kv-pd-place-label--more {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

.kv-pd-place-label--more strong {
    display: block;
    font-size: 0.9rem;
    color: #111827;
}

.kv-pd-place-label--more small {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
}

.kv-pd-place-card--more {
    cursor: pointer;
    font: inherit;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    padding: 0;
    width: 100%;
}

.kv-pd-place-card--more:hover,
.kv-pd-place-card--more:focus-visible {
    border-color: #fb923c;
    background: #fff7ed;
    outline: none;
}

.kv-pd-place-card--more .kv-pd-place-media--empty {
    min-height: 80px;
}

.kv-pd-places-grid.is-expanded .kv-pd-place-card--more .kv-pd-place-media--empty {
    min-height: 40px;
}

/* Bottom tabs */
.kv-pd-section--tabs {
    padding-top: 0;
}

.kv-pd-bottom-tabs {
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 0 4px;
}

.kv-pd-bottom-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 0;
    padding: 14px 16px;
    white-space: nowrap;
    background: transparent;
}

.kv-pd-bottom-tabs .nav-link.active {
    color: #ea580c;
    border-bottom-color: #f97316;
}

.kv-pd-tab-content {
    padding: 22px 4px 8px;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}

.kv-pd-tab-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.kv-pd-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.kv-pd-trust-bar > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
}

.kv-pd-trust-bar i {
    color: #f97316;
    font-size: 1.2rem;
}

/* Gallery modal */
.kv-pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.kv-pd-gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.kv-pd-related {
    padding: 48px 0;
    background: #fff;
}

.kv-pd-aside-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .kv-pd-layout {
        grid-template-columns: 1fr 1fr 280px;
    }

    .kv-pd-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kv-pd-places-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .kv-pd-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "breadcrumb breadcrumb"
            "gallery info"
            "aside aside"
            "main main";
    }

    .kv-pd-aside-col .kv-pd-aside-sticky {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .kv-pd-aside-below {
        display: contents;
    }

    .kv-pd-price-card {
        grid-column: 1 / -1;
    }

    .kv-pd-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kv-pd-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .kv-pd-places-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .kv-pd-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "breadcrumb"
            "gallery"
            "info"
            "aside"
            "main";
    }

    .kv-pd-aside-col .kv-pd-aside-sticky {
        grid-template-columns: 1fr;
    }

    .kv-pd-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .kv-pd-thumb-more {
        grid-column: span 1;
    }

    .kv-pd-addons-grid {
        grid-template-columns: 1fr;
    }

    .kv-pd-timeline-item {
        grid-template-columns: 1fr;
    }

    .kv-pd-itinerary-acc-content {
        grid-template-columns: 1fr;
    }

    .kv-pd-itinerary-acc-btn-inner {
        gap: 8px;
    }

    .kv-pd-itinerary-acc-meta {
        flex-basis: 100%;
        padding-left: 0;
    }

    .kv-pd-timeline-img {
        height: 140px;
    }

    .kv-pd-day-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 8px;
    }

    .kv-pd-timeline {
        padding-left: 20px;
    }

    .kv-pd-exc-col {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }

    .kv-pd-places-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .kv-pd-place-card {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }
}

@media (max-width: 575.98px) {
    .kv-pd-highlights-grid {
        grid-template-columns: 1fr;
    }

    .kv-pd-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}
