/* ================================
   ACCOUNT PAGE
================================ */
.account-page {
    background: var(--cream);
    min-height: 100vh;
}

/* ─── AUTH ──────────────────────────────────────── */
.auth-wrap {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.auth-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.auth-tab-row {
    display: flex;
    gap: 0;
    background: var(--cream-2);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown-mid);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.auth-tab.active {
    background: #fff;
    color: var(--brown);
    box-shadow: 0 1px 4px rgba(61,32,24,0.1);
}

.auth-error {
    color: #c0392b;
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 12px;
}

.btn-auth {
    width: 100%;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.btn-auth:hover { background: #b0667a; }
.btn-auth:disabled { opacity: 0.65; cursor: not-allowed; }

.btn-google {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #fff;
    color: #3c4043;
    border: 1.5px solid #dadce0;
    border-radius: 12px;
    padding: 11px;
    font-size: 15px; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    margin-bottom: 4px;
}
.btn-google:hover { background: #f8f8f8; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.btn-google:disabled { opacity: 0.65; cursor: not-allowed; }

.auth-divider {
    display: flex; align-items: center; gap: 10px;
    margin: 14px 0;
    color: var(--brown-mid); font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}

.auth-switch {
    font-size: 13px;
    color: var(--brown-mid);
    margin-top: 16px;
    text-align: center;
}

.link-btn {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}
.link-btn:hover { text-decoration: underline; }

/* Form group (reused in auth + account) */
.account-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.account-page .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
}
.account-page .form-group input,
.account-page .form-group select,
.account-page .form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
}
.account-page .form-group input:focus,
.account-page .form-group select:focus,
.account-page .form-group textarea:focus { border-color: var(--pink); }
.account-page .form-group textarea { resize: vertical; }

.form-row { display: flex; gap: 12px; }
.form-group.half { flex: 1; }
.form-hint { font-size: 12px; color: var(--brown-mid); margin-top: 4px; }
.optional { font-size: 12px; font-weight: 400; color: var(--brown-mid); }
.req { color: var(--pink); }

/* ─── ACCOUNT LAYOUT ─────────────────────────────── */
.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 64px);
    padding: 0 56px;
    gap: 0;
}

/* Sidebar */
.account-sidebar {
    padding: 32px 20px 32px 0;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
}

.account-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.account-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Fraunces', serif;
}

.account-id { min-width: 0; }
.account-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--brown);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-email {
    font-size: 12px;
    color: var(--brown-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.account-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown-mid);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    width: 220px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.account-nav-btn:hover { background: var(--cream-2); color: var(--brown); }
.account-nav-btn.active {
    background: var(--pink-light);
    color: var(--pink);
    font-weight: 600;
}
.account-nav-btn svg { flex-shrink: 0; }

.signout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--brown-mid);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
    margin-top: 12px;
}
.signout-btn:hover { background: var(--cream-2); color: var(--brown); }

/* Main */
.account-main {
    padding: 32px 0 60px 32px;
    min-width: 0;
}

.tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

.tab-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--brown);
}

.btn-new-booking {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-new-booking:hover { background: #b0667a; }

/* ─── BOOKINGS LIST ──────────────────────────────── */
.bookings-panel {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: start;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upcoming-card {
    background: #FFF8E1;
    border: 1.5px solid #FFD54F;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.15s;
}
.upcoming-card:hover { background: #FFF3CD; }
.upcoming-card-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.upcoming-banner-icon { font-size: 18px; flex-shrink: 0; display: flex; align-items: center; }
.upcoming-banner-icon svg { display: block; }
.upcoming-card-row > div { display: flex; flex-direction: column; gap: 2px; }
.upcoming-card-row strong { font-size: 13px; color: #5D4037; font-weight: 700; }
.upcoming-card-row span { font-size: 12px; color: #8D6E63; }
.upcoming-payment-due {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 12px;
    background: #FFF0E8;
    border: 1.5px solid #E8896A;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #C04A1E;
}

.bc-deposit-chip {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    margin-top: 4px;
}
.bc-review-chip {
    display: inline-block;
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    margin-top: 4px;
}
.bc-upcoming-chip svg { vertical-align: middle; margin-top: -1px; }
.bc-upcoming-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFCC80;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    margin-top: 2px;
}

.booking-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-card:hover { border-color: var(--pink-light); box-shadow: var(--shadow); }
.booking-card.active { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-light); }

.booking-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.booking-card-service {
    font-weight: 600;
    font-size: 14px;
    color: var(--brown);
}
.booking-card-dates {
    font-size: 13px;
    color: var(--brown-mid);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--brown-mid);
}
.booking-card-total { font-weight: 600; color: var(--brown); }

/* Status badges */
.status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.status-pending   { background: #FFF3CD; color: #856404; }
.status-confirmed { background: var(--green-light); color: #2d6a2d; }
.status-rejected  { background: #FCE8E8; color: #c0392b; }
.status-completed { background: var(--cream-2); color: var(--brown-mid); }

/* ─── BOOKING DETAIL ────────────────────────────── */
.booking-detail-panel {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 84px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.detail-loading {
    color: var(--brown-mid);
    font-size: 14px;
    padding: 20px 0;
}

.detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.detail-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--brown);
    margin-bottom: 6px;
}
.detail-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--brown-mid);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}
.detail-close:hover { color: var(--brown); }

.detail-section { margin-bottom: 18px; }
.detail-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pink);
    margin-bottom: 8px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: var(--brown);
    padding: 5px 0;
    border-bottom: 1px solid var(--cream-2);
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--brown-mid); }

.charge-pet-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    padding-top: 8px;
    padding-bottom: 2px;
}
.charge-item { border-bottom: none; }
.charge-item span:first-child { color: var(--brown-mid); font-size: 13px; }
.charge-item span:last-child  { font-weight: 600; }
.charge-sub-total { border-top: 1px dashed var(--border); margin-top: 4px; padding-top: 8px; }
.charge-sub-total span:first-child { font-weight: 700; color: var(--brown); }
.charge-sub-total span:last-child  { font-weight: 700; }
.charge-adj-item span:first-child { color: var(--brown-mid); font-size: 13px; }
.charge-adj-pos { color: #c0392b; font-weight: 600; }
.charge-adj-neg { color: #2e7d32; font-weight: 600; }
.charge-total { border-top: 1.5px solid var(--border); margin-top: 4px; padding-top: 8px; }
.charge-total span:first-child { font-weight: 700; color: var(--brown); }
.charge-total span:last-child  { font-weight: 700; }

.detail-dates {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--brown);
    white-space: pre-wrap;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.7;
}
.detail-sched-block { margin-bottom: 14px; }
.detail-sched-block:last-child { margin-bottom: 0; }
.detail-sched-date { font-weight: 700; font-size: 16px; color: var(--brown); margin-bottom: 4px; }
.detail-sched-times-row { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.detail-sched-time { font-size: 15px; color: var(--brown-mid); }

.detail-notes {
    font-size: 13px;
    color: var(--brown);
    background: var(--cream);
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.6;
}

.detail-payment-notice {
    background: var(--green-light);
    border-radius: 12px;
    padding: 14px 16px;
}
.detail-payment-notice .detail-section-label { color: #2d6a2d; font-size: 13px; }
.detail-payment-notice p { font-size: 13px; color: #2d6a2d; line-height: 1.6; margin-bottom: 4px; }

.detail-deposit-policy { margin-top: 10px; }
.detail-deposit-policy summary {
    font-size: 12px; font-weight: 700; color: #2d6a2d;
    cursor: pointer; list-style: none; display: flex; align-items: center; gap: 4px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.detail-deposit-policy summary::-webkit-details-marker { display: none; }
.detail-deposit-policy summary::before {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #2d6a2d;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.detail-deposit-policy[open] summary::before { transform: rotate(90deg); }
.detail-deposit-policy-body { margin-top: 8px; }
.detail-deposit-policy-body p { font-size: 12px; color: #2d6a2d; margin-bottom: 6px; }
.detail-deposit-policy-body ul { padding-left: 16px; margin: 0; }
.detail-deposit-policy-body li { font-size: 12px; color: #2d6a2d; line-height: 1.6; }

/* Messages */
.messages-thread {
    max-height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
}
.msg-empty { font-size: 13px; color: var(--brown-mid); text-align: center; padding: 20px 0; }

.msg-bubble-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.msg-bubble-wrap.msg-own { align-items: flex-end; }

.msg-bubble {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    padding: 9px 13px;
    font-size: 13px;
    color: var(--brown);
    max-width: 85%;
    line-height: 1.5;
    word-break: break-word;
}
.msg-bubble-wrap.msg-own .msg-bubble {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    border-radius: 14px 14px 4px 14px;
}
.msg-meta {
    font-size: 11px;
    color: var(--brown-mid);
    padding: 0 4px;
}

.message-input-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}
.message-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown);
    background: var(--cream);
    outline: none;
}
.message-input:focus { border-color: var(--pink); }
.message-send-btn {
    width: 40px;
    height: 40px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.message-send-btn:hover { background: #b0667a; }

/* ─── PETS ───────────────────────────────────────── */
.btn-add-pet {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-add-pet:hover { background: #b0667a; }

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

.pet-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.pet-card-emoji { font-size: 36px; margin-bottom: 4px; }
.pet-card-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
}
.pet-card-type { font-size: 13px; color: var(--brown-mid); }
.pet-card-age  { font-size: 12px; color: var(--brown-mid); }
.pet-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.pet-edit-btn, .pet-remove-btn {
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.pet-edit-btn {
    background: var(--cream-2);
    color: var(--brown);
}
.pet-edit-btn:hover { background: var(--border); }
.pet-remove-btn {
    background: #FCE8E8;
    color: #c0392b;
}
.pet-remove-btn:hover { background: #f8d0d0; }

/* ─── PROFILE ────────────────────────────────────── */
.profile-form-wrap {
    max-width: 480px;
}
.profile-email-static {
    font-size: 14px;
    color: var(--brown);
    padding: 10px 14px;
    background: var(--cream-2);
    border-radius: 10px;
    border: 1.5px solid var(--border);
}
.profile-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}
.btn-save-profile {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-save-profile:hover { background: #b0667a; }
.btn-save-profile:disabled { opacity: 0.65; cursor: not-allowed; }
.save-ok-inline { font-size: 13px; color: var(--green); font-weight: 600; }

/* Backdrop only used on mobile — hidden everywhere else */
.sidebar-backdrop { display: none; }

/* No footer on account page */
.account-page footer { display: none; }

/* ─── MODAL ──────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61,32,24,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}
.modal-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(61,32,24,0.2);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.modal-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--brown);
}
.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brown-mid);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.modal-close-btn:hover { color: var(--brown); }
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}
.btn-modal-cancel {
    background: var(--cream-2);
    color: var(--brown);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-modal-cancel:hover { background: var(--border); }
.btn-modal-save {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-modal-save:hover { background: #b0667a; }

/* ─── EMPTY MSG ──────────────────────────────────── */
.empty-msg {
    font-size: 14px;
    color: var(--brown-mid);
    padding: 20px 0;
}
.empty-msg a { color: var(--pink); font-weight: 600; text-decoration: none; }
.empty-msg a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .bookings-panel {
        grid-template-columns: 1fr;
    }
    .booking-detail-panel {
        position: static;
        max-height: none;
    }
}

@media (max-width: 720px) {
    /* ── Layout: main content offset by fixed sidebar ── */
    .account-layout {
        display: block;
        padding-left: 60px;
        padding-right: 0;
        max-width: 100vw;
        overflow-x: hidden;
        min-height: calc(100vh - 60px);
        box-sizing: border-box;
    }

    /* ── Sidebar: fixed icon rail, never shifts ── */
    .account-sidebar {
        position: fixed;
        top: 60px;
        left: 0;
        height: calc(100dvh - 60px);
        width: 60px;
        flex-direction: column;
        align-items: center;
        padding: 12px 0 max(env(safe-area-inset-bottom), 12px);
        gap: 4px;
        border-right: 1.5px solid var(--border);
        border-bottom: none;
        overflow: hidden;
        z-index: 150;
        background: #fff;
        cursor: pointer;
        transition: box-shadow 0.25s;
        scrollbar-width: none;
    }
    .account-sidebar::-webkit-scrollbar { display: none; }

    /* ── Sidebar: expanded (overlay) ── */
    .account-sidebar.mob-open {
        position: fixed;
        left: 0;
        top: 60px;
        height: calc(100dvh - 60px);
        width: 50vw;
        align-items: stretch;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 4px 0 28px rgba(61,32,24,0.18);
        padding: 16px 0 max(env(safe-area-inset-bottom), 16px);
        cursor: default;
    }

    /* ── Backdrop ── */
    .sidebar-backdrop {
        display: none;
        position: fixed;
        top: 60px; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.22);
        z-index: 149;
    }
    .sidebar-backdrop.visible { display: block; }

    /* ── Avatar: narrow state ── */
    .account-avatar-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-bottom: 8px;
        padding: 8px 0;
        width: 100%;
        overflow: hidden;
    }
    .account-id { display: none; }

    /* ── Avatar: expanded state — avatar stays at same x (left: 8px, center: 30px) ── */
    .account-sidebar.mob-open .account-avatar-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 16px 8px 8px;
        gap: 10px;
        margin-bottom: 12px;
    }
    .account-sidebar.mob-open .account-id {
        display: block;
        min-width: 0;
    }

    /* ── Nav: narrow state ── */
    .account-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .account-nav-btn {
        width: 100%;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 10px;
        border-bottom: none;
        white-space: nowrap;
        overflow: hidden;
        font-size: 13px;
    }
    .account-nav-btn.active {
        background: var(--pink-light);
        color: var(--pink);
    }
    .account-nav-btn .nav-btn-label { display: none; }

    /* ── Nav: expanded state — icon stays at same x (22px from sidebar left) ── */
    .account-sidebar.mob-open .account-nav {
        gap: 2px;
    }
    .account-sidebar.mob-open .account-nav-btn {
        height: auto;
        justify-content: flex-start;
        padding: 12px 16px 12px 22px;
        border-radius: 0;
        gap: 12px;
    }
    .account-sidebar.mob-open .account-nav-btn .nav-btn-label { display: inline; }

    /* ── Sign out: narrow state ── */
    .signout-btn {
        margin-top: auto;
        width: 100%;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 10px;
        white-space: nowrap;
        overflow: hidden;
        font-size: 13px;
        flex-shrink: 0;
    }
    .signout-btn .signout-label { display: none; }

    /* ── Sign out: expanded state ── */
    .account-sidebar.mob-open .signout-btn {
        height: auto;
        justify-content: flex-start;
        padding: 12px 16px 12px 22px;
        border-radius: 0;
        margin-top: 12px;
    }
    .account-sidebar.mob-open .signout-label { display: inline; }

    /* ── Main content ── */
    .account-main { padding: 16px 12px 40px; overflow-x: hidden; max-width: 100%; min-width: 0; }
    .tab-title { font-size: 20px; }
    .bookings-panel, .bookings-list, .booking-detail-panel { max-width: 100%; overflow-x: hidden; }
    .booking-card { max-width: 100%; overflow: hidden; }
    .upcoming-card { max-width: 100%; overflow: hidden; }
    .upcoming-card-row > div { min-width: 0; overflow: hidden; }
    .upcoming-card-row strong, .upcoming-card-row span { white-space: normal; word-break: break-word; }
    .bc-date-line { white-space: normal; }
    .tab-header { flex-wrap: wrap; gap: 8px; }
    .acct-filter-row { flex-wrap: wrap; }
    .detail-sched-date { font-size: 13px; }
    .detail-sched-time { font-size: 13px; }
}

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; }
    .pets-grid { grid-template-columns: 1fr 1fr; }
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .modal-card {
        padding: 24px 20px;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        width: 100%;
        max-width: 100%;
    }
}

/* ─── PET MODAL EXPANDED ─────────────────────────── */
.modal-card-wide { max-width: 560px; }

.modal-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
    padding: 16px 0 10px;
    border-top: 1px solid var(--cream-2);
    margin-top: 8px;
}
.modal-section-header:first-of-type { border-top: none; margin-top: 0; }

/* Collapsible sections */
.modal-details { border: none; }
.modal-details summary { list-style: none; cursor: pointer; }
.modal-details summary::-webkit-details-marker { display: none; }
.modal-section-toggle {
    padding: 14px 0 10px;
    border-top: 1px solid var(--cream-2);
    margin-top: 4px;
    user-select: none;
}
.modal-section-toggle::after {
    content: '›';
    margin-left: auto;
    font-size: 18px;
    color: var(--brown-mid);
    transition: transform 0.2s;
}
details[open] .modal-section-toggle::after { transform: rotate(90deg); }
.modal-details-body { padding-bottom: 4px; }

/* Pet type cards */
.pet-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.pet-type-card {
    flex: 1;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 14px 8px;
    min-width: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown-mid);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pet-type-card:hover { border-color: var(--pink-light); color: var(--brown); }
.pet-type-card.active {
    border-color: var(--pink);
    background: var(--pink-light);
    color: var(--brown);
}
.pet-type-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
    display: inline-block;
}

/* Pill buttons */
.pet-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.pet-pill {
    -webkit-appearance: none;
    appearance: none;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--brown-mid);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}
.pet-pill:hover { border-color: var(--pink-light); color: var(--brown); }
.pet-pill.active {
    background: var(--pink-light);
    border-color: var(--pink);
    color: var(--brown);
    font-weight: 600;
}

/* Photo preview — circular */
.pet-photo-preview-wrap {
    width: 140px;
    height: 140px;
    border: 2px dashed var(--border);
    border-radius: 50%;
    overflow: hidden;
    margin: 4px auto 12px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pet-photo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
.pet-photo-preview-wrap:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}
.ym-pickers-row {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}
.ym-picker-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ym-picker-field .tp-popup {
    min-width: 110px;
}

.pet-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--brown-mid);
}
.photo-upload-btn {
    display: flex; align-items: center; gap: 7px;
    width: 100%; margin-top: 10px;
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 10px; padding: 10px 16px;
    font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    color: var(--brown-mid); cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    -webkit-appearance: none; appearance: none;
}
.photo-upload-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-light); }

/* ─── PET CARDS (updated) ────────────────────────── */
.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.pet-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pet-card-photo-wrap {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pet-card-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pet-card-emoji-big {
    font-size: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--pink-light);
}

.pet-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.pet-card-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
}
.pet-card-breed { font-size: 13px; color: var(--brown-mid); }
.pet-card-meta  { font-size: 12px; color: var(--brown-mid); }
.pet-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: var(--green-light);
    color: #2d6a2d;
    border-radius: 20px;
    padding: 2px 9px;
    margin-top: 2px;
    width: fit-content;
}
.pet-card-friendly {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}
.pet-card-friendly span {
    font-size: 11px;
    background: var(--cream-2);
    color: var(--brown-mid);
    border-radius: 20px;
    padding: 2px 8px;
}
.pet-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* ─── BOOKING FILTER CHIPS ───────────────────────── */
.acct-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.acct-filter-chip {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--brown-mid);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.15s;
}
.acct-filter-chip.active {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}
.acct-filter-chip:hover:not(.active) {
    border-color: var(--pink);
    color: var(--brown);
}

/* ─── BOOKING CARD PET AVATARS ───────────────────── */
.bc-avatars {
    display: flex;
    align-items: center;
}
.bc-pet-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -6px;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.bc-pet-avatar:first-child { margin-left: 0; }
.bc-pet-emoji {
    background: var(--cream-2);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── ACCOUNT CALENDAR ───────────────────────────── */
.acct-cal-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.acct-cal-box {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}
.acct-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.acct-cal-month-label {
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
    font-family: var(--serif);
}
.acct-cal-arrow {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    color: var(--brown-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}
.acct-cal-arrow:hover { border-color: var(--pink); color: var(--brown); }
.acct-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.acct-cal-dow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--brown-mid);
    padding: 4px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.acct-cal-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
    gap: 2px;
}
.acct-cal-cell:hover { background: var(--cream-2); }
.acct-cal-empty { cursor: default; }
.acct-cal-empty:hover { background: transparent; }
.acct-cal-day {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
}
.acct-cal-today-num {
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.acct-cal-dot {
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acct-cal-today .acct-cal-dot {
    background: var(--brown);
}

/* ─── CALENDAR DAY PANEL ─────────────────────────── */
.acct-day-panel {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}
.acct-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.acct-day-date {
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
    font-family: var(--serif);
}
.acct-day-count {
    font-size: 12px;
    font-weight: 600;
    background: var(--cream-2);
    color: var(--brown-mid);
    border-radius: 20px;
    padding: 4px 12px;
}
.acct-day-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.acct-day-item:last-child { margin-bottom: 0; }
.acct-day-item:hover { border-color: var(--pink); box-shadow: var(--shadow); }
.acct-day-item-service {
    font-weight: 600;
    font-size: 14px;
    color: var(--brown);
    margin-bottom: 4px;
}
.acct-day-item-time {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 2px;
}
.acct-day-item-service {
    font-weight: 500;
    font-size: 13px;
    color: var(--brown-mid);
    margin-bottom: 0;
}
.cday-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.cday-pet-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    background: var(--cream-2);
    flex-shrink: 0;
}
.cday-pet-avatar:first-child { margin-left: 0; }
.cday-pet-emoji {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── BOOKING CARD — ADMIN STYLE LAYOUT ─────────── */
.booking-card { padding: 14px; }

.bc-card-inner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 68px;
    flex-shrink: 0;
}

.bc-avatar-wrap-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc-avatar-lg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-emoji-lg {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-pet-names {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    text-align: center;
    word-break: break-word;
    max-width: 68px;
    line-height: 1.3;
}

.bc-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bc-svc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
}

.bc-duration {
    font-size: 13px;
    color: var(--brown-mid);
    margin-bottom: 2px;
}

.bc-date-line {
    font-size: 12px;
    color: var(--brown-mid);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-total-line {
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    margin-top: 2px;
}

/* ─── NEW PAYMENT STATUS BADGES ──────────────────── */
.status-deposit    { background: #D6EAF8; color: #1a5276; }
.status-paid       { background: #D5F5E3; color: #1e8449; }
.status-in-service { background: #E8DAEF; color: #6c3483; }

/* ─── PAYMENT NOTICE VARIANTS ────────────────────── */
.detail-payment-reserved {
    background: #EBF5FB;
    border-color: #AED6F1;
}
.detail-payment-reserved .detail-section-label { color: #1a5276; }

.detail-payment-paid {
    background: #EAFAF1;
    border-color: #A9DFBF;
}
.detail-payment-paid .detail-section-label { color: #1e8449; }

/* ─── LEAVE A REVIEW ──────────────────────────────── */
.review-star-picker {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.review-star {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}
.review-star.active { color: #f5a623; }
.review-star:hover  { color: #f5a623; }

.review-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.review-textarea:focus {
    outline: none;
    border-color: var(--pink);
}
.review-submit-btn {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
}
.review-submit-btn:hover { opacity: 0.85; }
.review-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.review-thanks {
    font-size: 14px;
    color: #1e8449;
    font-weight: 500;
    padding: 8px 0;
}

/* ─── FEEDBACK WRAP (review + tip + feedback combined) ── */
.feedback-wrap { border-top: 1px solid var(--border); padding-top: 16px; }
.tip-section-label { margin-top: 18px; margin-bottom: 8px; }
.feedback-submit-btn { margin-top: 16px; width: 100%; }

/* ─── TIP ──────────────────────────────────────────── */
.tip-section, .feedback-section { border-top: 1px solid var(--border); padding-top: 16px; }
.tip-note { font-size: 13px; color: var(--brown-mid); margin-bottom: 10px; }
.tip-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}
.tip-pill {
    padding: 7px 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    text-align: center;
    line-height: 1.2;
}
.tip-pill:hover { border-color: var(--pink); color: var(--pink); }
.tip-pill.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.tip-pill-skip { color: var(--brown-mid); font-weight: 500; }
.tip-pill-amt {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-top: 0;
}
.tip-pill-pct {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.65;
    margin-top: 1px;
}
.tip-zelle-notice {
    margin-top: 12px;
    padding: 10px 14px;
    background: #f9f6f2;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 12px;
    color: var(--brown-mid);
    line-height: 1.7;
}
.tip-zelle-hint {
    font-size: 12px;
    color: var(--brown-mid);
    line-height: 1.6;
}
.tip-zelle-email {
    display: inline-block;
    margin-top: 4px;
    font-weight: 600;
    color: var(--pink);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tip-sent-btn {
    display: block;
    margin-top: 10px;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid var(--pink);
    border-radius: 20px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.tip-sent-btn:hover { background: var(--pink); color: #fff; }
.tip-sent-btn.tip-sent-confirmed {
    background: #e8f5e9;
    border-color: #66bb6a;
    color: #2e7d32;
    cursor: default;
}
.tip-custom-input {
    width: 140px;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    box-sizing: border-box;
}
.tip-custom-input:focus { outline: none; border-color: var(--pink); }
.tip-zelle-notice {
    margin-top: 12px;
    background: #f0f7f0;
    border: 1px solid #b2d8b2;
    border-radius: 10px;
    padding: 12px 14px;
}
.tip-zelle-notice p { font-size: 13px; color: #2e7d32; margin-bottom: 4px; }
.tip-confirm-btn {
    margin-top: 10px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.15s;
}
.tip-confirm-btn:hover { opacity: 0.85; }
.tip-confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.tip-thanks {
    font-size: 14px;
    color: #2e7d32;
    font-weight: 500;
    padding: 8px 0;
    line-height: 1.6;
}



/* ── Address Autocomplete ── */
.addr-wrap { position: relative; }
.addr-dropdown {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
    background: #fff; border: 1px solid var(--border); border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1); max-height: 220px; overflow-y: auto;
}
.addr-option { padding: 10px 14px; cursor: pointer; font-size: 14px; border-bottom: 1px solid var(--border); }
.addr-option:last-child { border-bottom: none; }
.addr-option:hover { background: var(--cream-2, #fdf6f0); }

/* ── Mobile: prevent iOS auto-zoom on input focus ── */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
