/* ── Lombok Glamping — Packages page styles ──────────────────────────────── */

.lgpkg-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px 56px;
    font-family: 'Georgia', serif;
    color: #2c2c2c;
}

.lgpkg-intro {
    text-align: center;
    margin-bottom: 40px;
}

.lgpkg-heading {
    font-size: 2rem;
    color: #1a3a2a;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.lgpkg-subheading {
    font-size: 1rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Card list ────────────────────────────────────────────────────────────── */

.lgpkg-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

/* ── Card ─────────────────────────────────────────────────────────────────── */

.lgpkg-card {
    display: flex;
    border: 1px solid #e0dbd3;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 280px;
}

.lgpkg-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    transform: translateY(-2px);
}

.lgpkg-card--featured {
    border-color: #c9a84c;
    border-width: 2px;
}

/* ── Hero image panel ─────────────────────────────────────────────────────── */

.lgpkg-card__image {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.lgpkg-card__badge {
    display: inline-block;
    background: #c9a84c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 10px;
    align-self: flex-start;
}

.lgpkg-card__image-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lgpkg-card__image-label {
    font-size: 0.62rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    text-transform: uppercase;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,.35);
}

.lgpkg-card__image-nights {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Georgia', serif;
    text-shadow: 0 1px 4px rgba(0,0,0,.35);
    line-height: 1;
}

/* ── Content panel ────────────────────────────────────────────────────────── */

.lgpkg-card__content {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.lgpkg-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.lgpkg-card__name {
    font-size: 1.35rem;
    color: #1a3a2a;
    margin: 0;
    line-height: 1.2;
}

.lgpkg-card__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lgpkg-card__loc-tag {
    font-size: 0.72rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #555;
    background: #f5f0eb;
    border: 1px solid #e0dbd3;
    padding: 3px 9px;
    border-radius: 12px;
    white-space: nowrap;
}

.lgpkg-card__desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.lgpkg-card__includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.lgpkg-card__includes li {
    font-size: 0.78rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2e7d32;
    font-weight: 600;
}

.lgpkg-card__includes li::before {
    content: '✓ ';
}

/* ── Date section ─────────────────────────────────────────────────────────── */

.lgpkg-card__dates {
    background: #f9f7f4;
    border: 1px solid #e0dbd3;
    border-radius: 8px;
    padding: 12px 16px;
}

.lgpkg-nights-badge {
    display: inline-block;
    background: #1a3a2a;
    color: #fff;
    font-size: 0.7rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.lgpkg-date-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.lgpkg-date-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}

.lgpkg-date-label {
    font-size: 0.72rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lgpkg-date-input {
    border: 1px solid #d0cbc4;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2c;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.lgpkg-date-input:focus {
    outline: none;
    border-color: #1a3a2a;
    box-shadow: 0 0 0 2px rgba(26,58,42,.12);
}

.lgpkg-date-input--auto {
    background: #f0ede9;
    color: #777;
    cursor: default;
    border-color: #e0dbd3;
    font-style: italic;
}

.lgpkg-date-sep {
    font-size: 1rem;
    color: #aaa;
    padding-bottom: 8px;
    flex-shrink: 0;
}

.lgpkg-card__error {
    font-size: 0.82rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #c62828;
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0;
}

/* ── Footer: price + button ───────────────────────────────────────────────── */

.lgpkg-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    flex-wrap: wrap;
}

.lgpkg-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lgpkg-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lgpkg-promo-badge {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 0.65rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
}

.lgpkg-card__price-original {
    font-size: 0.88rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #aaa;
    text-decoration: line-through;
}

.lgpkg-card__price-amount {
    font-size: 1.55rem;
    color: #c9a84c;
    font-family: 'Georgia', serif;
    line-height: 1;
    font-weight: 700;
}

.lgpkg-card__price-note {
    font-size: 0.72rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #999;
}

.lgpkg-card__fine-print {
    font-size: 0.65rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #bbb;
    font-style: italic;
    max-width: 220px;
    line-height: 1.4;
    margin-top: 2px;
}

.lgpkg-card__btn {
    background: #1a3a2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 24px;
    font-size: 0.92rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.lgpkg-card__btn:hover {
    background: #c9a84c;
}

.lgpkg-card--featured .lgpkg-card__btn {
    background: #c9a84c;
}

.lgpkg-card--featured .lgpkg-card__btn:hover {
    background: #1a3a2a;
}

/* ── Custom trip link ─────────────────────────────────────────────────────── */

.lgpkg-custom-link {
    text-align: center;
    padding: 24px;
    border-top: 1px solid #e0dbd3;
    color: #888;
    font-size: 0.88rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lgpkg-custom-link p { margin: 0 0 8px; }

.lgpkg-custom-link a {
    color: #1a3a2a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 1px;
}

.lgpkg-custom-link a:hover { color: #c9a84c; }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 680px) {
    .lgpkg-card {
        flex-direction: column;
        min-height: unset;
    }

    .lgpkg-card__image {
        width: 100%;
        min-height: 180px;
        justify-content: flex-start;
    }

    .lgpkg-card__content {
        padding: 20px;
    }

    .lgpkg-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .lgpkg-card__btn {
        width: 100%;
        text-align: center;
    }

    .lgpkg-card__fine-print {
        max-width: 100%;
    }

    .lgpkg-heading { font-size: 1.5rem; }
}
