/* ===================================
   single-page-styles.css — UPDATED TO MATCH INDEX DESIGN SYSTEM
   Uses same tokens: Sora + DM Sans, --brand #FF5A3C, --blue #003580
   All styles prefixed with 'sp-' to avoid conflicts
   =================================== */

/* ===================================
   DESIGN TOKENS — mirrors index.php
   =================================== */
.sp-wrapper {
    --brand:      #FF5A3C;
    --brand-dark: #D94427;
    --brand-lt:   rgba(255, 90, 60, .08);
    --ink:        #111827;
    --ink-soft:   #374151;
    --ink-muted:  #6B7280;
    --line:       #E5E7EB;
    --bg:         #F9FAFB;
    --white:      #FFFFFF;
    --gold:       #F59E0B;
    --green:      #059669;
    --blue:       #003580;
    --radius:     14px;
    --r-lg:       18px;
    --shadow-sm:  0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.08);
    --sh-lg:      0 8px 32px rgba(0,0,0,.14), 0 32px 64px rgba(0,0,0,.10);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head:  'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===================================
   RESET & BASE
   =================================== */
.sp-wrapper {
    display: block;
    width: 100%;
    font-family: var(--font-body);
    background: var(--bg);
    min-height: 100vh;
    padding: 48px 0 72px;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--ink);
}

.sp-wrapper *,
.sp-wrapper *::before,
.sp-wrapper *::after {
    box-sizing: border-box;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.sp-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.sp-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.sp-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Bootstrap-compatible helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.mb-2 { margin-bottom: 0.5rem; }

/* ===================================
   BREADCRUMB
   =================================== */
.sp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
    background: transparent;
}

.sp-breadcrumb-item {
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: .02em;
}

.sp-breadcrumb-item + .sp-breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: var(--line);
    font-size: 16px;
}

.sp-breadcrumb-item a {
    color: var(--ink-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.sp-breadcrumb-item a:hover {
    color: var(--brand);
}

.sp-breadcrumb-item.sp-active {
    color: var(--ink);
    font-weight: 700;
}

/* ===================================
   HEADER SECTION
   =================================== */
.sp-header {
    margin-bottom: 28px;
}

.sp-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 14px 0;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.sp-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.sp-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
}

.sp-location-icon {
    width: 14px;
    height: 14px;
    fill: var(--brand);
}

.sp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--green);
    color: white;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sp-status-warning {
    background: var(--gold);
    color: var(--ink);
}

/* Star rating display */
.sp-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    color: var(--gold);
}

/* ===================================
   IMAGE GALLERY
   =================================== */
.sp-gallery-wrapper {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.sp-main-image-container {
    position: relative;
    width: 100%;
    height: 480px;
    background: var(--bg);
    overflow: hidden;
}

.sp-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.sp-main-image-container:hover .sp-main-image {
    transform: scale(1.02);
}

.sp-gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.sp-gallery-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .95);
    border: 1.5px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow-md);
}

.sp-gallery-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: scale(1.08);
}

.sp-gallery-btn:hover svg {
    fill: white;
}

.sp-gallery-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--ink);
    transition: fill var(--transition);
}

.sp-gallery-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.sp-indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .45);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.sp-indicator.sp-active {
    background: white;
    width: 28px;
    border-radius: 4px;
}

.sp-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 12px;
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.sp-thumbnail {
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.sp-thumbnail:hover {
    transform: scale(1.04);
    border-color: var(--brand);
}

.sp-thumbnail.sp-active {
    border-color: var(--brand);
}

.sp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-thumbnail-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-muted);
    background: var(--line);
    border-radius: 10px;
}

.sp-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--ink-muted);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
}

.sp-no-image svg {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    opacity: 0.35;
}

/* ===================================
   QUICK FACTS GRID
   =================================== */
.sp-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.sp-fact-card {
    background: var(--white);
    padding: 18px 14px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.sp-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 90, 60, .25);
}

.sp-fact-icon {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}

.sp-fact-value {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -.02em;
}

.sp-fact-label {
    font-family: var(--font-head);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600;
}

/* ===================================
   CONTENT CARDS
   =================================== */
.sp-content-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    transition: box-shadow var(--transition);
}

.sp-content-card:hover {
    box-shadow: var(--shadow-md);
}

.sp-card-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--brand-lt);
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -.01em;
}

.sp-card-title svg {
    width: 20px;
    height: 20px;
    fill: var(--brand);
    flex-shrink: 0;
}

.sp-description {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 14.5px;
    font-family: var(--font-body);
}

/* ===================================
   DETAIL ITEMS
   =================================== */
.sp-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.sp-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sp-detail-label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-detail-value {
    font-family: var(--font-head);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    text-align: right;
}

.sp-detail-value a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.sp-detail-value a:hover {
    text-decoration: underline;
}

/* ===================================
   AMENITIES GRID
   =================================== */
.sp-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.sp-amenity-item {
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 9px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.sp-amenity-item:hover {
    background: var(--brand-lt);
    border-color: rgba(255, 90, 60, .3);
    color: var(--brand);
    transform: translateX(3px);
}

.sp-amenity-item i {
    font-size: 13px;
    color: var(--green);
}

.sp-amenity-item::before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    display: none;
}

.sp-amenity-item:not(:has(i))::before {
    display: inline;
}

/* ===================================
   RULES SECTION
   =================================== */
.sp-rules-grid {
    display: grid;
    gap: 10px;
}

.sp-rule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.sp-rule-item:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.sp-rule-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.sp-rule-allowed {
    color: var(--green);
}

.sp-rule-not-allowed {
    color: #ef4444;
}

.sp-rule-content {
    flex: 1;
}

.sp-rule-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 2px;
}

.sp-rule-desc {
    font-size: 12px;
    color: var(--ink-muted);
    font-family: var(--font-body);
}

/* ===================================
   SIDEBAR (RIGHT COLUMN)
   =================================== */
.sp-sidebar {
    position: sticky;
    top: 20px;
}

/* ── Pricing Card — matches bk-pcta / brand gradient feel ── */
.sp-pricing-card {
    background: var(--ink);
    color: white;
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--sh-lg);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.sp-pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 85% 15%, rgba(255,90,60,.25) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 15% 85%, rgba(255,90,60,.12) 0%, transparent 55%);
    pointer-events: none;
}

.sp-pricing-card > * {
    position: relative;
}

.sp-price-section {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sp-price {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.sp-price-unit {
    font-family: var(--font-head);
    font-size: 13px;
    opacity: 0.7;
    font-weight: 500;
}

.sp-action-btn {
    width: 100%;
    padding: 14px 22px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    letter-spacing: .01em;
}

.sp-btn-book {
    background: var(--brand);
    color: white;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(255, 90, 60, .35);
}

.sp-btn-book:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 90, 60, .45);
    color: white;
}

.sp-btn-contact {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
}

.sp-btn-contact:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    color: white;
}

.sp-share-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.sp-share-title {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.sp-share-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sp-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.sp-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.sp-share-facebook  { background: #1877f2; }
.sp-share-twitter   { background: #1da1f2; }
.sp-share-whatsapp  { background: #25d366; }
.sp-share-link      { background: rgba(255, 255, 255, .15); border: 1px solid rgba(255,255,255,.2); }

.sp-share-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* ── Contact Card ── */
.sp-contact-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.sp-owner-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.sp-owner-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    overflow: hidden;
}

.sp-owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-owner-details {
    flex: 1;
}

.sp-owner-name {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 3px;
}

.sp-owner-label {
    font-family: var(--font-head);
    font-size: 11px;
    color: var(--ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ===================================
   MODAL STYLES
   =================================== */
.sp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.sp-modal.sp-show {
    display: flex;
}

.sp-modal-dialog {
    background: var(--white);
    border-radius: var(--r-lg);
    max-width: 660px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
    animation: sp-modal-in .28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-modal-in {
    from { opacity: 0; transform: translateY(-30px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1); }
}

.sp-modal-header {
    background: var(--ink);
    color: white;
    padding: 22px 26px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sp-modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 85% 20%, rgba(255,90,60,.22) 0%, transparent 55%);
    pointer-events: none;
}

.sp-modal-header > * { position: relative; }

.sp-modal-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.01em;
}

.sp-modal-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.sp-modal-close:hover {
    background: rgba(255, 255, 255, .25);
    transform: rotate(90deg);
}

.sp-modal-close svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.sp-modal-body {
    padding: 28px;
}

.sp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.sp-form-group-full {
    grid-column: span 2;
}

.sp-form-group {
    display: flex;
    flex-direction: column;
}

.sp-form-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 11px;
    color: var(--ink);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.sp-form-input,
.sp-form-textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.sp-form-input:focus,
.sp-form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-lt);
}

.sp-form-textarea {
    resize: vertical;
    min-height: 96px;
}

.sp-form-hint {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-family: var(--font-head);
    font-weight: 600;
}

.sp-alert {
    padding: 13px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
}

.sp-alert-info {
    background: rgba(0, 53, 128, .07);
    color: var(--blue);
    border-left: 3px solid var(--blue);
}

.sp-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(255, 90, 60, .3);
}

.sp-submit-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 90, 60, .4);
}

.sp-form-note {
    text-align: center;
    color: var(--ink-muted);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    margin-top: 14px;
}

/* ===================================
   NOT FOUND STATE
   =================================== */
.sp-not-found {
    text-align: center;
    padding: 80px 20px;
}

.sp-not-found svg {
    width: 80px;
    height: 80px;
    fill: var(--gold);
    margin-bottom: 20px;
}

.sp-not-found h2 {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.sp-not-found p {
    color: var(--ink-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.sp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: var(--brand);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(255,90,60,.3);
}

.sp-back-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255,90,60,.4);
    color: white;
}

/* ===================================
   REVIEW MODAL EXTRAS
   =================================== */
.sp-star-rating {
    display: flex;
    gap: 4px;
}

.sp-star {
    font-size: 34px;
    color: var(--line);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.sp-star.active,
.sp-star:hover {
    color: var(--gold);
}

.sp-btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    box-shadow: 0 4px 16px rgba(255,90,60,.3);
}

.sp-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255,90,60,.4);
}

/* form select in review */
.sp-form-input[type="date"],
.sp-review-form select.sp-form-input {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-success { color: var(--green) !important; }
.text-muted   { color: var(--ink-muted) !important; }
.me-2         { margin-right: 0.5rem; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .sp-col-lg-8,
    .sp-col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sp-sidebar {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .sp-main-image-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .sp-wrapper {
        padding: 24px 0 56px;
    }

    .sp-title {
        font-size: 1.45rem;
    }

    .sp-main-image-container {
        height: 280px;
    }

    .sp-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-content-card {
        padding: 18px;
    }

    .sp-form-grid {
        grid-template-columns: 1fr;
    }

    .sp-form-group-full {
        grid-column: span 1;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .sp-container {
        padding: 0 14px;
    }

    .sp-main-image-container {
        height: 230px;
    }

    .sp-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-price {
        font-size: 34px;
    }

    .sp-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .sp-detail-value {
        text-align: left;
    }

    .sp-amenities-grid {
        grid-template-columns: 1fr;
    }

    .sp-pricing-card {
        padding: 20px;
    }
}