/* --- Dedicated Premium View Page Structural Scope --- */
.view-pkg-wrapper {
    margin-top: 130px;
    padding: 40px 5%;
    background-color: #ffffff;
}

.view-pkg-grid {
    display: grid;
    grid-template-columns: 62% 35%;
    gap: 3%; /* Balanced gap to leave enough space for layout tracking */
    max-width: 1200px;
    margin: 0 auto;
    align-items: start; /* CRITICAL: Allows aside container to stick accurately */
}
/* --- Premium Minimalist Breadcrumbs --- */
.pkg-breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crumb-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.crumb-link:hover {
    color: var(--accent-teal);
}

.crumb-separator {
    color: #edeaf2;
    user-select: none;
    font-weight: 400;
}

.crumb-current {
    color: var(--accent-gold);
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-transform: none; /* Keeps the package title casing professional */
    text-overflow: ellipsis;
}

 
/* --- Left Side: Editorial Details Architecture --- */
.pkg-editorial-header {
    margin-bottom: 30px;
}

.pkg-badge-pill {
    display: inline-block;
    background-color: var(--accent-teal);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.pkg-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.pkg-cursive-sub {
    font-family: var(--font-cursive);
    color: var(--accent-gold);
    font-size: 32px;
    margin-bottom: 20px;
}

/* PC Mood එක සඳහා මීට වඩා ඉඩක් අවශ්‍ය නම් මෙහි අගය වෙනස් කරන්න */
.pkg-quick-meta-bar {
    display: flex;
    gap: 25px;
    border-top: 1px solid #f1f0f6;
    border-bottom: 1px solid #f1f0f6;
    padding: 15px 5px;
    margin-top: 20px;   /* මාතෘකාවෙන් තරමක් පහළට ගැනීමට */
    margin-bottom: 35px; /* ගැලරියෙන් පරතරය තබා ගැනීමට */
}

.meta-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.meta-bar-item i {
    color: var(--accent-teal);
    font-size: 16px;
}

/* Cinematic Showcase Gallery Canvas Frame */
.pkg-showcase-frame {
    width: 100%;
    height: 460px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(17, 20, 45, 0.05);
    margin-bottom: 40px;
}

.pkg-showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Editorial Body Text Formatting Layout */
.editorial-section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.editorial-body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
    /* Layout Protection */
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Highlights Grid Panels Layout */
.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 45px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.highlights-list li i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 2px;
}

/* Interactive Timeline Accordion Components Layout System */
.itinerary-timeline {
    position: relative;
    padding-left: 25px;
    margin-top: 25px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #edeaf2;
}

.timeline-node {
    position: relative;
    margin-bottom: 25px;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--accent-teal);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-header-trigger {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #f7f5fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-header-trigger:hover {
    background-color: #edeaf2;
}

.timeline-day-tag {
    font-weight: 800;
    font-size: 15px;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

.timeline-day-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.timeline-body-pane {
    padding: 15px 20px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
    display: none;
}

/* Active Timeline Animation States updates */
.timeline-node.active-node .timeline-marker {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.timeline-node.active-node .timeline-header-trigger {
    background-color: var(--accent-teal-hover);
}

.timeline-node.active-node .timeline-day-tag,
.timeline-node.active-node .timeline-day-title,
.timeline-node.active-node .timeline-header-trigger i {
    color: #ffffff;
}

.timeline-node.active-node .timeline-body-pane {
    display: block;
}

/* --- Right Side: Sticky Structural Column Engine --- */
.pkg-booking-sidebar-panel {
    position: sticky;
    top: 110px; /* Safe floating track depth clears standard high-fixed headers */
    z-index: 10;
    align-self: start;
}

.sticky-booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 95, 84, 0.12);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
 }

.booking-price-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #f1f0f6;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.booking-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

.booking-price-amount span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

.booking-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    
}

.booking-input-group label {
    font-size: 12px;
    font-weight: 500;
    color: #8a8d9f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--accent-teal);
    font-size: 15px;
    pointer-events: none;
}

.booking-input-wrapper input,
.booking-input-wrapper select {
    width: 100%;
    background-color: #f1f0f6;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 15px 12px 42px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.booking-input-wrapper input:focus,
.booking-input-wrapper textarea:focus {
    border-color: var(--accent-teal) !important;
    background-color: #ffffff !important;
}

/* Interactive Dynamic Real-Time Estimation Display Box */
.live-pricing-summary-box {
    background-color: #f7f5fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-summary-row.grand-total {
    border-top: 1px dashed #edeaf2;
    padding-top: 8px;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.btn-submit-booking {
    width: 100%;
    background-color: var(--accent-gold);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px 0;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit-booking:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}
 

/* --- Cinematic Showcase & Thumbnail Strip Core Scaffolding --- */
.pkg-gallery-engine {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pkg-showcase-frame {
    width: 100%;
    height: 460px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(17, 20, 45, 0.05);
    margin-bottom: 0;
}

.pkg-showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.pkg-thumbnails-stripe {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    width: 100%;
}

.thumb-frame {
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f1f0f6;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 4px 15px rgba(17, 20, 45, 0.01);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.thumb-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.75;
}

.thumb-frame:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 95, 84, 0.2);
}

.thumb-frame:hover img {
    opacity: 1;
}

.thumb-frame.active-thumb {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(214, 175, 55, 0.15);
}

.thumb-frame.active-thumb img {
    opacity: 1;
    transform: scale(1.04);
}
 


/* --- Premium Review Split System Architecture --- */
.pkg-reviews-editorial-block {
    grid-column: 1 / -1; /* Spans cleanly across the main grid wrapper width */
    margin-top: 60px;
    border-top: 1px solid #f1f0f6;
    padding-top: 50px;
}

.reviews-split-grid {
    display: grid;
    grid-template-columns: 42% 55%;
    gap: 3%;
    margin-top: 30px;
    align-items: start;
}

.review-sub-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.review-form-desc {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Form Container Aesthetics Card */
.review-form-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 95, 84, 0.08);
    border-radius: var(--border-radius-md);
    padding: 30px;
 }

/* Right Side Scroll Column Stream Container */
.reviews-display-stream {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stream-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar Styling for Premium Stream Details */
.stream-scroll-container::-webkit-scrollbar {
    width: 4px;
}
.stream-scroll-container::-webkit-scrollbar-track {
    background: #f7f5fa;
    border-radius: 10px;
}
.stream-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 10px;
}

/* Premium Editorial Review Entry Card Design Layout */
.editorial-review-card {
    background-color: #f7f5fa;
    border-radius: 12px;
    padding: 22px 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.editorial-review-card:hover {
    transform: translateY(-2px);
    background-color: #edeaf2;
}

.rev-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.rev-author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar {
    width: 38px;
    height: 38px;
    background-color: var(--accent-teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.rev-user-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.rev-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.rev-stars-tier {
    display: flex;
    gap: 3px;
    font-size: 11px;
    color: var(--accent-gold);
}

.rev-editorial-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
}

 /* Styling for Review Editorial Label & Form Control */
.booking-input-group label {
    font-size: 12px;
    font-weight: 500;
    color: #8a8d9f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.booking-input-wrapper textarea {
    width: 100%;
    background-color: #f1f0f6;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 15px 12px 42px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 110px;
}

.booking-input-wrapper textarea:focus {
    border-color: var(--accent-teal) !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 95, 84, 0.04);
}

/* --- Interactive Star Rating Engine Aesthetics --- */
.luxury-star-rating-engine {
    display: flex;
    flex-direction: row-reverse; /* Reverses execution context for CSS sibling selectors */
    justify-content: flex-end;
    gap: 6px;
    padding: 8px 5px;
}

/* Hide standard HTML radio inputs completely */
.luxury-star-rating-engine input[type="radio"] {
    display: none;
}

/* Base style for inactive star nodes */
.luxury-star-rating-engine label {
    font-size: 20px;
    color: #edeaf2; /* Minimal muted clean gray */
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 0 !important; /* Clears baseline layout drift */
}

/* Hover Scaling Effect */
.luxury-star-rating-engine label:hover {
    transform: scale(1.2);
}

/* Highlight stars based on active selection or hover tracking arrays */
.luxury-star-rating-engine input[type="radio"]:checked ~ label,
.luxury-star-rating-engine label:hover,
.luxury-star-rating-engine label:hover ~ label {
    color: var(--accent-gold);
}

/* ========================================================================== */
/* --- Mobile Viewports & Screen Breakpoint Engine Optimization (768px) ---  */
/* ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. Global View Wrapper Structural Alignment Adjustments */
    .view-pkg-wrapper {
        margin-top: 100px; /* Clean buffer clearing the fixed mobile header */
        padding: 24px 4%;
    }

    /* 2. Grid Matrix Collapse to Single Column Block Stack Layout */
    .view-pkg-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Generous separation before the sticky sidebar block maps natively */
    }
.luxury-star-rating-engine {
        /* Left alignment block elements clean krnna container rules updates */
        justify-content: flex-end; /* context direction eka pass karanna right bound ekata float karanna */
        flex-direction: row-reverse; /* default direction tracking keep reset */
        
        /* Star set eka absolute form field bounds walata left align karana engine tracking element padding */
        margin-right: auto; /* Meken right margin eka auto set wela mulu star group ekama perfect left margin ekata fix wenawa */
    }
    /* 3. Package Headings Scaling Parity & Perfect Center Optimization */
    .pkg-editorial-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pkg-main-title {
        font-size: 32px; /* Retained fully at pristine high-end structural scale */
        line-height: 1.2;
        text-align: center;
    }

    .pkg-cursive-sub {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }

    .editorial-section-title {
        text-align: center;
    }

.editorial-body-text {
    text-align: center;
    /* --- FIX: Force dynamic text to wrap nicely on mobile screens --- */
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
    /* 4. Quick Meta Highlights Row-to-Wrap Axis & Center Correction */
    .pkg-quick-meta-bar {
        flex-wrap: wrap;
        gap: 15px;
        padding: 12px 10px;
        margin-bottom: 25px;
        justify-content: center;
    }

    .meta-bar-item {
        font-size: 15px;
        width: 100%; /* Stacks items beautifully instead of forcing cramming conditions */
        justify-content: center;
    }

    /* 5. Cinematic Showcase Canvas Aspect Ratio Readjustment */
    .pkg-showcase-frame {
        height: 280px; /* Tightens aspect ratio profiles dynamically on narrow views */
        margin-bottom: 0;
    }

    .pkg-gallery-engine {
        gap: 12px;
        margin-bottom: 30px;
    }

    /* 6. Thumbnail Stripe Layout Matrix Adaptability & Center Alignment */
    .pkg-thumbnails-stripe {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .thumb-frame {
        height: 55px;
        width: 75px; /* Fixed structural calculation bounds for uniform wrapping */
        flex-shrink: 0;
        border-radius: 8px;
    }

    /* 7. Highlights List Centered Layout */
    .highlights-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .highlights-list li {
        justify-content: center;
        text-align: center;
    }

    /* 8. Timeline Accordion Expansion Layout Alignment */
    .itinerary-timeline {
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
    }

    .itinerary-timeline::before {
        display: none; /* Disables side timeline bar layout context for balanced full-width mobile cards */
    }

    .timeline-marker {
        display: none; /* Drops localized vector node dots to keep the blocks perfectly uniform */
    }

    .timeline-header-trigger {
        padding: 14px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .timeline-header-trigger > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .timeline-day-tag {
        margin-right: 0;
        display: inline-block;
    }

    .timeline-day-title {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .timeline-body-pane {
        padding: 15px 16px;
        text-align: center;
    }

    /* 9. Sticky Sidebar Unpinning & LEFT ALIGNED Labels Execution */
    .pkg-booking-sidebar-panel {
        position: relative; /* Disables sticky floating architecture matrix on mobile */
        top: 0;
        width: 100%;
        z-index: 5;
    }

    .sticky-booking-card {
        padding: 30px 20px;
        background: #ffffff; /* Swapped completely into full opaque masking */
        box-shadow: 0 10px 35px rgba(17, 20, 45, 0.04);
        display: flex;
        flex-direction: column;
    }
    
    .booking-price-header {
        text-align: left; /* Left align: Book Your Route label */
    }

    .booking-input-group label {
        text-align: left; /* Left align: Form input descriptors */
    }

    /* 10. Guest Experience Form-Card Matrix Split Breakouts & LEFT ALIGNED Title/Labels */
    .pkg-reviews-editorial-block {
        margin-top: 40px;
        padding-top: 35px;
        text-align: center; /* Main section heading remains centered */
    }

    .reviews-split-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .review-sub-title {
        text-align: left; /* Left align: Share Your Journey title */
    }

    .review-form-desc {
        text-align: left; /* Left align: Review descriptive text */
    }

    .review-form-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Stretches nodes back to form matrix bounds cleanly */
    }

    .luxury-review-engine {
        width: 100%;
    }

    .luxury-star-rating-engine {
        justify-content: flex-start; /* Keeps rating system matching standard left-aligned fields */
    }

    .stream-scroll-container {
        max-height: 480px;
        padding-right: 0;
    }
}

/* ========================================================================== */
/* --- Extra Small Viewports & Compact Screen Matrices Optimization (576px) -- */
/* ========================================================================== */
@media screen and (max-width: 576px) {
    /* 1. Reset explicit inline structures injected via templates */
    #bookingEngineForm div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* 2. Re-balance breadcrumb alignment bounds cleanly to the center */
    .pkg-breadcrumb-nav {
        gap: 6px;
        justify-content: center;
    }

    .crumb-current {
        max-width: 180px; /* Restricts overflow vibration triggers on ultra-thin screens */
    }

    /* 3. Review Author Meta Compression & Absolute Center-Stack Handling */
    .editorial-review-card {
        text-align: center;
    }

    .rev-card-header {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .rev-author-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .rev-stars-tier {
        padding-left: 0; /* Clears left offsets for precise mid-point alignment grids */
        margin-top: 0;
        justify-content: center;
        width: 100%;
    }
}


/* --- Inclusions & Exclusions Grid Setup --- */
.status-header {
    margin-top: 50px;
}

.inc-exc-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
}

/* Panel Header Typography */
.inclusion-column-panel .inc-title {
    color: var(--accent-teal);
    font-size: 18px;
    margin-bottom: 15px;
}

.exclusion-column-panel .exc-title {
    color: #e36b2e; /* Brand Accent Orange */
    font-size: 18px;
    margin-bottom: 15px;
}

.inc-title i, .exc-title i {
    margin-right: 8px;
}

/* Dynamic List Mechanics */
.dynamic-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.dynamic-status-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Vector Nodes (Icons) Positioning */
.dynamic-status-list li .inc-icon {
    color: var(--accent-teal);
    margin-top: 3px;
    font-size: 14px;
}

.dynamic-status-list li .exc-icon {
    color: #e36b2e;
    margin-top: 3px;
    font-size: 14px;
}

/* Empty Handling Aesthetics */
.dynamic-status-list .empty-status-msg {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
}

/* ========================================================================== */
/* --- Mobile Viewports Layout Adaptation Breakpoint (768px) ---              */
/* ========================================================================== */
@media screen and (max-width: 768px) {
    .status-header {
        text-align: center;
    }

    .inc-exc-split-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Center align headers on mobile */
    .inclusion-column-panel .inc-title, 
    .exclusion-column-panel .exc-title {
        text-align: center;
    }
    
    /* Flex grid components center alignment engine */
    .dynamic-status-list {
        align-items: center;
        width: 100%;
    }
    
    /* Ensure child list rows mount exactly from the center point */
    .dynamic-status-list li {
        justify-content: center;
        text-align: center;
    }
}

.btn-luxury-readmore:hover {
    opacity: 0.8;
    text-decoration: underline;
}


/* --- Premium Luxury Action & Share Layout --- */
.pkg-luxury-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #f1f0f6;
    border-radius: 12px;
    padding: 14px 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(17, 20, 45, 0.02);
}

.pkg-total-reviews-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.pkg-total-reviews-badge i {
    color: var(--accent-teal);
    font-size: 16px;
}

.pkg-total-reviews-badge strong {
    color: var(--accent-teal);
}

.btn-luxury-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f0f6;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-luxury-share i {
    color: var(--accent-teal);
    transition: color 0.3s ease;
}

/* Hover Animations */
.btn-luxury-share:hover {
    background-color: var(--accent-gold-hover) !important;
    color: #ffffff !important;
}

.btn-luxury-share:hover i {
    color: #ffffff;
}

/* --- Mobile Viewports Layout Adaptation Breakpoint (768px) --- */
@media screen and (max-width: 768px) {
    .pkg-luxury-action-bar {
        flex-direction: column;    
        align-items: flex-start;   
        gap: 16px;                
        padding: 16px;            
    }

    .btn-luxury-share {
        width: 100%;             
        justify-content: center;  
        padding: 12px 14px;       
    }
}