/*customer/index.php*/
.customer-dashboard-page {
    --customer-primary: #f4511e;
    --customer-primary-dark: #d93d0e;
    --customer-blue: #087eaf;
    --customer-text: #172033;
    --customer-muted: #65748b;
    --customer-border: #e7ebf1;
    --customer-bg: #f5f7fb;
    --customer-white: #ffffff;
    --customer-shadow: 0 16px 42px rgba(22, 32, 51, 0.08);

    min-height: 75vh;
    padding: 30px 0 60px;
    background:
        radial-gradient(
            circle at 5% 0%,
            rgba(244, 81, 30, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 10%,
            rgba(8, 126, 175, 0.08),
            transparent 25%
        ),
        var(--customer-bg);
}

.customer-dashboard-page *,
.customer-dashboard-page *::before,
.customer-dashboard-page *::after {
    box-sizing: border-box;
}

.customer-dashboard-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.customer-welcome-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 26px;
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            #087eaf 0%,
            #075d86 58%,
            #064c70 100%
        );
    box-shadow: 0 20px 55px rgba(4, 85, 126, 0.23);
}

.customer-welcome-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -165px;
    right: 10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.customer-welcome-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(244, 81, 30, 0.27);
}

.customer-welcome-content,
.customer-welcome-actions {
    position: relative;
    z-index: 2;
}

.customer-user-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-user-avatar {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border: 4px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    background: var(--customer-primary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.17);
}

.customer-greeting {
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.customer-welcome-card h1 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
}

.customer-welcome-description {
    max-width: 680px;
    margin: 13px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.customer-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}

.customer-main-action,
.customer-secondary-action {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.customer-main-action {
    color: #ffffff;
    background: var(--customer-primary);
    box-shadow: 0 11px 22px rgba(244, 81, 30, 0.28);
}

.customer-main-action:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: var(--customer-primary-dark);
}

.customer-secondary-action {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.customer-secondary-action:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.17);
}

.customer-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin-top: 22px;
}

.customer-summary-card {
    position: relative;
    min-width: 0;
    padding: 21px;
    overflow: hidden;
    border: 1px solid var(--customer-border);
    border-radius: 20px;
    background: var(--customer-white);
    box-shadow: 0 8px 28px rgba(22, 32, 51, 0.055);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.customer-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--customer-shadow);
}

.customer-summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.customer-summary-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 20px;
}

.customer-summary-icon.blue {
    color: #087eaf;
    background: #eaf7fc;
}

.customer-summary-icon.orange {
    color: #f4511e;
    background: #fff0ea;
}

.customer-summary-icon.green {
    color: #138a53;
    background: #e9f8f0;
}

.customer-summary-icon.purple {
    color: #7655d8;
    background: #f1edff;
}

.customer-summary-label {
    margin: 17px 0 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--customer-muted);
}

.customer-summary-value {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: clamp(24px, 2.4vw, 31px);
    line-height: 1.1;
    font-weight: 600;
    color: var(--customer-text);
}

.customer-summary-note {
    margin: 9px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #8490a3;
}

.customer-dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
    gap: 21px;
    margin-top: 22px;
}

.customer-dashboard-column {
    min-width: 0;
}

.customer-panel-card {
    overflow: hidden;
    border: 1px solid var(--customer-border);
    border-radius: 22px;
    background: var(--customer-white);
    box-shadow: 0 8px 28px rgba(22, 32, 51, 0.055);
}

.customer-panel-card + .customer-panel-card {
    margin-top: 21px;
}

.customer-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 21px 22px;
    border-bottom: 1px solid var(--customer-border);
}

.customer-panel-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-panel-heading-icon {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 18px;
    color: var(--customer-primary);
    background: #fff0ea;
}

.customer-panel-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--customer-text);
}

.customer-panel-header p {
    margin: 3px 0 0;
    font-size: 12px;
    color: var(--customer-muted);
}

.customer-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    color: var(--customer-blue);
}

.customer-panel-link:hover {
    color: var(--customer-primary);
}

.customer-booking-list {
    padding: 3px 21px;
}

.customer-booking-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 2px;
    border-bottom: 1px solid #edf0f4;
}

.customer-booking-row:last-child {
    border-bottom: 0;
}

.customer-booking-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.customer-booking-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 20px;
    color: var(--customer-blue);
    background: #edf8fc;
}

.customer-booking-content {
    min-width: 0;
}

.customer-booking-title {
    margin: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    color: var(--customer-text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.customer-booking-reference {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--customer-muted);
}

.customer-booking-date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    font-size: 12px;
    color: #7b8798;
}

.customer-booking-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.customer-booking-amount {
    font-size: 15px;
    font-weight: 500;
    color: var(--customer-text);
}

.customer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.customer-status-success {
    color: #117944;
    background: #e9f8f0;
}

.customer-status-warning {
    color: #9b6500;
    background: #fff6dd;
}

.customer-status-danger {
    color: #bd3027;
    background: #ffebe9;
}

.customer-status-primary {
    color: #076b98;
    background: #e8f6fc;
}

.customer-status-info {
    color: #166d7d;
    background: #e7f7fa;
}

.customer-status-dark {
    color: #394254;
    background: #edf0f4;
}

.customer-status-secondary {
    color: #667085;
    background: #f1f3f6;
}

.customer-booking-view {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    color: var(--customer-blue);
}

.customer-empty-state {
    padding: 44px 24px;
    text-align: center;
}

.customer-empty-icon {
    width: 67px;
    height: 67px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-size: 27px;
    color: var(--customer-primary);
    background: #fff0ea;
}

.customer-empty-state h3 {
    margin: 0 0 7px;
    font-size: 18px;
    font-weight: 500;
    color: var(--customer-text);
}

.customer-empty-state p {
    max-width: 440px;
    margin: 0 auto 17px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--customer-muted);
}

.customer-next-stay {
    padding: 22px;
}

.customer-next-stay-card {
    position: relative;
    overflow: hidden;
    padding: 23px;
    border-radius: 19px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #f4511e 0%,
            #e23e0d 100%
        );
}

.customer-next-stay-card::after {
    content: "\F417";
    position: absolute;
    right: -7px;
    bottom: -34px;
    font-family: "bootstrap-icons";
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.09);
}

.customer-next-label {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.customer-next-hotel {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
    color: #ffffff;
}

.customer-next-dates {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.86);
}

.customer-next-button {
    position: relative;
    z-index: 2;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    padding: 0 15px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #e23e0d;
    background: #ffffff;
}

.customer-next-button:hover {
    color: #bd3109;
    background: #fff8f5;
}

.customer-profile-card {
    padding: 22px;
}

.customer-profile-progress-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.customer-profile-progress-head strong {
    font-size: 14px;
    color: var(--customer-text);
}

.customer-profile-progress-head span {
    font-size: 21px;
    font-weight: 600;
    color: var(--customer-primary);
}

.customer-profile-progress {
    width: 100%;
    height: 9px;
    overflow: hidden;
    margin-top: 12px;
    border-radius: 999px;
    background: #edf0f4;
}

.customer-profile-progress-bar {
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #f4511e,
            #ff7b4f
        );
}

.customer-profile-message {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--customer-muted);
}

.customer-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    padding: 19px;
}

.customer-quick-card {
    min-width: 0;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--customer-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--customer-text);
    background: #ffffff;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.customer-quick-card:hover {
    color: var(--customer-text);
    transform: translateY(-2px);
    border-color: rgba(244, 81, 30, 0.35);
    box-shadow: 0 11px 25px rgba(22, 32, 51, 0.08);
}

.customer-quick-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.customer-quick-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 17px;
    color: var(--customer-primary);
    background: #fff0ea;
}

.customer-quick-arrow {
    color: #99a3b2;
}

.customer-quick-card strong {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
}

.customer-quick-card small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.45;
    color: var(--customer-muted);
}

.customer-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--customer-border);
}

.customer-mini-stat {
    padding: 17px 10px;
    text-align: center;
    border-right: 1px solid var(--customer-border);
}

.customer-mini-stat:last-child {
    border-right: 0;
}

.customer-mini-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--customer-text);
}

.customer-mini-stat span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: var(--customer-muted);
}

@media (max-width: 1050px) {
    .customer-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-dashboard-layout {
        grid-template-columns: 1fr;
    }

    .customer-dashboard-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 21px;
    }

    .customer-dashboard-side .customer-panel-card {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .customer-dashboard-page {
        padding: 18px 0 40px;
    }

    .customer-welcome-card {
        grid-template-columns: 1fr;
        padding: 23px 19px;
        border-radius: 21px;
    }

    .customer-user-line {
        align-items: flex-start;
    }

    .customer-user-avatar {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .customer-welcome-actions {
        justify-content: flex-start;
    }

    .customer-main-action,
    .customer-secondary-action {
        flex: 1 1 150px;
    }

    .customer-summary-grid {
        gap: 12px;
    }

    .customer-summary-card {
        padding: 17px;
        border-radius: 17px;
    }

    .customer-summary-icon {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }

    .customer-dashboard-side {
        grid-template-columns: 1fr;
    }

    .customer-booking-row {
        grid-template-columns: 1fr;
    }

    .customer-booking-side {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding-left: 62px;
    }
}

@media (max-width: 520px) {
    .customer-summary-grid {
        grid-template-columns: 1fr;
    }

    .customer-summary-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 14px;
    }

    .customer-summary-top {
        grid-row: 1 / span 3;
    }

    .customer-summary-label {
        margin-top: 0;
    }

    .customer-summary-value {
        font-size: 27px;
    }

    .customer-quick-grid {
        grid-template-columns: 1fr;
    }

    .customer-panel-header {
        align-items: flex-start;
        padding: 18px;
    }

    .customer-booking-list {
        padding: 2px 17px;
    }

    .customer-booking-side {
        padding-left: 0;
    }

    .customer-mini-stat strong {
        font-size: 17px;
    }
}
/*customer/index.php*/



/*list-your-property.php*/
.lyp-page{
  --lyp-brand:var(--brand,#e5484d);
  --lyp-brand-dark:var(--brand-dark,#c82f36);
  --lyp-brand-rgb:var(--brand-rgb,229,72,77);
  --lyp-ink:#101828;
  --lyp-muted:#667085;
  --lyp-line:#e4e7ec;
  --lyp-soft:#f7f8fa;
  color:var(--lyp-ink);
  background:#fff;
  overflow:hidden;
}
.lyp-page *{box-sizing:border-box}
.lyp-page h1,.lyp-page h2,.lyp-page h3{color:var(--lyp-ink);letter-spacing:-.028em}
.lyp-page p{color:var(--lyp-muted);line-height:1.75}
.lyp-section{padding:72px 0}
.lyp-hero{position:relative;padding:34px 0 84px;background:linear-gradient(135deg,#fff 0%,#fff7f7 52%,#f5f8ff 100%);border-bottom:1px solid #edf0f4}
.lyp-hero:before{content:"";position:absolute;width:460px;height:460px;border-radius:50%;right:-210px;top:-160px;background:radial-gradient(circle,rgba(var(--lyp-brand-rgb),.15),rgba(var(--lyp-brand-rgb),0) 68%);pointer-events:none}
.lyp-hero:after{content:"";position:absolute;width:260px;height:260px;border-radius:50%;left:-150px;bottom:-120px;border:42px solid rgba(var(--lyp-brand-rgb),.055);pointer-events:none}
.lyp-hero-container{position:relative;z-index:1}
.lyp-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:42px;font-size:.84rem;color:#7b8492}
.lyp-breadcrumb a{color:#667085;text-decoration:none}.lyp-breadcrumb a:hover{color:var(--lyp-brand)}.lyp-breadcrumb i{font-size:.68rem}
.lyp-eyebrow,.lyp-kicker{display:inline-flex;align-items:center;gap:8px;color:var(--lyp-brand-dark);font-size:.76rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase}
.lyp-eyebrow{padding:9px 13px;background:#fff;border:1px solid rgba(var(--lyp-brand-rgb),.18);border-radius:999px;box-shadow:0 8px 28px rgba(16,24,40,.06)}
.lyp-hero h1{max-width:560px;margin:10px 0 8px;font-size:clamp(1rem,1.6vw,1.25rem);font-weight:500;line-height:1.1}
.lyp-hero-copy{max-width:650px;margin:0;font-size:1rem}
.lyp-hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-top:30px}
.lyp-btn-primary,.lyp-btn-secondary,.lyp-btn-light{min-height:52px;padding:13px 22px;border-radius:12px;font-weight:500;display:inline-flex;align-items:center;justify-content:center;gap:9px;transition:.22s ease;text-decoration:none}
.lyp-btn-primary{color:#fff!important;background:linear-gradient(135deg,var(--lyp-brand),var(--lyp-brand-dark));border:1px solid var(--lyp-brand);box-shadow:0 13px 28px rgba(var(--lyp-brand-rgb),.24)}
.lyp-btn-primary:hover{transform:translateY(-2px);box-shadow:0 17px 34px rgba(var(--lyp-brand-rgb),.3)}
.lyp-btn-secondary{color:var(--lyp-ink)!important;background:#fff;border:1px solid #d0d5dd}.lyp-btn-secondary:hover{transform:translateY(-2px);border-color:rgba(var(--lyp-brand-rgb),.35);color:var(--lyp-brand-dark)!important}
.lyp-support-line{display:inline-flex;align-items:center;gap:12px;margin-top:24px;color:var(--lyp-ink);text-decoration:none}.lyp-support-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#fff;border:1px solid var(--lyp-line);color:var(--lyp-brand)}.lyp-support-line small,.lyp-support-line strong{display:block}.lyp-support-line small{font-size:.75rem;color:#7b8492}.lyp-support-line strong{font-size:.96rem;margin-top:1px}
.lyp-hero-visual{position:relative;min-height:420px;border-radius:24px;overflow:visible}.lyp-hero-visual>img{width:100%;height:420px;display:block;object-fit:cover;border-radius:24px;box-shadow:0 24px 58px rgba(16,24,40,.17)}
.lyp-hero-visual:before{content:"";position:absolute;inset:18px -18px -18px 18px;border-radius:28px;background:linear-gradient(145deg,rgba(var(--lyp-brand-rgb),.2),rgba(48,72,120,.12));z-index:-1}
.lyp-placeholder-visual{width:100%;height:100%;min-height:360px;border-radius:26px;display:grid;place-items:center;align-content:center;gap:14px;text-align:center;background:linear-gradient(145deg,#f1f4f8,#fff);border:1px dashed #cfd5df;color:#98a2b3}.lyp-placeholder-visual i{font-size:4rem}.lyp-placeholder-visual span{font-weight:750}
.lyp-hero-visual.is-placeholder{overflow:visible}.lyp-hero-visual.is-placeholder .lyp-placeholder-visual{min-height:420px;box-shadow:0 22px 50px rgba(16,24,40,.08)}
.lyp-floating-card{position:absolute;z-index:3;display:flex;align-items:center;gap:12px;padding:13px 15px;background:rgba(255,255,255,.96);border:1px solid rgba(255,255,255,.95);border-radius:14px;box-shadow:0 18px 38px rgba(16,24,40,.16);backdrop-filter:blur(9px)}.lyp-floating-card i{width:39px;height:39px;border-radius:11px;display:grid;place-items:center;background:rgba(var(--lyp-brand-rgb),.1);color:var(--lyp-brand-dark)}.lyp-floating-card small,.lyp-floating-card strong{display:block}.lyp-floating-card small{font-size:.68rem;color:#7b8492}.lyp-floating-card strong{font-size:.82rem}.lyp-floating-card--top{top:34px;left:-32px}.lyp-floating-card--bottom{right:-26px;bottom:36px}
.lyp-stat-strip{position:relative;z-index:5;margin-top:-34px}.lyp-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));background:#fff;border:1px solid var(--lyp-line);border-radius:18px;box-shadow:0 18px 45px rgba(16,24,40,.09);overflow:hidden}.lyp-stat-item{padding:24px 20px;text-align:center;border-right:1px solid var(--lyp-line)}.lyp-stat-item:last-child{border-right:0}.lyp-stat-item strong{display:block;font-size:1.55rem;color:var(--lyp-brand-dark);font-weight:850}.lyp-stat-item span{display:block;margin-top:4px;color:#667085;font-size:.82rem;font-weight:650}
.lyp-section-copy h2,.lyp-section-heading h2,.lyp-sticky-copy h2{margin:14px 0;font-size:clamp(1.2rem,1.4vw,1.4rem);font-weight:500;line-height:1.16}.lyp-section-copy p,.lyp-sticky-copy p{font-size:1rem;margin-bottom:24px}.lyp-inline-link{display:inline-flex;align-items:center;gap:8px;color:var(--lyp-brand-dark);font-weight:500;text-decoration:none}.lyp-inline-link:hover{color:var(--lyp-brand)}
.lyp-overview-image{height:420px;border-radius:22px;overflow:hidden;background:#f6f7f9}.lyp-overview-image img{width:100%;height:100%;object-fit:cover;display:block}.lyp-overview-image .lyp-placeholder-visual{height:100%}
.lyp-benefits-section{background:var(--lyp-soft);border-top:1px solid #edf0f4;border-bottom:1px solid #edf0f4}.lyp-section-heading{max-width:780px;margin:0 auto 46px}.lyp-section-heading>span{display:inline-block;margin-bottom:11px;color:var(--lyp-brand-dark);font-size:.75rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.lyp-section-heading p{font-size:1rem;margin:0}
.lyp-benefit-card{height:100%;padding:28px;border:1px solid var(--lyp-line);border-radius:19px;background:#fff;transition:.22s ease;box-shadow:0 7px 22px rgba(16,24,40,.035)}.lyp-benefit-card:hover{transform:translateY(-5px);border-color:rgba(var(--lyp-brand-rgb),.22);box-shadow:0 20px 42px rgba(16,24,40,.09)}.lyp-benefit-icon{width:50px;height:50px;display:grid;place-items:center;margin-bottom:22px;border-radius:14px;background:linear-gradient(135deg,rgba(var(--lyp-brand-rgb),.14),rgba(var(--lyp-brand-rgb),.05));color:var(--lyp-brand-dark);font-size:1.32rem}.lyp-benefit-card h3{font-size:1.15rem;font-weight:500;margin-bottom:10px}.lyp-benefit-card p{margin:0;font-size:.91rem}
.lyp-steps-section{background:#fff}.lyp-sticky-copy{position:sticky;top:110px}.lyp-sticky-copy .lyp-kicker{margin-bottom:4px}.lyp-step-list{display:grid;gap:16px}.lyp-step-item{display:grid;grid-template-columns:72px 1fr;gap:18px;padding:25px;background:#fff;border:1px solid #e5e9ef;border-radius:18px;box-shadow:0 7px 22px rgba(16,24,40,.035)}.lyp-step-number{width:58px;height:58px;display:grid;place-items:center;border-radius:16px;background:#fff3f3;border:1px solid rgba(var(--lyp-brand-rgb),.14);color:var(--lyp-brand-dark);font-size:.9rem;font-weight:600}.lyp-step-item h3{font-size:1.08rem;font-weight:500;margin:4px 0 7px}.lyp-step-item p{font-size:.9rem;margin:0}
.lyp-gallery-section{background:#0f1728;color:#fff}.lyp-gallery-section .lyp-section-heading h2{color:#fff}.lyp-gallery-section .lyp-section-heading p{color:#cbd2dc}.lyp-gallery-section .lyp-section-heading>span{color:#ffb7ba}.lyp-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));grid-auto-rows:260px;gap:16px}.lyp-gallery-item{position:relative;margin:0;overflow:hidden;border-radius:18px;background:#1f2937}.lyp-gallery-item--featured{grid-column:span 2;grid-row:span 2}.lyp-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.lyp-gallery-item:hover img{transform:scale(1.04)}.lyp-gallery-item figcaption{position:absolute;left:14px;right:14px;bottom:14px;padding:10px 12px;border-radius:10px;background:rgba(10,15,26,.72);color:#fff;font-size:.8rem;font-weight:700;backdrop-filter:blur(8px)}
.lyp-property-types{background:#fff}.lyp-type-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.lyp-type-card{min-height:142px;padding:22px 12px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;text-align:center;border:1px solid var(--lyp-line);border-radius:17px;background:linear-gradient(180deg,#fff,#fbfcfe);transition:.22s ease}.lyp-type-card i{font-size:1.65rem;color:var(--lyp-brand-dark)}.lyp-type-card strong{font-size:.92rem}.lyp-type-card:hover{transform:translateY(-4px);border-color:rgba(var(--lyp-brand-rgb),.28);box-shadow:0 16px 34px rgba(16,24,40,.08)}
.lyp-faq-section{background:#f8fafc;border-top:1px solid #edf0f4}.lyp-faq-accordion{display:grid;gap:12px}.lyp-faq-accordion .accordion-item{overflow:hidden;border:1px solid #e2e7ed;border-radius:15px!important;background:#fff}.lyp-faq-accordion .accordion-button{padding:20px 22px;font-size:.96rem;font-weight:500;color:var(--lyp-ink);background:#fff;box-shadow:none}.lyp-faq-accordion .accordion-button:not(.collapsed){color:var(--lyp-brand-dark);background:#fff7f7}.lyp-faq-accordion .accordion-button:focus{box-shadow:none}.lyp-faq-accordion .accordion-body{padding:0 22px 21px;color:var(--lyp-muted);line-height:1.7;font-size:.91rem}
.lyp-final-cta{padding:74px 0;background:linear-gradient(120deg,var(--lyp-brand-dark),var(--lyp-brand));color:#fff}.lyp-final-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}.lyp-final-cta span{display:block;margin-bottom:8px;color:rgba(255,255,255,.8);font-size:.75rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.lyp-final-cta h2{color:#fff;font-size:clamp(1.65rem,2.4vw,2.35rem);font-weight:00;margin-bottom:10px}.lyp-final-cta p{color:rgba(255,255,255,.82);margin:0}.lyp-final-actions{flex:0 0 auto;text-align:center}.lyp-btn-light{color:var(--lyp-ink)!important;background:#fff;border:1px solid #fff;box-shadow:0 14px 30px rgba(16,24,40,.18)}.lyp-btn-light:hover{transform:translateY(-2px);background:#fff7f7}.lyp-text-link{display:block;margin-top:12px;color:#fff;text-decoration:none;font-size:.86rem;font-weight:700}.lyp-text-link:hover{color:#fff;text-decoration:underline}
@media(max-width:1199.98px){.lyp-type-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.lyp-floating-card--top{left:12px}.lyp-floating-card--bottom{right:12px}}
@media(max-width:991.98px){.lyp-section{padding:62px 0}.lyp-hero{padding:30px 0 64px}.lyp-breadcrumb{margin-bottom:32px}.lyp-hero-visual,.lyp-hero-visual>img,.lyp-hero-visual.is-placeholder .lyp-placeholder-visual{min-height:380px;height:380px}.lyp-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.lyp-stat-item:nth-child(2){border-right:0}.lyp-stat-item:nth-child(-n+2){border-bottom:1px solid var(--lyp-line)}.lyp-sticky-copy{position:static}.lyp-final-cta-inner{align-items:flex-start;flex-direction:column}.lyp-final-actions{text-align:left}.lyp-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:230px}}
@media(max-width:767.98px){.lyp-section{padding:52px 0}.lyp-hero h1{font-size:clamp(1.85rem,8.5vw,2.5rem)}.lyp-hero-copy{font-size:1rem}.lyp-hero-actions{align-items:stretch;flex-direction:column}.lyp-hero-actions .btn{width:100%}.lyp-support-line{width:100%}.lyp-hero-visual,.lyp-hero-visual>img,.lyp-hero-visual.is-placeholder .lyp-placeholder-visual{min-height:320px;height:320px}.lyp-floating-card{position:static;margin-top:10px}.lyp-hero-visual{height:auto;min-height:0}.lyp-hero-visual:before{display:none}.lyp-stat-strip{margin-top:-24px}.lyp-stat-item{padding:19px 12px}.lyp-overview-image{height:320px}.lyp-step-item{grid-template-columns:54px 1fr;padding:20px;gap:13px}.lyp-step-number{width:48px;height:48px;border-radius:14px}.lyp-gallery-grid{grid-template-columns:1fr;grid-auto-rows:270px}.lyp-gallery-item--featured{grid-column:auto;grid-row:auto}.lyp-type-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.lyp-type-card{min-height:120px}.lyp-final-cta{padding:58px 0}.lyp-btn-light{width:100%}}
@media(max-width:420px){.lyp-stat-grid{grid-template-columns:1fr}.lyp-stat-item,.lyp-stat-item:nth-child(2){border-right:0;border-bottom:1px solid var(--lyp-line)}.lyp-stat-item:last-child{border-bottom:0}.lyp-step-item{grid-template-columns:1fr}.lyp-step-number{width:44px;height:44px}.lyp-type-grid{grid-template-columns:1fr 1fr}}
/*list-your-property.php*/



/*lolo-for-business*/
.lfb-page{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:#172033;background:#fff;overflow:hidden}
.lfb-page *{box-sizing:border-box}
.lfb-hero{position:relative;padding:42px 0 82px;background:radial-gradient(circle at 85% 12%,rgba(var(--brand-rgb),.18),transparent 34%),linear-gradient(135deg,#f7fbff 0%,#fff 55%,#fff8f4 100%);border-bottom:1px solid #e9eef5}
.lfb-hero:before{content:"";position:absolute;left:-110px;bottom:-140px;width:330px;height:330px;border-radius:50%;background:rgba(var(--brand-rgb),.08);filter:blur(4px)}
.lfb-breadcrumb{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:600;color:#7b8495;margin-bottom:36px}
.lfb-breadcrumb a{color:#596579;text-decoration:none}.lfb-breadcrumb a:hover{color:var(--brand)}
.lfb-kicker,.lfb-section-heading>span{display:inline-flex;align-items:center;gap:8px;color:var(--brand-dark);font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase}
.lfb-kicker{padding:9px 13px;background:rgba(var(--brand-rgb),.1);border:1px solid rgba(var(--brand-rgb),.18);border-radius:999px;margin-bottom:20px}
.lfb-hero h1{font-size:clamp(2px,2vw,46px);line-height:1.04;letter-spacing:-.045em;font-weight:600;max-width:700px;margin:0 0 22px;color:#101827}
.lfb-hero-copy{font-size:18px;line-height:1.72;color:#5c6679;max-width:620px;margin:0 0 30px}
.lfb-hero-actions{display:flex;gap:13px;align-items:center;flex-wrap:wrap}
.lfb-btn{min-height:52px;display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:13px;padding:13px 22px;font-weight:600;text-decoration:none;transition:.22s ease;border:1px solid transparent;box-shadow:none}
.lfb-btn:hover{transform:translateY(-2px)}
.lfb-btn-primary{background:linear-gradient(135deg,var(--brand),var(--brand-dark));color:#fff;box-shadow:0 14px 30px rgba(var(--brand-rgb),.24)}
.lfb-btn-primary:hover{color:#fff;box-shadow:0 18px 36px rgba(var(--brand-rgb),.3)}
.lfb-btn-secondary{background:#fff;color:#283349;border-color:#dce3ed}.lfb-btn-secondary:hover{color:var(--brand-dark);border-color:rgba(var(--brand-rgb),.45)}
.lfb-trust-row{display:flex;gap:18px 24px;flex-wrap:wrap;margin-top:27px;color:#596579;font-size:13px;font-weight:500}
.lfb-trust-row i{color:#20a86b;margin-right:6px}
.lfb-dashboard-visual{position:relative;background:#fff;border:1px solid #e6ebf2;border-radius:26px;padding:22px;box-shadow:0 32px 80px rgba(18,32,55,.14);max-width:590px;margin-left:auto}
.lfb-dashboard-visual:after{content:"";position:absolute;inset:15px -18px -18px 24px;border-radius:28px;background:linear-gradient(135deg,rgba(var(--brand-rgb),.12),rgba(255,105,55,.08));z-index:-1}
.lfb-visual-top,.lfb-chart-head,.lfb-visual-property{display:flex;align-items:center;justify-content:space-between;gap:14px}
.lfb-visual-top strong{display:block;font-size:19px;color:#151d2c}.lfb-visual-label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.12em;font-weight:600;color:#8a94a5;margin-bottom:4px}
.lfb-live-pill{display:inline-flex;align-items:center;gap:7px;padding:7px 10px;border-radius:999px;background:#eafaf3;color:#178b5b;font-size:12px;font-weight:600}.lfb-live-pill span{width:7px;height:7px;border-radius:50%;background:#20b975;box-shadow:0 0 0 4px rgba(32,185,117,.12)}
.lfb-visual-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:20px 0}
.lfb-visual-stat{padding:15px;border:1px solid #e8edf3;border-radius:16px;background:#fbfcfe}.lfb-visual-stat>span{display:block;font-size:11px;color:#8390a2;font-weight:500}.lfb-visual-stat strong{display:block;font-size:16px;color:#202b3e;margin:6px 0}.lfb-visual-stat small{font-size:10px;color:#718095}.lfb-visual-stat small i{color:var(--brand);margin-right:4px}
.lfb-visual-chart{border:1px solid #e8edf3;border-radius:18px;padding:16px;background:linear-gradient(180deg,#fff,#fafcff)}
.lfb-chart-head strong,.lfb-chart-head span{display:block}.lfb-chart-head strong{font-size:14px}.lfb-chart-head span{font-size:11px;color:#8a94a5;margin-top:2px}.lfb-chart-head>i{font-size:22px;color:var(--brand)}
.lfb-bars{height:118px;display:flex;align-items:flex-end;gap:10px;padding-top:18px;border-bottom:1px solid #e6ebf2;background:repeating-linear-gradient(to top,transparent 0,transparent 28px,#f0f3f7 29px)}
.lfb-bars span{flex:1;height:var(--h);min-height:12px;border-radius:6px 6px 2px 2px;background:linear-gradient(180deg,var(--brand),var(--brand-dark));opacity:.88}
.lfb-visual-property{margin-top:14px;padding:13px;border-radius:16px;background:#f7f9fc}.lfb-property-icon{width:42px;height:42px;border-radius:12px;background:#fff;display:grid;place-items:center;color:var(--brand);font-size:19px;box-shadow:0 6px 16px rgba(20,36,60,.08)}.lfb-visual-property>div:nth-child(2){flex:1}.lfb-visual-property strong,.lfb-visual-property span{display:block}.lfb-visual-property strong{font-size:13px}.lfb-visual-property span{font-size:11px;color:#7b8798;margin-top:2px}.lfb-visual-property>i{color:#8a94a5}
.lfb-quick-strip{position:relative;margin-top:-32px;z-index:2}.lfb-quick-grid{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border:1px solid #e4eaf1;border-radius:20px;box-shadow:0 18px 50px rgba(22,35,57,.1);overflow:hidden}.lfb-quick-grid>div{display:flex;align-items:center;gap:13px;padding:20px 22px;border-right:1px solid #e8edf3}.lfb-quick-grid>div:last-child{border-right:0}.lfb-quick-grid i{font-size:25px;color:var(--brand)}.lfb-quick-grid strong,.lfb-quick-grid small{display:block}.lfb-quick-grid strong{font-size:14px}.lfb-quick-grid small{font-size:11px;color:#8490a1;margin-top:3px}
.lfb-section{padding:92px 0}.lfb-section-soft{background:#f7f9fc;border-top:1px solid #edf1f5;border-bottom:1px solid #edf1f5}.lfb-section-heading{text-align:center;max-width:760px;margin:0 auto 45px}.lfb-section-heading h2{font-size:clamp(1px,2vw,20px);line-height:1.12;letter-spacing:-.035em;font-weight:600;color:#121a29;margin:11px 0 14px}.lfb-section-heading p{font-size:16px;line-height:1.7;color:#687386;margin:0}.lfb-section-heading-left{text-align:left;margin:0}.lfb-feature-card{height:100%;background:#fff;border:1px solid #e5eaf1;border-radius:20px;padding:26px;transition:.22s ease;box-shadow:0 7px 24px rgba(20,34,55,.04)}.lfb-feature-card:hover{transform:translateY(-5px);border-color:rgba(var(--brand-rgb),.32);box-shadow:0 18px 40px rgba(20,34,55,.09)}.lfb-feature-icon{width:52px;height:52px;border-radius:15px;display:grid;place-items:center;background:rgba(var(--brand-rgb),.1);color:var(--brand-dark);font-size:23px;margin-bottom:21px}.lfb-feature-card h3{font-size:19px;font-weight:600;color:#182133;margin:0 0 11px}.lfb-feature-card p{font-size:14px;line-height:1.7;color:#687386;margin:0}.lfb-inline-link{display:inline-flex;align-items:center;gap:8px;margin-top:23px;color:var(--brand-dark);font-weight:600;text-decoration:none}.lfb-inline-link:hover{gap:12px;color:var(--brand)}
.lfb-steps{display:grid;gap:14px}.lfb-step{display:grid;grid-template-columns:72px 1fr;gap:20px;padding:22px;background:#fff;border:1px solid #e5eaf1;border-radius:18px}.lfb-step-number{width:58px;height:58px;border-radius:16px;background:linear-gradient(135deg,var(--brand),var(--brand-dark));color:#fff;display:grid;place-items:center;font-size:16px;font-weight:600;box-shadow:0 10px 22px rgba(var(--brand-rgb),.2)}.lfb-step h3{font-size:18px;font-weight:600;margin:2px 0 7px}.lfb-step p{font-size:14px;line-height:1.65;color:#687386;margin:0}
.lfb-property-types{display:grid;grid-template-columns:repeat(6,1fr);gap:15px}.lfb-property-types>div{min-height:145px;border:1px solid #e5eaf1;border-radius:19px;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:13px;transition:.2s ease}.lfb-property-types>div:hover{border-color:rgba(var(--brand-rgb),.38);background:rgba(var(--brand-rgb),.035);transform:translateY(-3px)}.lfb-property-types i{font-size:34px;color:var(--brand)}.lfb-property-types strong{font-size:14px}
.lfb-docs-section{padding-top:20px}.lfb-docs-card{background:linear-gradient(135deg,#101b30 0%,#172a4d 60%,var(--brand-dark) 150%);border-radius:28px;padding:58px;color:#fff;position:relative;overflow:hidden}.lfb-docs-card:after{content:"";position:absolute;right:-80px;top:-120px;width:360px;height:360px;border-radius:50%;background:rgba(255,255,255,.07)}.lfb-docs-card h2{font-size:clamp(20px,3vw,35px);letter-spacing:-.035em;font-weight:600;margin:12px 0 15px;max-width:570px}.lfb-docs-card p{color:#c5cede;font-size:16px;line-height:1.7;max-width:540px;margin-bottom:24px}.lfb-eyebrow-light{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:#a9c8ff}.lfb-btn-light{background:#fff;color:#17233a}.lfb-btn-light:hover{color:var(--brand-dark)}.lfb-check-list{position:relative;z-index:1;display:grid;gap:12px}.lfb-check-list>div{display:flex;align-items:flex-start;gap:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13);padding:14px 16px;border-radius:14px;color:#edf2f8;font-size:14px}.lfb-check-list i{width:25px;height:25px;display:grid;place-items:center;border-radius:50%;background:#23b879;color:#fff;flex:0 0 25px}
.lfb-faq{max-width:900px;margin:0 auto}.lfb-faq .accordion-item{border:1px solid #e2e8f0;border-radius:16px!important;overflow:hidden;margin-bottom:12px;background:#fff}.lfb-faq .accordion-button{font-weight:600;color:#202a3d;padding:20px 22px;background:#fff;box-shadow:none}.lfb-faq .accordion-button:not(.collapsed){color:var(--brand-dark);background:rgba(var(--brand-rgb),.055)}.lfb-faq .accordion-button:focus{box-shadow:none}.lfb-faq .accordion-body{padding:0 22px 22px;color:#687386;line-height:1.72;font-size:14px}
.lfb-final-cta{padding:68px 0 88px}.lfb-final-card{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:40px 44px;border-radius:24px;background:linear-gradient(135deg,#f5f9ff,#fff6f1);border:1px solid #e4eaf1}.lfb-final-card span{color:var(--brand-dark);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.1em}.lfb-final-card h2{font-size:clamp(1px,2.1vw,20px);font-weight:600;letter-spacing:-.03em;max-width:720px;margin:8px 0 0}.lfb-final-actions{display:flex;flex-direction:column;align-items:center;gap:12px;flex:0 0 auto}.lfb-final-login{font-size:12px;font-weight:500;color:#667286;text-decoration:none}.lfb-final-login:hover{color:var(--brand)}
@media(max-width:991.98px){.lfb-hero{padding-top:28px}.lfb-dashboard-visual{margin:15px auto 0}.lfb-quick-grid{grid-template-columns:repeat(2,1fr)}.lfb-quick-grid>div:nth-child(2){border-right:0}.lfb-quick-grid>div:nth-child(-n+2){border-bottom:1px solid #e8edf3}.lfb-property-types{grid-template-columns:repeat(3,1fr)}.lfb-section-heading-left{margin-bottom:30px}.lfb-docs-card{padding:42px}.lfb-final-card{align-items:flex-start;flex-direction:column}.lfb-final-actions{align-items:flex-start}}
@media(max-width:575.98px){.lfb-hero{padding:22px 0 68px}.lfb-breadcrumb{margin-bottom:27px}.lfb-hero h1{font-size:38px}.lfb-hero-copy{font-size:16px}.lfb-hero-actions,.lfb-btn{width:100%}.lfb-btn{padding-left:16px;padding-right:16px}.lfb-trust-row{display:grid;gap:10px}.lfb-dashboard-visual{padding:15px;border-radius:20px}.lfb-visual-stats{grid-template-columns:1fr}.lfb-visual-stat{display:grid;grid-template-columns:1fr auto;align-items:center}.lfb-visual-stat>span{grid-column:1}.lfb-visual-stat strong{grid-column:1;margin:3px 0}.lfb-visual-stat small{grid-column:2;grid-row:1/3}.lfb-quick-strip{margin-top:-25px}.lfb-quick-grid{grid-template-columns:1fr}.lfb-quick-grid>div{border-right:0!important;border-bottom:1px solid #e8edf3!important;padding:16px 18px}.lfb-quick-grid>div:last-child{border-bottom:0!important}.lfb-section{padding:68px 0}.lfb-section-heading{margin-bottom:32px}.lfb-step{grid-template-columns:52px 1fr;padding:18px;gap:14px}.lfb-step-number{width:48px;height:48px}.lfb-property-types{grid-template-columns:repeat(2,1fr);gap:11px}.lfb-property-types>div{min-height:125px}.lfb-docs-section{padding-top:4px}.lfb-docs-card{padding:30px 22px;border-radius:22px}.lfb-final-cta{padding:48px 0 70px}.lfb-final-card{padding:28px 22px}.lfb-final-actions,.lfb-final-actions .lfb-btn{width:100%}}

/*lolo-for-business*/

/*my-bookings.php*/

:root {
    --booking-primary: #153e75;
    --booking-primary-dark: #0d2b54;
    --booking-accent: #2b6cb0;
    --booking-surface: #ffffff;
    --booking-page: #f5f7fb;
    --booking-border: #e4e9f2;
    --booking-text: #172033;
    --booking-muted: #697386;
    --booking-success: #138a57;
    --booking-danger: #c9363e;
    --booking-warning: #b97708;
    --booking-shadow: 0 18px 45px rgba(20, 42, 74, 0.09);
}

.my-bookings-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 14px 52px;
    color: var(--booking-text);
}

.bookings-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding: 28px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.25), transparent 35%),
        linear-gradient(135deg, var(--booking-primary-dark), var(--booking-accent));
    color: #fff;
    box-shadow: var(--booking-shadow);
}

.bookings-hero::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 30px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.bookings-hero-copy,
.bookings-count {
    position: relative;
    z-index: 1;
}

.bookings-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .78;
}

.bookings-title {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 500;
    line-height: 1.15;
}

.bookings-subtitle {
    max-width: 620px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.82);
}

.bookings-count {
    min-width: 114px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    text-align: center;
    backdrop-filter: blur(8px);
}

.bookings-count strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.bookings-count span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.8);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.booking-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--booking-border);
    border-radius: 22px;
    background: var(--booking-surface);
    box-shadow: 0 12px 32px rgba(31, 50, 81, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.booking-card:hover {
    transform: translateY(-3px);
    border-color: #ccd7e7;
    box-shadow: 0 20px 44px rgba(31, 50, 81, .11);
}

.booking-image-wrap {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eef7, #f8fafc);
}

.booking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.booking-card:hover .booking-image {
    transform: scale(1.035);
}

.booking-image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #7b8798;
    text-align: center;
}

.booking-image-placeholder .icon {
    display: block;
    margin-bottom: 8px;
    font-size: 42px;
}

.booking-status {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.status-confirmed {
    background: #e5f8ef;
    color: #0d7548;
}

.status-completed {
    background: #e6efff;
    color: #2457a6;
}

.status-cancelled {
    background: #feecee;
    color: #b4232c;
}

.status-pending {
    background: #fff4dc;
    color: #946006;
}

.booking-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.booking-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.hotel-name {
    margin: 0;
    color: var(--booking-text);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;
}

.room-name {
    margin-top: 6px;
    color: var(--booking-muted);
    font-size: 14px;
}

.booking-number {
    flex: 0 0 auto;
    max-width: 46%;
    padding: 7px 10px;
    border-radius: 10px;
    background: #f2f5fa;
    color: #526175;
    font-size: 11px;
    font-weight: 500;
    text-align: right;
    overflow-wrap: anywhere;
}

.stay-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid var(--booking-border);
    border-radius: 16px;
    background: #f9fbfd;
}

.stay-date small {
    display: block;
    margin-bottom: 4px;
    color: var(--booking-muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.stay-date strong {
    color: var(--booking-text);
    font-size: 14px;
}

.stay-arrow {
    color: #91a0b3;
    font-size: 20px;
}

.stay-date:last-child {
    text-align: right;
}

.booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef3f9;
    color: #526175;
    font-size: 12px;
    font-weight: 500;
}

.amount-box {
    margin-top: 2px;
    padding: 17px;
    border: 1px solid var(--booking-border);
    border-radius: 16px;
}

.amount-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 5px 0;
    color: var(--booking-muted);
    font-size: 14px;
}

.amount-row strong {
    color: var(--booking-text);
}

.amount-row.total {
    margin-top: 8px;
    padding-top: 13px;
    border-top: 1px dashed #d7deea;
    color: var(--booking-text);
    font-size: 16px;
    font-weight: 500;
}

.amount-row.total strong {
    color: var(--booking-primary);
    font-size: 19px;
}

.tax-note {
    margin-top: 7px;
    color: #8591a2;
    font-size: 11px;
}

.payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.payment-box {
    padding: 12px;
    border-radius: 14px;
    background: #f7f9fc;
}

.payment-box span {
    display: block;
    margin-bottom: 5px;
    color: var(--booking-muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.payment-paid {
    background: #e5f8ef;
    color: #0d7548;
}

.payment-failed {
    background: #feecee;
    color: #b4232c;
}

.payment-pending {
    background: #fff4dc;
    color: #946006;
}

.payment-refunded {
    background: #eee9ff;
    color: #6547ba;
}

.cancel-reason-box {
    margin-top: 15px;
    padding: 12px 14px;
    border-left: 4px solid #e6a23c;
    border-radius: 10px;
    background: #fff9ef;
    color: #765115;
    font-size: 13px;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
    padding-top: 22px;
}

.booking-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .18s ease;
}

.action-primary {
    background: var(--booking-primary);
    color: #fff;
}

.action-primary:hover {
    background: var(--booking-primary-dark);
    color: #fff;
}

.action-secondary {
    border-color: #cfd8e6;
    background: #fff;
    color: #40526b;
}

.action-secondary:hover {
    border-color: #aebbd0;
    background: #f6f8fb;
    color: #243850;
}

.action-success {
    border-color: #b9e4cd;
    background: #effaf4;
    color: #117247;
}

.action-warning {
    border-color: #f0d49d;
    background: #fff8e9;
    color: #936006;
}

.cancel-panel {
    margin-top: 16px;
    border: 1px solid #f0c9cc;
    border-radius: 15px;
    background: #fffafa;
}

.cancel-panel summary {
    padding: 13px 15px;
    color: var(--booking-danger);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}

.cancel-panel summary::-webkit-details-marker {
    display: none;
}

.cancel-panel summary::after {
    content: "+";
    float: right;
    font-size: 18px;
    line-height: 1;
}

.cancel-panel[open] summary::after {
    content: "−";
}

.cancel-form {
    padding: 0 15px 15px;
}

.cancel-input {
    width: 100%;
    min-height: 76px;
    padding: 11px 12px;
    resize: vertical;
    border: 1px solid #d9dee8;
    border-radius: 11px;
    background: #fff;
    color: var(--booking-text);
    outline: none;
}

.cancel-input:focus {
    border-color: #d57f85;
    box-shadow: 0 0 0 3px rgba(201, 54, 62, .09);
}

.cancel-submit {
    width: 100%;
    min-height: 40px;
    margin-top: 9px;
    border: 0;
    border-radius: 11px;
    background: var(--booking-danger);
    color: #fff;
    font-weight: 500;
}

.cancel-submit:hover {
    background: #a9252d;
}

.empty-bookings {
    grid-column: 1 / -1;
    padding: 60px 24px;
    border: 1px dashed #cdd6e4;
    border-radius: 22px;
    background: #fff;
    text-align: center;
}

.empty-bookings-icon {
    margin-bottom: 14px;
    font-size: 48px;
}

.empty-bookings h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.empty-bookings p {
    margin: 0 auto 20px;
    max-width: 520px;
    color: var(--booking-muted);
}

@media (max-width: 991.98px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .my-bookings-page {
        padding: 18px 10px 38px;
    }

    .bookings-hero {
        align-items: flex-start;
        padding: 23px 20px;
        border-radius: 19px;
    }

    .bookings-count {
        min-width: 82px;
        padding: 13px 10px;
    }

    .bookings-count strong {
        font-size: 24px;
    }

    .booking-card,
    .empty-bookings {
        border-radius: 18px;
    }

    .booking-image-wrap {
        height: 190px;
    }

    .booking-card-body {
        padding: 18px;
    }

    .booking-heading-row {
        flex-direction: column;
    }

    .booking-number {
        max-width: 100%;
        text-align: left;
    }

    .stay-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stay-arrow {
        display: none;
    }

    .stay-date:last-child {
        text-align: left;
    }

    .payment-info {
        grid-template-columns: 1fr;
    }

    .booking-action {
        flex: 1 1 calc(50% - 9px);
    }
}

@media print {
    .bookings-hero,
    .booking-actions,
    .cancel-panel,
    header,
    footer {
        display: none !important;
    }

    body,
    .my-bookings-page {
        background: #fff !important;
    }

    .booking-grid {
        display: block;
    }

    .booking-card {
        break-inside: avoid;
        margin-bottom: 18px;
        box-shadow: none;
    }
}
/*my-bookings.php*/

/*/invoice.php*/
:root{
    --invoice-navy:#102b57;
    --invoice-navy-2:#173f79;
    --invoice-gold:#d7a441;
    --invoice-teal:#428d8d;
    --invoice-red:#c93b33;
    --invoice-border:#d5d8dc;
    --invoice-muted:#686b70;
    --invoice-text:#17191d;
}
.invoice-toolbar{max-width:210mm;margin:18px auto 8px;display:flex;justify-content:flex-end;gap:10px;padding:0 2px}
.invoice-toolbar button,.invoice-toolbar a{border:0;border-radius:8px;padding:10px 15px;font-size:14px;font-weight:700;cursor:pointer;text-decoration:none}
.invoice-toolbar .print-btn{background:var(--invoice-navy);color:#fff}
.invoice-toolbar .back-btn{background:#fff;color:var(--invoice-navy);border:1px solid #ccd3dd}
.invoice-page{width:210mm;min-height:297mm;margin:0 auto 24px;background:#fff;padding:6mm 9mm 5mm;box-shadow:0 10px 30px rgba(23,42,70,.12)}
.brand-row{height:16mm;display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:2mm}
.brand-wrap{display:flex;align-items:center;gap:10px;min-width:0}
.brand-logo{width:17mm;height:14mm;object-fit:contain;display:block}
.brand-name{font-size:7.2mm;line-height:1;font-weight:800;letter-spacing:.25px;color:#15315d;white-space:nowrap}
.payment-qr{width:20mm;height:20mm;object-fit:contain;display:block;margin-top:-1mm}
.title-bar{position:relative;min-height:13mm;background:var(--invoice-navy);color:#fff;display:flex;align-items:center;justify-content:space-between;padding:2.8mm 5mm;margin-bottom:2.5mm;overflow:hidden}
.title-bar:before{content:"";position:absolute;top:0;right:0;width:20%;height:1.3mm;background:var(--invoice-gold)}
.title-bar h1{margin:0;font-size:5.5mm;line-height:1.1;color: #fff; font-weight:700;letter-spacing:.15px}
.invoice-badge{position:relative;z-index:1;background:var(--invoice-teal);border:1px solid rgba(255,255,255,.95);border-radius:2mm;padding:2.7mm 5mm;font-size:3.7mm;font-weight:800;white-space:nowrap}
.meta-card,.guest-card,.booking-card,.summary-card,.policy-card{border:1px solid var(--invoice-border);border-radius:3mm;background:#fff;overflow:hidden}
.meta-card{display:grid;grid-template-columns:1fr 1fr;margin-bottom:2mm;padding:2.4mm 5mm}
.meta-col{min-height:13mm;display:flex;flex-direction:column;justify-content:center;gap:1.6mm}
.meta-col+ .meta-col{border-left:1px solid var(--invoice-border);padding-left:5mm}
.meta-line{font-size:3.7mm}.meta-line strong{font-size:4mm}.meta-label{color:var(--invoice-muted)}
.section{margin-top:2mm}
.section-titlen{display:table;width:auto;max-width:100%;align-items:center;min-height:7.8mm;margin:0 0 0 0;background:var(--invoice-navy-2);color:#fff;padding:1.9mm 5mm;border-radius:3mm 3mm 0 0;font-size:4.1mm;font-weight:800}
.section-titlen.full{display:block;width:100%;border-radius:3mm 3mm 0 0}
.guest-card{margin-top:0;border-top-left-radius:0;padding:2.7mm}
.guest-inner{display:flex;align-items:center;gap:4mm}
.guest-avatar-wrap{width:13mm;height:13mm;border:1px solid #d8dce2;border-radius:2mm;padding:1.3mm;display:flex;align-items:center;justify-content:center;background:#fafafa;flex:0 0 auto}
.guest-avatar{width:100%;height:100%;object-fit:contain}
.guest-name{font-size:4.6mm;font-weight:800;margin-bottom:.7mm}.guest-line{color:var(--invoice-muted);font-size:3.35mm;line-height:1.45;overflow-wrap:anywhere}
.booking-cards{border-top-left-radius:0;border-top-right-radius:0;display:grid;grid-template-columns:1fr 1fr;padding:2.4mm 4mm}
.booking-column{padding-right:5mm}.booking-column+ .booking-column{border-left:1px solid var(--invoice-border);padding-left:5mm;padding-right:0}
.info-row{display:grid;grid-template-columns:22mm 1fr;gap:2mm;margin-bottom:1.35mm;font-size:3.55mm;align-items:start}.info-label{color:var(--invoice-muted)}.info-value{font-weight:600;overflow-wrap:anywhere}
.info-divider{height:1px;background:var(--invoice-border);margin:2.2mm 0}
.summary-card{border-top-left-radius:0;border-top-right-radius:0;display:grid;grid-template-columns:1fr 1fr}
.summary-side{min-width:0}.summary-side+ .summary-side{border-left:1px solid var(--invoice-border)}
.summary-row{display:flex;align-items:center;justify-content:space-between;gap:5mm;min-height:7.8mm;padding:1.5mm 3.5mm;border-bottom:1px solid var(--invoice-border);font-size:3.55mm}.summary-row:last-child{border-bottom:0}.summary-row strong{font-weight:800;white-space:nowrap}.summary-row.discount strong{color:#1c1d20}
.grand-total-wrap{padding:2.4mm}.grand-total{min-height:14.5mm;border-radius:3mm;background:var(--invoice-red);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:5mm;padding:2.4mm 4mm;font-size:5.4mm;font-weight:800}.grand-total strong{font-size:6.2mm;white-space:nowrap}
.policy-card{border-top-left-radius:0;border-top-right-radius:0;display:grid;grid-template-columns:1.25fr 1.25fr .7fr;padding:3mm 3.5mm;min-height:29mm}
.policy-column{padding-right:4mm}.policy-column+ .policy-column{border-left:1px solid var(--invoice-border);padding-left:4mm}.policy-heading{font-size:3.65mm;font-weight:800;margin-bottom:1.5mm}.policy-text{font-size:3.25mm;line-height:1.45;white-space:pre-line;overflow-wrap:anywhere}.signature-column{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;text-align:center}.signature-mark{margin:auto 0 5mm;color:#252525}.signature-label{font-size:3.15mm;font-weight:800;white-space:nowrap}
.thank-you{text-align:center;color:var(--invoice-muted);font-size:3.55mm;margin:3mm 0 1mm;padding-bottom:2mm;border-bottom:1px solid var(--invoice-border)}
.footer-note{text-align:center;color:#8a8d91;font-size:2.8mm}
@media(max-width:850px){html,body{background:#fff}.invoice-toolbar{padding:0 12px}.invoice-page{width:100%;min-height:0;margin:0;padding:14px;box-shadow:none}.brand-name{font-size:25px}.title-bar h1{font-size:20px}.invoice-badge{font-size:13px}.meta-card,.booking-card,.summary-card,.policy-card{grid-template-columns:1fr}.meta-col+ .meta-col,.booking-column+ .booking-column,.summary-side+ .summary-side,.policy-column+ .policy-column{border-left:0;border-top:1px solid var(--invoice-border);padding-left:0;padding-top:12px;margin-top:10px}.booking-column{padding-right:0}.payment-qr{width:64px;height:64px}.brand-logo{width:58px;height:48px}}
@media print{
    @page{size:A4 portrait;margin:0}
    html,body{width:210mm;min-height:297mm;background:#fff}
    .invoice-toolbar{display:none!important}
    .invoice-page{width:210mm;min-height:297mm;margin:0;padding:6mm 9mm 5mm;box-shadow:none;page-break-after:avoid}
    .section,.meta-card,.guest-card,.booking-card,.summary-card,.policy-card{break-inside:avoid;page-break-inside:avoid}
}
/*/invoice.php*/