/* ============================================================
   LIGHT PACKAGE BOOKING ENGINE
   Aesthetic: Luxury Travel Editorial
   Palette: Deep navy + warm terracotta + sand + cream
   Typography: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --lp-navy: #1a2744;
    --lp-navy-light: #2a3a5c;
    --lp-terracotta: #c4704b;
    --lp-terracotta-light: #d4896a;
    --lp-terracotta-dark: #a85a3a;
    --lp-sand: #f0e6d3;
    --lp-sand-light: #f7f2ea;
    --lp-cream: #faf8f5;
    --lp-gold: #c9a96e;
    --lp-green: #3d7a5f;
    --lp-green-light: #e8f5ee;
    --lp-red: #c44b4b;
    --lp-red-light: #fdeaea;
    --lp-text: #1a2744;
    --lp-text-muted: #6b7a8d;
    --lp-border: #e2ddd6;
    --lp-shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
    --lp-shadow-hover: 0 8px 32px rgba(26, 39, 68, 0.14);
    --lp-radius: 12px;
    --lp-radius-sm: 8px;
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-font-display: 'DM Serif Display', Georgia, serif;
    --lp-font-body: 'DM Sans', -apple-system, sans-serif;
}

/* ---- GLOBAL ---- */

.lp-page {
    font-family: var(--lp-font-body);
    color: var(--lp-text);
    background: var(--lp-cream);
}

.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 {
    font-family: var(--lp-font-display);
    font-weight: 400;
}

/* ---- HERO SEARCH ---- */

.lp-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--lp-navy);
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.55) 50%, rgba(196,112,75,0.3) 100%);
    z-index: 1;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: saturate(0.7);
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    width: 100%;
}

.lp-hero-title {
    font-family: var(--lp-font-display);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.lp-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    font-weight: 300;
}

/* ---- SEARCH FORM ---- */

.lp-search-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--lp-radius);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 760px;
    margin: 0 auto;
}

.lp-search-card label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--lp-text-muted);
    margin-bottom: 6px;
    display: block;
}

.lp-search-card .form-select,
.lp-search-card .form-control {
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: var(--lp-font-body);
    color: var(--lp-text);
    background: var(--lp-cream);
    transition: var(--lp-transition);
}

.lp-search-card .form-select:focus,
.lp-search-card .form-control:focus {
    border-color: var(--lp-terracotta);
    box-shadow: 0 0 0 3px rgba(196,112,75,0.15);
    outline: none;
}

.lp-travelers-row {
    display: flex;
    gap: 12px;
}

.lp-travelers-row > div {
    flex: 1;
}

.lp-btn-search {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--lp-terracotta);
    color: #fff;
    border: none;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-display);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--lp-transition);
    margin-top: 8px;
}

.lp-btn-search:hover {
    background: var(--lp-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,112,75,0.35);
}

/* ---- RESULTS PAGE ---- */

.lp-results-header {
    background: var(--lp-navy);
    color: #fff;
    padding: 24px 0;
}

.lp-results-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.lp-results-summary .lp-summary-item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.lp-results-summary .lp-summary-item i {
    color: var(--lp-terracotta-light);
}

.lp-results-count {
    font-family: var(--lp-font-display);
    font-size: 1.6rem;
    margin: 24px 0 8px;
}

.lp-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding-bottom: 48px;
}

/* ---- PACKAGE CARD ---- */

.lp-card {
    background: #fff;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    transition: var(--lp-transition);
    position: relative;
    cursor: pointer;
}

.lp-card:hover {
    box-shadow: var(--lp-shadow-hover);
    transform: translateY(-4px);
}

.lp-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.lp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-card:hover .lp-card-image img {
    transform: scale(1.05);
}

.lp-card-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
}

.lp-label-best-value {
    background: var(--lp-green);
    color: #fff;
}

.lp-label-best-rated {
    background: var(--lp-gold);
    color: var(--lp-navy);
}

.lp-label-most-popular {
    background: var(--lp-terracotta);
    color: #fff;
}

.lp-card-stars {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 100px;
    color: var(--lp-gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.lp-card-body {
    padding: 20px;
}

.lp-card-hotel-name {
    font-family: var(--lp-font-display);
    font-size: 1.25rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.lp-card-board {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.lp-card-flight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--lp-sand-light);
    border-radius: var(--lp-radius-sm);
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.lp-card-flight i {
    color: var(--lp-terracotta);
}

.lp-card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.lp-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lp-badge-transfer {
    background: var(--lp-green-light);
    color: var(--lp-green);
}

.lp-badge-excursions {
    background: var(--lp-sand);
    color: var(--lp-terracotta-dark);
}

.lp-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--lp-border);
}

.lp-card-price-label {
    font-size: 0.7rem;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-card-price {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    color: var(--lp-navy);
    line-height: 1;
}

.lp-card-price-total {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
}

.lp-btn-select {
    padding: 10px 24px;
    background: var(--lp-navy);
    color: #fff;
    border: none;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-btn-select:hover {
    background: var(--lp-terracotta);
    transform: translateY(-1px);
}

/* ---- FILTERS SIDEBAR ---- */

.lp-filters {
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 24px;
    box-shadow: var(--lp-shadow);
    position: sticky;
    top: 100px;
}

.lp-filters h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lp-sand);
}

.lp-filter-group {
    margin-bottom: 20px;
}

.lp-filter-group label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-text-muted);
    margin-bottom: 8px;
    display: block;
}

.lp-star-filter {
    display: flex;
    gap: 6px;
}

.lp-star-btn {
    width: 40px;
    height: 36px;
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-star-btn.active,
.lp-star-btn:hover {
    border-color: var(--lp-gold);
    background: rgba(201,169,110,0.1);
    color: var(--lp-gold);
}

/* ---- CUSTOMIZE PAGE ---- */

.lp-customize-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.lp-section-title {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-section-title i {
    color: var(--lp-terracotta);
}

.lp-selected-card {
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 20px;
    box-shadow: var(--lp-shadow);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-selected-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lp-icon-flight { background: var(--lp-sand); color: var(--lp-terracotta); }
.lp-icon-hotel { background: var(--lp-sand); color: var(--lp-navy); }
.lp-icon-transfer { background: var(--lp-green-light); color: var(--lp-green); }

.lp-selected-card-info {
    flex: 1;
    min-width: 0;
}

.lp-selected-card-info h5 {
    font-family: var(--lp-font-display);
    font-size: 1rem;
    margin-bottom: 2px;
}

.lp-selected-card-info p {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-btn-change {
    padding: 8px 16px;
    background: transparent;
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp-terracotta);
    cursor: pointer;
    transition: var(--lp-transition);
    white-space: nowrap;
}

.lp-btn-change:hover {
    border-color: var(--lp-terracotta);
    background: rgba(196,112,75,0.05);
}

.lp-transfer-included {
    padding: 3px 10px;
    background: var(--lp-green-light);
    color: var(--lp-green);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 100px;
    white-space: nowrap;
}

/* ---- EXCURSIONS GRID ---- */

.lp-excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.lp-exc-card {
    background: #fff;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    transition: var(--lp-transition);
}

.lp-exc-card:hover {
    box-shadow: var(--lp-shadow-hover);
}

.lp-exc-card-image {
    height: 140px;
    overflow: hidden;
}

.lp-exc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-exc-card-body {
    padding: 14px;
}

.lp-exc-card-body h5 {
    font-family: var(--lp-font-display);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.lp-exc-card-body .lp-exc-meta {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    margin-bottom: 10px;
}

.lp-exc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-exc-price {
    font-family: var(--lp-font-display);
    font-size: 1.05rem;
    color: var(--lp-navy);
}

.lp-btn-add {
    padding: 6px 16px;
    background: var(--lp-navy);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-btn-add:hover {
    background: var(--lp-terracotta);
}

.lp-btn-add.added {
    background: var(--lp-green);
}

.lp-btn-add.added::before {
    content: '✓ ';
}

/* ---- PRICING SIDEBAR ---- */

.lp-pricing-sidebar {
    background: #fff;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.lp-pricing-sidebar h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lp-sand);
}

.lp-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.88rem;
}

.lp-pricing-row.included {
    color: var(--lp-green);
}

.lp-pricing-row span:last-child {
    font-weight: 600;
}

.lp-pricing-divider {
    border: none;
    border-top: 1.5px solid var(--lp-sand);
    margin: 12px 0;
}

.lp-pricing-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 4px 0 16px;
}

.lp-pricing-total-label {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
}

.lp-pricing-total-amount {
    font-family: var(--lp-font-display);
    font-size: 1.8rem;
    color: var(--lp-navy);
    line-height: 1;
}

.lp-pricing-total-sub {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    text-align: right;
}

.lp-btn-continue {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--lp-terracotta);
    color: #fff;
    border: none;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-display);
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--lp-transition);
    text-align: center;
    text-decoration: none;
}

.lp-btn-continue:hover {
    background: var(--lp-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,112,75,0.35);
    color: #fff;
}

.lp-back-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    text-decoration: none;
}

.lp-back-link:hover {
    color: var(--lp-terracotta);
}

/* ---- FLIGHT CHANGE OFFCANVAS ---- */

.lp-offcanvas {
    width: 440px !important;
    border-left: none !important;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.lp-offcanvas .offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-offcanvas .offcanvas-title {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
}

.lp-flight-option {
    padding: 16px 24px;
    border-bottom: 1px solid var(--lp-sand);
    cursor: pointer;
    transition: var(--lp-transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-flight-option:hover {
    background: var(--lp-sand-light);
}

.lp-flight-option.current {
    background: var(--lp-sand);
    border-left: 3px solid var(--lp-terracotta);
}

.lp-flight-option-info h6 {
    font-family: var(--lp-font-display);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.lp-flight-option-info p {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-delta-price {
    font-family: var(--lp-font-display);
    font-size: 0.95rem;
    white-space: nowrap;
}

.lp-delta-positive { color: var(--lp-red); }
.lp-delta-negative { color: var(--lp-green); }
.lp-delta-zero { color: var(--lp-text-muted); }

/* ---- PASSENGER / PAYMENT FORMS ---- */

.lp-form-section {
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 28px;
    box-shadow: var(--lp-shadow);
    margin-bottom: 24px;
}

.lp-form-section h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lp-sand);
}

.lp-form-section label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--lp-text-muted);
    margin-bottom: 4px;
}

.lp-form-section .form-control {
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 10px 14px;
    font-family: var(--lp-font-body);
    background: var(--lp-cream);
    transition: var(--lp-transition);
}

.lp-form-section .form-control:focus {
    border-color: var(--lp-terracotta);
    box-shadow: 0 0 0 3px rgba(196,112,75,0.12);
}

.lp-traveler-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.lp-traveler-number {
    width: 32px;
    height: 32px;
    background: var(--lp-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
}

/* ---- CONFIRMATION ---- */

.lp-confirmation-hero {
    text-align: center;
    padding: 48px 20px;
    background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-light) 100%);
    color: #fff;
}

.lp-confirmation-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.lp-confirmation-ref {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 12px;
}

/* ---- SKELETON LOADING ---- */

@keyframes lp-shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.lp-skeleton {
    background: linear-gradient(90deg, var(--lp-sand) 25%, var(--lp-sand-light) 50%, var(--lp-sand) 75%);
    background-size: 800px 100%;
    animation: lp-shimmer 1.5s infinite ease-in-out;
    border-radius: var(--lp-radius-sm);
}

.lp-skeleton-card {
    background: #fff;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
}

.lp-skeleton-image {
    height: 200px;
}

.lp-skeleton-text {
    height: 14px;
    margin: 12px 20px;
    width: 60%;
}

.lp-skeleton-text-sm {
    height: 10px;
    margin: 8px 20px;
    width: 40%;
}

.lp-skeleton-price {
    height: 24px;
    margin: 16px 20px 20px;
    width: 30%;
}

/* ---- STEP INDICATOR ---- */

.lp-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
}

.lp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    position: relative;
}

.lp-step::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--lp-border);
    margin-left: 8px;
}

.lp-step:last-child::after { display: none; }

.lp-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.lp-step.active .lp-step-num {
    background: var(--lp-terracotta);
    border-color: var(--lp-terracotta);
    color: #fff;
}

.lp-step.active {
    color: var(--lp-text);
    font-weight: 600;
}

.lp-step.done .lp-step-num {
    background: var(--lp-green);
    border-color: var(--lp-green);
    color: #fff;
}

/* ---- PRICE COUNTER ANIMATION ---- */

@keyframes lp-price-flash {
    0% { color: var(--lp-terracotta); }
    100% { color: var(--lp-navy); }
}

.lp-price-updated {
    animation: lp-price-flash 0.6s ease;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 992px) {
    .lp-customize-layout {
        grid-template-columns: 1fr;
    }

    .lp-pricing-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        border-radius: var(--lp-radius) var(--lp-radius) 0 0;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
        padding: 16px 20px;
    }

    .lp-offcanvas {
        width: 100% !important;
    }

    .lp-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .lp-hero-title { font-size: 2rem; }
    .lp-search-card { padding: 20px; }
    .lp-travelers-row { flex-direction: column; gap: 8px; }
    .lp-steps { overflow-x: auto; justify-content: flex-start; padding: 12px 16px; }
    .lp-step { font-size: 0.72rem; padding: 6px 10px; }
}

/* ---- LOADING OVERLAY ---- */

.lp-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 39, 68, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lp-loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lp-loading-content {
    text-align: center;
    color: #fff;
    max-width: 400px;
    padding: 0 20px;
}

.lp-loading-content h3 {
    font-family: var(--lp-font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.lp-loading-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.lp-loading-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--lp-terracotta);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: lp-spin 0.9s linear infinite;
}

@keyframes lp-spin {
    to { transform: rotate(360deg); }
}

.lp-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.lp-loading-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.3);
    padding: 10px 16px;
    border-radius: var(--lp-radius-sm);
    transition: all 0.4s ease;
}

.lp-loading-step i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.lp-loading-step.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.lp-loading-step.active::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--lp-terracotta-light);
    border-radius: 50%;
    margin-left: auto;
    animation: lp-spin 0.8s linear infinite;
}

.lp-loading-step.done {
    color: var(--lp-green);
    background: rgba(61, 122, 95, 0.12);
}

.lp-loading-step.done::after {
    content: '\2713';
    display: inline-block;
    width: auto;
    height: auto;
    border: none;
    margin-left: auto;
    font-weight: 700;
    animation: none;
}

/* ---- TEXTURE OVERLAY ---- */

.lp-texture {
    position: relative;
}

.lp-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
