/*
 * rental.css â€” BoxRetreat Vacation Rental styles for Kaleo template
 * Loaded AFTER style.css and flatpickr.min.css
 */

/* ============================================
   KALEO OVERRIDES â€” rental pages only
   ============================================ */
#page-content.rental-page {
    background: #f4f5f7;
    min-height: 100vh;
}
#page-content.rental-page #main {
    padding-top: 0;
}

/* ============================================
   RENTAL LAYOUT CONTAINER
   ============================================ */
.rental-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ============================================
   GALLERY
   ============================================ */
.rental-gallery-section { padding-top: 80px; }
.rental-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 6px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.gallery-cell { overflow: hidden; cursor: pointer; background: #1a1a1a; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-main-cell { grid-column: 1; grid-row: 1 / 3; }
.gallery-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-cell:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-cell:nth-child(5) { grid-column: 3; grid-row: 2; }

.gallery-show-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
    z-index: 10;
    transition: box-shadow 0.15s;
}
.gallery-show-all:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.22); }

/* ============================================
   PROPERTY HEADER
   ============================================ */
.prop-header {
    padding: 28px 0 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.prop-header-left { flex: 1; min-width: 0; }
.prop-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #0A0A0A;
    line-height: 1.2;
    margin: 0 0 10px;
}
.prop-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    color: #444;
}
.prop-rating { font-weight: 700; color: #0A0A0A; display: flex; align-items: center; gap: 4px; }
.prop-rating i { color: #0A0A0A; font-size: 11px; }
.prop-superhost i { color: #000000; }
.prop-underline { text-decoration: underline; cursor: pointer; }
.prop-dot { color: #aaa; }
.prop-actions { display: flex; gap: 8px; flex-shrink: 0; margin-top: 6px; }
.btn-icon-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.15s;
    text-decoration: underline;
    font-family: var(--font-body);
}
.btn-icon-link:hover { background: #f0f0f0; }
.btn-icon-link.saved i { color: #000000; }

/* ============================================
   TWO-COLUMN MAIN LAYOUT
   ============================================ */
.rental-main-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    padding-top: 32px;
    align-items: start;
}
.rental-details { min-width: 0; }
.rental-sidebar { position: sticky; top: 90px; }

/* Host bar */
.host-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}
.host-bar h2 { font-size: 20px; font-weight: 600; color: #0A0A0A; margin: 0 0 4px; font-family: var(--font-heading); }
.host-bar p  { font-size: 14px; color: #555; margin: 0; }
.host-bar-avatar { position: relative; flex-shrink: 0; }
.host-bar-avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; display: block; }
.superhost-badge { position: absolute; bottom: -2px; right: -2px; background: #000000; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.superhost-badge i { color: #fff; font-size: 8px; }

/* Highlights */
.highlights { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; display: flex; flex-direction: column; gap: 20px; }
.highlight-item { display: flex; align-items: flex-start; gap: 16px; }
.hi-icon { font-size: 22px; color: #0A0A0A; margin-top: 2px; flex-shrink: 0; width: 28px; text-align: center; }
.highlight-item h4 { font-size: 14px; font-weight: 700; color: #0A0A0A; margin: 0 0 2px; }
.highlight-item p  { font-size: 13px; color: #555; margin: 0; line-height: 1.5; }

/* Description */
.prop-description { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.prop-description h3 { font-size: 18px; font-weight: 600; color: #0A0A0A; margin: 0 0 14px; font-family: var(--font-heading); }
.prop-description p  { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 12px; }
.btn-show-more { background: none; border: none; font-size: 14px; font-weight: 700; color: #0A0A0A; cursor: pointer; text-decoration: underline; padding: 0; font-family: var(--font-body); }

/* Amenities */
.prop-amenities { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.prop-amenities h3 { font-size: 18px; font-weight: 600; color: #0A0A0A; margin: 0 0 16px; font-family: var(--font-heading); }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.amenity-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #444; }
.amenity-item i { font-size: 16px; color: #0A0A0A; width: 20px; text-align: center; }
.amenity-item.unavailable { color: #bbb; text-decoration: line-through; }
.amenity-item.unavailable i { color: #bbb; }
.btn-show-amenities { background: #fff; border: 1.5px solid #0A0A0A; border-radius: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; color: #0A0A0A; font-family: var(--font-body); transition: background 0.15s; }
.btn-show-amenities:hover { background: #f5f5f5; }

/* Availability calendar */
.prop-calendar-section { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.prop-calendar-section h3 { font-size: 18px; font-weight: 600; color: #0A0A0A; margin: 0 0 6px; font-family: var(--font-heading); }
.cal-subtitle { font-size: 13px; color: #717171; margin: 0 0 16px; }

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    padding: 24px;
}
.bw-price-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.bw-price { font-size: 22px; font-weight: 700; color: #0A0A0A; font-family: var(--font-heading); }
.bw-unit  { font-size: 14px; color: #555; }
.bw-rating { font-size: 13px; color: #555; display: flex; align-items: center; gap: 4px; }
.bw-rating i { color: #0A0A0A; font-size: 11px; }
.bw-rating a { color: #555; text-decoration: underline; }

.bw-dates { border: 1.5px solid #222; border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.bw-dates-row { display: grid; grid-template-columns: 1fr 1fr; }
.bw-date-box { padding: 12px 14px; cursor: pointer; }
.bw-date-box:first-child { border-right: 1.5px solid #222; }
.bw-date-box label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #0A0A0A; margin-bottom: 4px; }
.bw-date-box input { font-size: 14px; color: #222; width: 100%; border: none; outline: none; background: transparent; padding: 0; margin: 0; box-shadow: none; }

.bw-guests {
    border-top: 1.5px solid #222;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}
.bw-guests label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #0A0A0A; display: block; margin-bottom: 2px; }
.guest-display { font-size: 14px; color: #222; }
.bw-guests-ctrls { display: flex; align-items: center; gap: 12px; }
.bw-guests-ctrls button { background: none; border: 1.5px solid #aaa; border-radius: 50%; width: 28px; height: 28px; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #444; transition: border-color 0.15s; line-height: 1; }
.bw-guests-ctrls button:hover:not(:disabled) { border-color: #0A0A0A; }
.bw-guests-ctrls button:disabled { opacity: 0.3; cursor: not-allowed; }
.guest-num { font-size: 14px; font-weight: 700; color: #222; min-width: 20px; text-align: center; }

.btn-reserve {
    width: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: opacity 0.15s;
    letter-spacing: 0.3px;
}
.btn-reserve:hover { opacity: 0.88; }
.bw-note { text-align: center; font-size: 12px; color: #717171; margin-top: 10px; margin-bottom: 0; }

/* Price breakdown */
.price-breakdown { margin-top: 16px; }
.bw-divider { border: none; border-top: 1px solid #e5e7eb; margin: 16px 0; }
.price-breakdown-line { display: flex; justify-content: space-between; font-size: 14px; color: #444; margin-bottom: 10px; }
.price-breakdown-line.subtotal { font-weight: 700; color: #0A0A0A; font-size: 15px; border-top: 1px solid #e5e7eb; padding-top: 12px; margin-top: 4px; }

/* ============================================
   REVIEWS
   ============================================ */
.rental-reviews { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.reviews-hero { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.big-rating { font-size: 26px; font-weight: 700; color: #0A0A0A; display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); }
.big-rating i { font-size: 22px; }
.reviews-count { font-size: 18px; color: #555; }

.review-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; margin-bottom: 28px; }
.review-cat-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #444; }
.review-cat-label { width: 110px; flex-shrink: 0; }
.review-cat-bar { flex: 1; height: 4px; background: #e5e7eb; border-radius: 2px; }
.review-cat-fill { height: 100%; background: #0A0A0A; border-radius: 2px; }
.review-cat-score { width: 28px; text-align: right; font-weight: 700; color: #0A0A0A; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.review-card { padding: 0; }
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-author-name { font-weight: 700; font-size: 14px; color: #0A0A0A; margin: 0 0 2px; }
.review-author-date { font-size: 12px; color: #717171; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.btn-show-reviews { background: none; border: 1.5px solid #0A0A0A; border-radius: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; color: #0A0A0A; font-family: var(--font-body); transition: background 0.15s; }
.btn-show-reviews:hover { background: #f5f5f5; }

/* ============================================
   LOCATION
   ============================================ */
.rental-location { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.rental-location h3 { font-size: 18px; font-weight: 600; color: #0A0A0A; margin: 0 0 4px; font-family: var(--font-heading); }
.loc-subtitle { font-size: 14px; color: #555; margin: 0 0 16px; }
.map-embed { border-radius: 12px; overflow: hidden; height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.loc-note { font-size: 13px; color: #555; margin-top: 14px; line-height: 1.6; }
.loc-note i { color: #000000; margin-right: 4px; }

/* ============================================
   HOST
   ============================================ */
.rental-host { padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; margin-bottom: 24px; }
.host-profile { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.host-photo-wrap { position: relative; flex-shrink: 0; }
.host-photo-wrap img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; }
.host-since { font-size: 13px; color: #717171; display: block; margin-top: 2px; }
.host-stats { display: flex; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.host-stat { font-size: 14px; color: #444; }
.host-stat strong { display: block; font-size: 16px; color: #0A0A0A; }
.host-about { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; }
.btn-contact-host { background: #fff; border: 1.5px solid #0A0A0A; border-radius: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; color: #0A0A0A; font-family: var(--font-body); display: flex; align-items: center; gap: 8px; width: fit-content; transition: background 0.15s; }
.btn-contact-host:hover { background: #f5f5f5; }

/* WhatsApp CTA — CAPA 1 conversion tracking target */
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #fff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    text-decoration: none;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.15s, color 0.15s;
}
.btn-whatsapp .fa { font-size: 16px; }
.btn-whatsapp:hover { background: transparent; color: #000000; transform: none; }

/* ============================================
   HOUSE RULES
   ============================================ */
.rental-rules { padding-bottom: 24px; margin-bottom: 24px; }
.rental-rules h3 { font-size: 18px; font-weight: 600; color: #0A0A0A; margin: 0 0 16px; font-family: var(--font-heading); }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rule-item { display: flex; align-items: flex-start; gap: 14px; }
.rule-item i { font-size: 18px; color: #0A0A0A; margin-top: 2px; width: 20px; text-align: center; flex-shrink: 0; }
.rule-label { font-size: 13px; font-weight: 700; color: #0A0A0A; display: block; margin-bottom: 2px; }
.rule-value { font-size: 13px; color: #555; }

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}
.bm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.bm-header h3 { font-size: 15px; font-weight: 700; color: #0A0A0A; margin: 0; font-family: var(--font-heading); }
.bm-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #555; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.bm-close:hover { background: #f5f5f5; }

.bm-steps {
    display: flex;
    padding: 12px 24px;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
}
.bm-step-ind {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    padding: 6px 0;
    border-bottom: 2.5px solid #e5e7eb;
    transition: all 0.2s;
}
.bm-step-ind.active { color: #0A0A0A; border-bottom-color: #0A0A0A; }
.bm-step-ind.done   { color: #000000; border-bottom-color: #000000; }

.bm-body { padding: 24px; flex: 1; }
.bm-step { display: none; }
.bm-step.active { display: block; }

/* Step 1 â€” trip summary */
.bm-summary-card {
    display: flex;
    gap: 16px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}
.bm-summary-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.bm-summary-card h4 { font-size: 14px; font-weight: 700; color: #0A0A0A; margin: 4px 0 2px; }
.bm-stars { font-size: 12px; color: #555; }
.bm-stars i { color: #0A0A0A; }

.bm-trip-summary { margin-bottom: 20px; }
.bm-trip-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.bm-trip-label { color: #717171; font-weight: 600; }
.bm-trip-value { font-weight: 700; color: #0A0A0A; }
.bm-trip-change { font-size: 12px; color: #717171; text-decoration: underline; cursor: pointer; margin-left: 8px; }

.bm-price-box { background: #f8f8f8; border-radius: 10px; padding: 16px; margin-bottom: 4px; }
.bm-price-box h4 { font-size: 13px; font-weight: 700; color: #717171; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 12px; }
.bm-price-row { display: flex; justify-content: space-between; font-size: 14px; color: #444; margin-bottom: 8px; }
.bm-price-row:last-child { margin-bottom: 0; }
.bm-total { font-weight: 800; color: #0A0A0A; font-size: 15px; border-top: 1px solid #e5e7eb; padding-top: 10px; margin-top: 6px; }

/* Step 2 â€” contact form */
.bm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bm-form-group { margin-bottom: 14px; }
.bm-form-group label { display: block; font-size: 12px; font-weight: 700; color: #717171; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.bm-form-group input,
.bm-form-group select,
.bm-form-group textarea {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: #222;
    outline: none;
    background: #fff;
    font-family: var(--font-body);
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.bm-form-group input:focus,
.bm-form-group select:focus,
.bm-form-group textarea:focus { border-color: #0A0A0A; }
.bm-form-group textarea { height: 80px; resize: none; }
.bm-field-note { font-size: 12px; color: #717171; margin: 4px 0 0; }

/* Step 3 â€” confirm */
.bm-confirm-header { text-align: center; padding: 16px 0 20px; }
.confirm-icon { width: 68px; height: 68px; border-radius: 50%; background: #f0fdf4; border: 3px solid #22c55e; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.confirm-icon i { font-size: 30px; color: #22c55e; }
.bm-confirm-header h3 { font-size: 22px; font-weight: 700; color: #0A0A0A; margin: 0 0 6px; font-family: var(--font-heading); }
.bm-confirm-header p { font-size: 14px; color: #555; margin: 0; }

.booking-id-badge { background: #f5f5f5; border-radius: 8px; padding: 12px 20px; text-align: center; margin: 16px 0; font-weight: 900; font-size: 20px; color: #222; letter-spacing: 2px; }
.bm-confirm-details { background: #f8f8f8; border-radius: 10px; padding: 16px; margin-bottom: 8px; }
.bm-confirm-row { display: flex; justify-content: space-between; font-size: 14px; color: #222; padding: 6px 0; border-bottom: 1px solid #ebebeb; }
.bm-confirm-row:last-child { border-bottom: none; font-weight: 700; font-size: 15px; }
.bm-confirm-note { font-size: 13px; color: #717171; text-align: center; margin-top: 12px; line-height: 20px; }

/* Modal footer */
.bm-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: sticky;
    bottom: 0;
    background: #fff;
}
.btn-bm-back { background: none; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 12px 20px; font-size: 14px; font-weight: 700; cursor: pointer; color: #222; font-family: var(--font-body); }
.btn-bm-back:hover { background: #f5f5f5; }
.btn-bm-next { background: #0A0A0A; color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-heading); transition: opacity 0.15s; margin-left: auto; }
.btn-bm-next:hover { opacity: 0.85; }
.btn-bm-next:disabled { opacity: 0.5; cursor: not-allowed; }
.accent-btn { background: #0A0A0A; }

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9500;
    display: flex;
    flex-direction: column;
}
.gal-ov-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; flex-shrink: 0; }
.gal-ov-counter { color: rgba(255,255,255,0.7); font-size: 14px; }
.gal-ov-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.15s; }
.gal-ov-close:hover { background: rgba(255,255,255,0.1); }
.gal-viewer { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gal-viewer img { max-height: 68vh; max-width: 90vw; object-fit: contain; border-radius: 4px; }
.gal-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.gal-nav:hover { background: rgba(255,255,255,0.22); }
.gal-nav.prev { left: 16px; }
.gal-nav.next { right: 16px; }
.gal-ov-caption { color: rgba(255,255,255,0.75); text-align: center; font-size: 14px; padding: 8px 24px 4px; flex-shrink: 0; }
.gal-thumb-strip { display: flex; gap: 8px; padding: 12px 24px 20px; overflow-x: auto; justify-content: center; flex-shrink: 0; }
.gal-thumb-mini { width: 72px; height: 52px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; transition: border-color 0.15s; }
.gal-thumb-mini.active { border-color: #fff; }
.gal-thumb-mini img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #222;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #16a34a; }
.toast.error   { background: #dc2626; }

/* ============================================
   FLATPICKR RESET (Bootstrap + Kaleo conflict)
   ============================================ */
.flatpickr-calendar,
.flatpickr-calendar *,
.flatpickr-calendar *::before,
.flatpickr-calendar *::after {
    box-sizing: content-box !important;
    margin: 0 !important;
    padding: 0 !important;
}
.flatpickr-calendar {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.14) !important;
    color: #222 !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    padding: 16px !important;
    width: auto !important;
    line-height: 1 !important;
}
.flatpickr-months { background: transparent !important; padding: 0 0 12px !important; height: auto !important; display: flex !important; align-items: center !important; }
.flatpickr-month  { background: transparent !important; color: #222 !important; height: auto !important; flex: 1 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.flatpickr-current-month { color: #222 !important; font-size: 14px !important; font-weight: 700 !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 4px !important; width: auto !important; position: static !important; left: auto !important; padding: 0 !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months { background: transparent !important; border: none !important; color: #222 !important; font-size: 14px !important; font-weight: 700 !important; padding: 0 2px !important; -webkit-appearance: none !important; cursor: pointer !important; }
.flatpickr-current-month .numInputWrapper { width: 48px !important; }
.flatpickr-current-month .numInputWrapper .numInput { color: #222 !important; font-size: 14px !important; font-weight: 700 !important; border: none !important; background: transparent !important; width: 48px !important; pointer-events: none !important; }
.numInputWrapper span.arrowUp, .numInputWrapper span.arrowDown { display: none !important; }
.flatpickr-prev-month, .flatpickr-next-month { color: #444 !important; fill: #444 !important; position: static !important; top: auto !important; padding: 4px 8px !important; display: flex !important; align-items: center !important; cursor: pointer !important; line-height: 1 !important; height: auto !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { fill: #0A0A0A !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { width: 14px !important; height: 14px !important; fill: inherit !important; }
.flatpickr-weekdays { background: transparent !important; height: auto !important; padding: 0 0 6px !important; }
.flatpickr-weekdaycontainer { display: flex !important; width: 100% !important; }
span.flatpickr-weekday { display: inline-block !important; background: transparent !important; color: #999 !important; font-size: 11px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.4px !important; flex: 1 !important; text-align: center !important; line-height: 1 !important; cursor: default !important; }
.flatpickr-days { border: none !important; width: auto !important; }
.flatpickr-innerContainer { border: none !important; width: auto !important; }
.flatpickr-rContainer { display: inline-block !important; padding: 0 !important; }
/* dayContainer â€” 7 cols Ã— 44px = 308px; overflow:hidden clips box-shadow bleeding at row edges */
.dayContainer { display: flex !important; flex-wrap: wrap !important; justify-content: flex-start !important; padding: 0 !important; min-width: 308px !important; max-width: 308px !important; width: 308px !important; box-shadow: none !important; overflow: hidden !important; }

/* Perfect circle â€” border-box so border doesn't add to 44px */
.flatpickr-day { box-sizing: border-box !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 44px !important; height: 44px !important; flex: 0 0 44px !important; max-width: 44px !important; border-radius: 50% !important; border: 1.5px solid transparent !important; background: transparent !important; color: #222 !important; font-size: 13px !important; font-weight: 400 !important; cursor: pointer !important; line-height: 1 !important; transition: background 0.12s !important; margin: 0 !important; }

/* Kill blue focus ring */
.flatpickr-day:hover { background: #f0f0f0 !important; border-color: transparent !important; }
.flatpickr-day:focus, .flatpickr-day:focus-visible { outline: none !important; border-color: transparent !important; box-shadow: none !important; }

.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: #ccc !important; background: transparent !important; cursor: default !important; pointer-events: none !important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: #ccc !important; background: transparent !important; text-decoration: line-through !important; cursor: not-allowed !important; pointer-events: none !important; }
.flatpickr-day.today { border-color: #0A0A0A !important; background: transparent !important; color: #0A0A0A !important; font-weight: 700 !important; }
.flatpickr-day.today:hover { background: #f0f0f0 !important; }

/* Selected / startRange / endRange â€” clean black circle, no gray extension on the dot itself */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover { background: #0A0A0A !important; color: #fff !important; border-color: #0A0A0A !important; font-weight: 700 !important; border-radius: 50% !important; box-shadow: none !important; }

/* inRange â€” gray strip; box-shadow bridges the ~2px transparent corners of adjacent circles */
.flatpickr-day.inRange { background: #f0f0f0 !important; border-color: #f0f0f0 !important; color: #222 !important; border-radius: 0 !important; box-shadow: -5px 0 0 #f0f0f0, 5px 0 0 #f0f0f0 !important; }

/* Availability calendar overrides (turquoise) */
#availability-calendar .flatpickr-calendar { border: 1px solid #e5e7eb !important; border-radius: 12px !important; box-shadow: none !important; }
#availability-calendar .flatpickr-day.selected,
#availability-calendar .flatpickr-day.startRange,
#availability-calendar .flatpickr-day.startRange:hover,
#availability-calendar .flatpickr-day.endRange,
#availability-calendar .flatpickr-day.endRange:hover { background: #000000 !important; border-color: #000000 !important; }
#availability-calendar .flatpickr-day.inRange { background: #e0f7fc !important; border-color: #e0f7fc !important; box-shadow: -5px 0 0 #e0f7fc, 5px 0 0 #e0f7fc !important; }
.bw-date-box input.flatpickr-input { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; font-size: 14px !important; color: #222 !important; cursor: pointer !important; caret-color: transparent !important; outline: none !important; width: 100% !important; line-height: 1 !important; }

/* ============================================
   ADMIN PANEL â€” same styles as before
   ============================================ */
html:has(.admin-body), .admin-body { background: #f4f5f7; }
#admin-wrap { min-height: 100vh; font-family: var(--font-body); color: #222; }
.admin-topbar { background: #0A0A0A; padding: 0 32px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.admin-topbar-left { display: flex; align-items: center; gap: 16px; }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-page-label { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 16px; }
.admin-property-tag { color: rgba(255,255,255,0.6); font-size: 13px; }
.admin-property-tag i { color: #000000; }
.admin-view-site { color: #fff; background: rgba(255,255,255,0.12); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: background 0.15s; }
.admin-view-site:hover { background: rgba(255,255,255,0.2); }
.admin-content { max-width: 1280px; margin: 0 auto; padding: 84px 32px 48px; }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.admin-stat-card { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
.stat-label { font-size: 12px; color: #717171; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 4px; }
.stat-value { font-size: 28px; font-weight: 800; color: #222; margin: 0; line-height: 1; }
.admin-tabs { display: flex; border-bottom: 2px solid #e5e7eb; margin-bottom: 24px; background: #fff; border-radius: 12px 12px 0 0; padding: 0 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.admin-tab { padding: 14px 20px; font-size: 14px; font-weight: 700; color: #717171; cursor: pointer; background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.15s; font-family: var(--font-body); display: flex; align-items: center; gap: 8px; }
.admin-tab.active { color: #0A0A0A; border-bottom-color: #0A0A0A; }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }
.admin-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 16px; flex-wrap: wrap; }
.admin-section-header h2 { font-size: 18px; font-weight: 800; color: #222; margin: 0; }
.admin-filter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-filter-row select, .admin-filter-row input { padding: 8px 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 13px; color: #222; outline: none; font-family: inherit; background: #fff; }
.admin-filter-row input { min-width: 220px; }
.admin-filter-row select:focus, .admin-filter-row input:focus { border-color: #000000; box-shadow: 0 0 0 2px rgba(0,0,0,0.08); }
.admin-table-wrap { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.05); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th { text-align: left; font-size: 11px; font-weight: 800; color: #717171; text-transform: uppercase; letter-spacing: 0.7px; padding: 12px 14px; border-bottom: 2px solid #e5e7eb; white-space: nowrap; background: #fafafa; }
.admin-table td { padding: 13px 14px; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #222; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f9fafb; }
.admin-table tr.row-cancelled td { opacity: 0.55; }
.admin-table code { background: #f5f5f5; padding: 3px 7px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.res-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-confirmed { background: #f0fdf4; color: #16a34a; }
.badge-cancelled { background: #fef2f2; color: #dc2626; }
.btn-view-res, .btn-cancel-res, .btn-delete-res { background: #f5f5f5; border: 1px solid #e5e7eb; border-radius: 6px; width: 30px; height: 30px; cursor: pointer; font-size: 13px; color: #222; margin-right: 4px; transition: all 0.15s; vertical-align: middle; }
.btn-cancel-res { color: #f59e0b; border-color: #fde68a; background: #fefce8; }
.btn-delete-res { color: #dc2626; border-color: #fecaca; background: #fef2f2; }
.admin-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; gap: 12px; color: #717171; font-size: 14px; text-align: center; background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; }
.admin-pricing-section { max-width: 900px; margin: 0 auto; }
.admin-pricing-section h2 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.pricing-card { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.pricing-row label { font-size: 14px; font-weight: 600; color: #222; }
.price-note { color: #717171; font-size: 12px; margin-left: 6px; }
.price-input-wrap { display: flex; align-items: center; gap: 8px; }
.price-dollar { font-size: 20px; font-weight: 700; color: #717171; }
.price-input-wrap input { width: 100px; border: 1px solid #d1d5db; border-radius: 8px; padding: 8px 12px; font-size: 18px; font-weight: 800; color: #222; outline: none; font-family: inherit; text-align: right; }
.price-input-wrap input:focus { border-color: #000000; box-shadow: 0 0 0 2px rgba(0,0,0,0.06); }
.pricing-preview { background: #f8f9fa; border-radius: 10px; padding: 16px 20px; margin: 20px 0; }
.pricing-preview h4 { font-size: 13px; font-weight: 700; color: #717171; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.preview-row { display: flex; justify-content: space-between; font-size: 14px; color: #444; padding: 5px 0; }
.preview-row.total { border-top: 1px solid #e5e7eb; margin-top: 6px; padding-top: 10px; font-weight: 800; color: #222; font-size: 15px; }
.btn-save-price { background: #0A0A0A; color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 8px; }
.btn-save-price:hover { opacity: 0.82; }
.price-saved-note { font-size: 13px; color: #16a34a; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.admin-blocked-section h2 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.blocked-layout { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; }
.blocked-cal-wrap { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.blocked-list-wrap { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); min-height: 200px; }
.blocked-list-wrap h4 { font-size: 14px; font-weight: 800; color: #222; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.blocked-count { background: #fef2f2; color: #dc2626; font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 20px; }
.blocked-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blocked-tag { display: inline-flex; align-items: center; gap: 7px; background: #fef2f2; color: #dc2626; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.blocked-tag button { background: none; border: none; cursor: pointer; color: #dc2626; font-size: 14px; padding: 0; line-height: 1; display: flex; align-items: center; opacity: 0.7; }
.blocked-empty { font-size: 13px; color: #9ca3af; padding: 12px 0; font-style: italic; }
.blocked-actions { margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.btn-clear-blocked { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 6px; }
.admin-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.admin-modal-box { background: #fff; border-radius: 16px; max-width: 540px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.admin-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f0f0f0; }
.admin-modal-header h3 { font-size: 16px; font-weight: 800; margin: 0; }
.admin-modal-header button { background: none; border: none; font-size: 18px; cursor: pointer; color: #717171; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.admin-modal-body { padding: 20px 24px; }
.admin-modal-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; gap: 12px; }
.modal-detail-grid { display: grid; gap: 0; }
.mdg-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid #f5f5f5; font-size: 14px; gap: 16px; }
.mdg-row span:first-child { color: #717171; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; }
.mdg-row.total { font-weight: 800; font-size: 15px; border-top: 2px solid #e5e7eb; margin-top: 4px; }
.btn-admin-cancel-res { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-admin-close { background: #0A0A0A; color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; }
.admin-confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.admin-confirm-box { background: #fff; border-radius: 16px; padding: 28px; max-width: 400px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.25); text-align: center; }
.admin-confirm-box h4 { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.admin-confirm-box p { color: #717171; font-size: 14px; margin: 0 0 24px; }
.confirm-btns { display: flex; gap: 10px; justify-content: center; }
.confirm-btns button { padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
#confirm-cancel-btn { background: #f5f5f5; color: #222; border: 1px solid #e5e7eb; }
.btn-danger { background: #dc2626; color: #fff; }
.admin-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: #222; color: #fff; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; z-index: 99999; transition: transform 0.3s cubic-bezier(.22,1,.36,1); white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.3); pointer-events: none; }
.admin-toast.show { transform: translateX(-50%) translateY(0); }
.admin-toast.success { background: #16a34a; }
.admin-toast.error { background: #dc2626; }
.admin-toast.info { background: #0A0A0A; }
.blocked-cal-wrap .flatpickr-day.selected { background: #fef2f2 !important; color: #dc2626 !important; border-color: #fecaca !important; font-weight: 800; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1040px) {
    .rental-main-row { grid-template-columns: 1fr; gap: 32px; }
    .rental-sidebar { position: relative; top: 0; }
    .rental-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
    .gallery-main-cell { grid-column: 1 / 3; grid-row: 1; }
    .admin-stats-row { grid-template-columns: 1fr 1fr; }
    .blocked-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .rental-gallery { grid-template-columns: 1fr; grid-template-rows: 280px; }
    .gallery-main-cell { grid-column: 1; grid-row: 1; }
    .gallery-cell:not(.gallery-main-cell) { display: none; }
    .amenities-grid, .reviews-grid, .rules-grid { grid-template-columns: 1fr; }
    .review-cats { grid-template-columns: 1fr; }
    .bm-form-row { grid-template-columns: 1fr; }
    .prop-header { flex-direction: column; }
    .admin-stats-row { grid-template-columns: 1fr; }
    .admin-content { padding: 76px 16px 32px; }
    .admin-topbar { padding: 0 16px; }
    .admin-topbar-right .admin-property-tag { display: none; }
    .flatpickr-calendar { font-size: 13px !important; }
    .flatpickr-day { height: 36px !important; }
    .dayContainer { min-width: 240px !important; }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

/* Cart button in header */
.shop-cart-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 20px; color: #0A0A0A; padding: 4px 8px; display: flex; align-items: center; }
#cart-badge { position: absolute; top: -4px; right: -4px; background: #000000; color: #fff; font-size: 10px; font-weight: 700; border-radius: 50%; width: 18px; height: 18px; align-items: center; justify-content: center; line-height: 1; }

/* Hero */
.shop-hero { background: linear-gradient(135deg, #0A0A0A 0%, #1a2a3a 100%); color: #fff; padding: 100px 24px 64px; text-align: center; }
.shop-hero-inner { max-width: 680px; margin: 0 auto; }
.shop-hero-tag { display: inline-block; background: rgba(0,0,0,0.08); color: #000000; border: 1px solid rgba(0,0,0,0.2); border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; margin-bottom: 20px; }
.shop-hero h1 { font-family: var(--font-heading); font-size: clamp(28px, 5vw, 48px); font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
.shop-hero p { font-size: 16px; color: rgba(255,255,255,0.75); margin: 0 0 32px; }

/* Date strip */
.shop-date-strip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 16px 20px; display: inline-flex; align-items: center; gap: 20px; backdrop-filter: blur(8px); }
.sds-field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.sds-field input { background: transparent; border: none; outline: none; color: #fff; font-size: 15px; font-weight: 500; min-width: 220px; cursor: pointer; }
.sds-field input::placeholder { color: rgba(255,255,255,0.5); }
.sds-nights { font-size: 14px; color: #000000; font-weight: 700; white-space: nowrap; }

/* Category tabs */
.shop-tabs-wrap { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 50; }
.shop-tabs { display: flex; gap: 0; overflow-x: auto; padding: 0 24px; scrollbar-width: none; max-width: 1200px; margin: 0 auto; }
.shop-tabs::-webkit-scrollbar { display: none; }
.shop-tab { background: none; border: none; border-bottom: 3px solid transparent; padding: 16px 20px; font-size: 14px; font-weight: 600; color: #717171; cursor: pointer; white-space: nowrap; transition: all 0.15s; }
.shop-tab.active, .shop-tab:hover { color: #0A0A0A; border-bottom-color: #0A0A0A; }

/* Product grid */
.shop-section { padding: 40px 0 60px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* Product card */
.shop-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.07); transition: box-shadow 0.2s, transform 0.2s; }
.shop-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-2px); }
.shop-card-img { position: relative; height: 200px; overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.shop-card:hover .shop-card-img img { transform: scale(1.04); }
.shop-badge { position: absolute; top: 12px; left: 12px; background: #0A0A0A; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; }
.shop-card-body { padding: 16px; }
.shop-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #000000; margin: 0 0 4px; }
.shop-card-name { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin: 0 0 4px; color: #0A0A0A; }
.shop-card-tagline { font-size: 13px; color: #555; font-weight: 500; margin: 0 0 8px; }
.shop-card-desc { font-size: 13px; color: #717171; line-height: 1.5; margin: 0 0 16px; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shop-card-price { font-size: 18px; font-weight: 800; color: #0A0A0A; }
.shop-card-per { font-size: 13px; font-weight: 400; color: #717171; }
.shop-add-btn { background: #0A0A0A; color: #fff; border: none; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.shop-add-btn:hover { background: #222; }

/* Qty controls on card */
.shop-qty-ctrl { display: flex; align-items: center; gap: 8px; background: #f4f5f7; border-radius: 8px; padding: 4px 8px; }
.sq-btn { background: none; border: none; width: 28px; height: 28px; font-size: 18px; font-weight: 700; cursor: pointer; color: #0A0A0A; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: background 0.1s; }
.sq-btn:hover { background: #e5e7eb; }
.sq-num { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; }

/* Info strip */
.shop-info-strip { background: #0A0A0A; color: #fff; padding: 48px 24px; }
.sis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.sis-item { text-align: center; }
.sis-item i { font-size: 28px; color: #000000; margin-bottom: 12px; display: block; }
.sis-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sis-item span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Cart sidebar */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; max-width: 100vw; height: 100vh; background: #fff; z-index: 201; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.15); transition: right 0.3s cubic-bezier(0.4,0,0.2,1); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f0f0f0; }
.cart-header h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin: 0; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #717171; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.1s; }
.cart-close:hover { background: #f4f5f7; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 12px; color: #999; }
.cart-empty i { font-size: 40px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; align-items: flex-start; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info span { display: block; font-size: 12px; color: #717171; }
.cart-item-info .cart-item-total { font-size: 14px; font-weight: 700; color: #0A0A0A; margin-top: 4px; }
.cart-remove { background: none; border: none; font-size: 20px; cursor: pointer; color: #ccc; padding: 0; line-height: 1; flex-shrink: 0; }
.cart-remove:hover { color: #dc2626; }
.cart-footer { padding: 16px 24px 24px; border-top: 1px solid #f0f0f0; }
.cart-summary { margin-bottom: 16px; }
.cs-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.cs-row.total { font-weight: 800; font-size: 16px; border-top: 2px solid #e5e7eb; padding-top: 10px; margin-top: 4px; }
.cart-note { font-size: 12px; color: #999; margin: 8px 0 0; }
.shop-checkout-btn { width: 100%; background: #0A0A0A; color: #fff; border: none; border-radius: 12px; padding: 16px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s; }
.shop-checkout-btn:hover { background: #222; }
.shop-checkout-btn:disabled { background: #ccc; cursor: not-allowed; }

/* Toast */
.shop-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: #0A0A0A; color: #fff; padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; white-space: nowrap; }
.shop-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.shop-toast.error { background: #dc2626; }
.shop-toast.success { background: #16a34a; }

@media (max-width: 768px) {
    .shop-hero { padding: 80px 16px 48px; }
    .shop-date-strip { flex-direction: column; gap: 8px; text-align: left; }
    .sds-field input { min-width: 0; width: 100%; }
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cart-sidebar { width: 100vw; }
}
@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */

/* Auth panel */
.acct-auth-panel { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.acct-auth-wrap { width: 100%; max-width: 420px; }
.acct-auth-card { background: #fff; border-radius: 20px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.acct-auth-logo { text-align: center; margin-bottom: 28px; }
.acct-tabs { display: flex; border-bottom: 2px solid #f0f0f0; margin-bottom: 24px; }
.acct-tab { flex: 1; background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 10px; font-size: 15px; font-weight: 700; color: #999; cursor: pointer; transition: all 0.15s; }
.acct-tab.active { color: #0A0A0A; border-bottom-color: #0A0A0A; }
.acct-form-panel { display: none; }
.acct-form-panel.active { display: block; }
.acct-field { margin-bottom: 16px; }
.acct-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #555; margin-bottom: 6px; }
.acct-field input { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 15px; outline: none; transition: border-color 0.15s; box-sizing: border-box; }
.acct-field input:focus { border-color: #0A0A0A; }
.acct-field input:disabled { background: #f4f5f7; color: #999; }
.acct-submit-btn { width: 100%; background: #0A0A0A; color: #fff; border: none; border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s; margin-bottom: 12px; }
.acct-submit-btn:hover { background: #222; }
.acct-submit-btn:disabled { background: #ccc; cursor: not-allowed; }
.acct-text-btn { width: 100%; background: none; border: none; color: #717171; font-size: 13px; cursor: pointer; text-align: center; padding: 4px; text-decoration: underline; }
.acct-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; border-radius: 8px; padding: 10px 14px; font-size: 13px; margin-top: 8px; }
.acct-success { background: #f0fdf4; color: #16a34a; border: 1px solid #86efac; border-radius: 8px; padding: 10px 14px; font-size: 13px; margin-top: 8px; }
.acct-note { text-align: center; font-size: 11px; color: #bbb; margin: 16px 0 0; }

/* Dashboard */
.acct-dashboard { padding: 40px 0 80px; min-height: calc(100vh - 70px); }
.acct-profile-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; background: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.acct-avatar { width: 52px; height: 52px; border-radius: 50%; background: #0A0A0A; color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acct-profile-bar h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 0 0 2px; }
.acct-signout-btn { margin-left: auto; background: none; border: 1.5px solid #e5e7eb; color: #555; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: all 0.15s; }
.acct-signout-btn:hover { border-color: #dc2626; color: #dc2626; }

/* Dashboard tabs */
.acct-dash-tabs { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; }
.acct-dash-tab { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: #555; cursor: pointer; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: all 0.15s; }
.acct-dash-tab.active, .acct-dash-tab:hover { background: #0A0A0A; color: #fff; border-color: #0A0A0A; }
.acct-dash-panel { display: none; }
.acct-dash-panel.active { display: block; }

/* Empty states */
.acct-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; background: #fff; border-radius: 16px; }
.acct-empty i { font-size: 40px; color: #ccc; margin-bottom: 16px; }
.acct-empty h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.acct-empty p { font-size: 14px; color: #717171; margin: 0 0 20px; }
.acct-cta-btn { display: inline-block; background: #0A0A0A; color: #fff; text-decoration: none; border-radius: 12px; padding: 12px 24px; font-size: 14px; font-weight: 700; }
.acct-cta-btn:hover { background: #222; }

/* Stay cards */
.acct-stays-list { display: grid; gap: 16px; }
.acct-stay-card { background: #fff; border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 180px 1fr; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.acct-stay-card.cancelled { opacity: 0.6; }
.asc-img { position: relative; overflow: hidden; }
.asc-img img { width: 100%; height: 100%; object-fit: cover; }
.asc-upcoming { position: absolute; top: 10px; left: 10px; background: #000000; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.asc-body { padding: 20px; }
.asc-body h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin: 0 0 10px; }
.asc-dates { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #555; margin-bottom: 8px; }
.asc-arrow { color: #ccc; }
.asc-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #717171; margin-bottom: 10px; }
.asc-total { font-size: 16px; font-weight: 800; color: #0A0A0A; margin-bottom: 6px; }

/* Order cards */
.acct-orders-list { display: grid; gap: 16px; }
.acct-order-card { background: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.aoc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 15px; font-weight: 700; }
.aoc-dates { font-size: 13px; color: #717171; margin-bottom: 10px; }
.aoc-items { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.aoc-item { background: #f4f5f7; border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.aoc-total { font-size: 17px; font-weight: 800; }

/* Profile form */
.acct-profile-form { background: #fff; border-radius: 16px; padding: 28px 28px; max-width: 480px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.acct-profile-form h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin: 0 0 20px; }

@media (max-width: 640px) {
    .acct-stay-card { grid-template-columns: 1fr; }
    .asc-img { height: 160px; }
    .acct-profile-bar { flex-wrap: wrap; }
    .acct-signout-btn { width: 100%; justify-content: center; }
}


