/* Description text — clean, consistent styling.
   All headings render as same-size bold text to stay uniform. */
.sos-detail-description {
    font-family: var(--sos-font-body) !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    color: var(--sos-gray-600) !important;
}
.sos-detail-description * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}
.sos-detail-description p {
    margin: 0 0 0.9em !important;
}
.sos-detail-description p:last-child {
    margin-bottom: 0 !important;
}
.sos-detail-description strong,
.sos-detail-description b {
    font-weight: 700 !important;
    color: var(--sos-slate-800) !important;
}
.sos-detail-description h1,
.sos-detail-description h2,
.sos-detail-description h3,
.sos-detail-description h4,
.sos-detail-description h5,
.sos-detail-description h6 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--sos-slate-800) !important;
    margin: 1.2em 0 0.3em !important;
    line-height: 1.6 !important;
    display: block !important;
}
.sos-detail-description *:first-child {
    margin-top: 0 !important;
}
.sos-detail-description ul,
.sos-detail-description ol {
    margin: 0 0 0.9em 1.5em !important;
    padding: 0 !important;
    list-style: disc !important;
}
.sos-detail-description ol {
    list-style: decimal !important;
}
.sos-detail-description li {
    margin-bottom: 0.25em !important;
    display: list-item !important;
}
.sos-detail-description a {
    color: var(--sos-teal) !important;
    text-decoration: underline !important;
}
.sos-detail-description br + br {
    display: none;
}
/* Phosphor icons inside descriptions keep their icon font */
.sos-detail-description i[class*="ph-"] {
    font-family: 'Phosphor-Duotone' !important;
    color: var(--sos-teal) !important;
    font-size: 1.05em !important;
}
/* Inline emoji-to-Phosphor icons */
.sos-detail-description .sos-desc-icon {
    display: inline-block !important;
    font-size: 1.05em !important;
    line-height: 1 !important;
    vertical-align: -0.12em !important;
    color: var(--sos-teal) !important;
    margin: 0 0.12em !important;
}

/* Gallery action pills (Video / 360 / Photos) live OUTSIDE .sos-gallery-grid
   and are positioned absolutely inside .sos-detail-gallery. This lets them
   extend leftward past the bottom-right thumb while the grid itself keeps
   overflow:hidden for its rounded corners + clipped hover-scale img. */
.sos-gallery-grid__actions {
    position: absolute;
    /* Align pills to the bottom-right of the grid. The grid sits inside
       .sos-detail-gallery which has 24px horizontal padding — add 12px
       more inset so pills sit inside the grid's visual edge. */
    bottom: calc(var(--sos-gap-sm) + 0px);
    right: calc(24px + var(--sos-gap-sm));
    z-index: 6;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
    align-items: center;
    width: auto;
}

/* Cinema mode overlay */
.sos-cinema {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.sos-cinema--open {
    display: flex;
}
.sos-cinema__close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sos-cinema__close:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}
.sos-cinema__content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    cursor: default;
}
.sos-cinema__content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--sos-radius-xl);
}
@media (max-width: 768px) {
    .sos-cinema__content {
        width: 95%;
        aspect-ratio: auto;
        height: 80vh;
    }
}

/* Gallery Grid */
.sos-detail-gallery {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.sos-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: clamp(480px, 65vh, 750px);
    overflow: hidden;
    border-radius: var(--sos-radius-xl);
}
.sos-gallery-grid__hero { grid-row: 1 / 3; }
.sos-gallery-grid__hero,
.sos-gallery-grid__thumb {
    border: none;
    background: var(--sos-sand-100);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.sos-gallery-grid__hero img,
.sos-gallery-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--sos-ease);
}
.sos-gallery-grid__hero:hover img,
.sos-gallery-grid__thumb:hover img {
    transform: scale(1.03);
}
/* "Show all photos" button — positioned inside the last thumb cell */
.sos-gallery-grid__more {
    position: static;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--sos-radius-full);
    padding: 8px 16px;
    font-family: var(--sos-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: var(--sos-shadow-md);
    transition: all var(--sos-duration) var(--sos-ease);
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.sos-gallery-grid__more:hover { transform: translateY(-2px); box-shadow: var(--sos-shadow-lg); }

/* Mobile gallery — full-width 1:1 swipeable */
.sos-gallery-mob { display: none; }

@media (max-width: 768px) {
    .sos-gallery-grid { display: none; }
    .sos-gallery-grid__actions { display: none; }
    .sos-detail-gallery { padding: 0; }
    .sos-gallery-mob {
        display: block;
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }
    .sos-gallery-mob img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    .sos-gallery-mob__cnt {
        position: absolute;
        bottom: 14px;
        left: 14px;
        background: rgba(0,0,0,0.55);
        color: #fff;
        padding: 5px 12px;
        border-radius: var(--sos-radius-sm);
        font-size: 0.72rem;
        font-weight: 600;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    .sos-gallery-mob__actions {
        position: absolute;
        bottom: 12px;
        right: 12px;
        display: flex;
        gap: 6px;
        z-index: 5;
    }
    .sos-gallery-mob__pill {
        background: rgba(255,255,255,0.92);
        color: var(--sos-slate-800);
        border: none;
        padding: 8px 14px;
        border-radius: var(--sos-radius-full);
        font-size: 0.75rem;
        font-weight: 600;
        cursor: pointer;
        font-family: var(--sos-font-body);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .sos-gallery-mob__pill i {
        font-size: 0.7rem;
    }
    .sos-gallery-mob__btn { display: none; }
}

/* Detail Layout */
/* Content container — matches gallery width */
.sos-detail-container {
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

.sos-detail-layout {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: var(--sos-gap-2xl);
    align-items: start;
}
@media (max-width: 1200px) {
    .sos-detail-layout { grid-template-columns: 1fr minmax(260px, 320px); gap: var(--sos-gap-lg); }
}
@media (max-width: 1024px) {
    .sos-detail-layout { grid-template-columns: 1fr; }
    .sos-detail-sidebar { display: none; }
}

/* Detail Header */
.sos-detail-back {
    font-size: 0.85rem;
    color: var(--sos-gray-500);
    margin-bottom: var(--sos-gap-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sos-detail-back:hover { color: var(--sos-teal); }
.sos-detail-header h1 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 400; margin: 0; }
.sos-detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sos-gap-lg);
    padding: var(--sos-gap-sm) 0;
    border: none;
}
.sos-detail-badges { display: flex; gap: var(--sos-gap-xs); flex-wrap: wrap; }

/* Name row: title | location pin */
.sos-detail-name-row {
    display: flex;
    align-items: baseline;
    gap: var(--sos-gap-md);
    flex-wrap: wrap;
    justify-content: space-between;
}
.sos-detail-name-left {
    display: flex;
    align-items: baseline;
    gap: var(--sos-gap-md);
}
.sos-detail-name-divider {
    width: 1px;
    height: 1.2em;
    background: var(--sos-sand-300);
    align-self: center;
}
.sos-detail-location {
    font-size: 0.9rem;
    color: var(--sos-gray-500);
    font-family: var(--sos-font-body);
    font-weight: 400;
    white-space: nowrap;
    padding-left: var(--sos-gap-md);
    border-left: 2px solid var(--sos-sand-200);
}
.sos-detail-location i {
    color: var(--sos-gray-400);
    margin-right: 2px;
}
.sos-detail-name-right {
    display: flex;
    align-items: center;
    gap: var(--sos-gap-sm);
}
/* Mobile-only heart — hidden on desktop */
.sos-fav-heart--mobile-header {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--sos-sand-200);
    background: none;
    color: var(--sos-gray-400);
    font-size: 0.95rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.sos-fav-heart--mobile-header:hover { color: #ef4444; }
.sos-fav-heart--mobile-header.sos-fav-heart--active { color: #ef4444; }
@media (max-width: 768px) {
    .sos-fav-heart--mobile-header { display: flex; }
}

/* Features section (non-sticky) */
.sos-detail-features-section {
    padding: var(--sos-gap-xl) 0 var(--sos-gap-lg);
    margin-bottom: 0;
}
.sos-detail-features-section h2 {
    margin-bottom: var(--sos-gap-md);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

/* Section Nav Bar (sticky) */
.sos-detail-nav {
    position: sticky;
    top: var(--sos-header-h);
    z-index: 99;
    display: flex;
    gap: 0;
    background: var(--sos-white);
    border-top: 1px solid var(--sos-sand-200);
    border-bottom: 1px solid var(--sos-sand-200);
    margin-bottom: var(--sos-gap-xl);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sos-detail-nav::-webkit-scrollbar { display: none; }
.sos-detail-nav__link {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    font-family: var(--sos-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--sos-gray-500);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.sos-detail-nav__link:hover {
    color: var(--sos-slate-800);
}
.sos-detail-nav__link--active {
    color: var(--sos-slate-800);
    border-bottom-color: var(--sos-teal);
}

/* Keep entire map section below header/nav dropdowns */
.sos-detail-main .sos-map-wrap {
    position: relative;
    z-index: 0;
    isolation: isolate;
}
@media (max-width: 768px) {
    .sos-detail-nav {
        position: static;
    }
    .sos-detail-nav__link {
        flex: none;
        padding: 12px 14px;
        font-size: 0.8rem;
    }
}

.sos-fav-heart--gallery {
    position: absolute;
    top: calc(var(--sos-header-h) + 14px);
    left: 38px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--sos-gray-500);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.sos-fav-heart--gallery:hover { color: #ef4444; background: rgba(255,255,255,0.95); }
.sos-fav-heart--gallery.sos-fav-heart--active { color: #ef4444; }
.sos-fav-heart--gallery.sos-fav-heart--active i { font-weight: 900; }
@media (max-width: 768px) {
    .sos-fav-heart--gallery { display: none; }
}

/* Stats */
.sos-detail-stats {
    display: flex;
    gap: var(--sos-gap-lg);
    padding: var(--sos-gap-xs) 0;
    border: none;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}
.sos-detail-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #000;
}
.sos-detail-stat i {
    font-size: 22px;
    color: var(--sos-teal);
    width: auto;
    text-align: center;
}
.sos-detail-stat__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-right: 12px;
    position: relative;
    background: transparent;
}
/* Halved-orange cross-section — matches the brand logo citrus slice.
   Three stacked background layers (top → bottom in paint order):
   1. Pale pith at center
   2. White radiating segment dividers (conic-gradient)
   3. Bright brand-orange flesh (radial gradient from warm yellow center) */
.sos-detail-stat__chip::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #fff4cc 0 1.6px, transparent 2.3px),
        repeating-conic-gradient(
            from 22.5deg at center,
            transparent 0deg 43deg,
            rgba(255,252,240,0.92) 43deg 47deg
        ),
        radial-gradient(circle at 50% 50%, #ffd85a 0%, #ffb833 38%, #f8a41e 68%, #e5930e 100%);
    box-shadow:
        inset 0 0 0 1px #e5930e,
        inset 0 0 0 1.5px rgba(255,255,255,0.9),
        inset 0 0 0 2.5px #e5930e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-25%);
    z-index: 0;
}
.sos-detail-stat__chip i {
    position: relative;
    z-index: 1;
    transform: translateX(60%);
    margin: 0;
}
.sos-detail-stat__icon {
    flex-shrink: 0;
    font-size: 42px;
    line-height: 1;
    color: var(--sos-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Phosphor duotone: light blue primary, teal secondary detail */
.sos-detail-stat__icon.ph-duotone::before {
    color: #CEEBF2;
    opacity: 1;
}
.sos-detail-stat__icon.ph-duotone::after {
    color: #0C9CBE;
    opacity: 1;
}
.sos-detail-stat--pets i { color: var(--sos-teal); }

/* Why We Love It — Features grid */
.sos-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.sos-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    font-weight: 300;
    color: #000;
}
.sos-feature-item__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sos-feature-item__icon img {
    width: 26px;
    height: 26px;
}
.sos-feature-item__icon {
    font-size: 26px;
    line-height: 1;
    color: var(--sos-teal);
}
.sos-feature-item__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-right: 12px;
    position: relative;
    background: transparent;
}
/* Halved-orange cross-section (matches .sos-detail-stat__chip::before) */
.sos-feature-item__chip::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #fff4cc 0 1.5px, transparent 2.1px),
        repeating-conic-gradient(
            from 22.5deg at center,
            transparent 0deg 43deg,
            rgba(255,252,240,0.92) 43deg 47deg
        ),
        radial-gradient(circle at 50% 50%, #ffd85a 0%, #ffb833 38%, #f8a41e 68%, #e5930e 100%);
    box-shadow:
        inset 0 0 0 1px #e5930e,
        inset 0 0 0 1.5px rgba(255,255,255,0.9),
        inset 0 0 0 2.5px #e5930e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-25%);
    z-index: 0;
}
.sos-feature-item__chip i {
    position: relative;
    z-index: 1;
    transform: translateX(45%);
}
/* Light blue primary, teal secondary detail */
.sos-feature-item__icon.ph-duotone::before {
    color: #CEEBF2;
    opacity: 1;
}
.sos-feature-item__icon.ph-duotone::after {
    color: #0C9CBE;
    opacity: 1;
}
@media (max-width: 768px) {
    .sos-features-grid { grid-template-columns: 1fr 1fr; }
}
.sos-detail-stat span {
    display: block;
    font-size: 0.85rem;
    color: var(--sos-gray-500);
}

/* Sections */
.sos-detail-section { margin-bottom: var(--sos-gap-3xl); }
.sos-detail-address {
    font-size: 0.9rem;
    color: var(--sos-gray-500);
    margin-bottom: var(--sos-gap-md);
}
.sos-detail-address i {
    color: var(--sos-teal);
    margin-right: 4px;
}
.sos-detail-section h2 {
    font-size: 1.4rem;
    margin-bottom: var(--sos-gap-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.sos-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(12, 156, 190, 0.1);
    color: var(--sos-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Description — collapsible with gradient fade */
.sos-desc-wrap {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.sos-desc-wrap span[style*="background-color:#ffffff"],
.sos-desc-wrap span[style*="background-color: #ffffff"],
.sos-desc-wrap span[style*="background-color:#FFFFFF"],
.sos-desc-wrap span[style*="background-color: #FFFFFF"],
.sos-desc-wrap span[style*="background:#fff"],
.sos-desc-wrap span[style*="background: #fff"] {
    background-color: transparent !important;
    background: transparent !important;
}
.sos-desc-wrap--expanded { max-height: 4000px; }
.sos-desc-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--sos-white));
    pointer-events: none;
    transition: opacity 0.3s;
}
.sos-desc-wrap--expanded .sos-desc-fade { opacity: 0; }

/* Where You'll Sleep */
.sos-sleep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 768px) {
    .sos-sleep-grid { grid-template-columns: repeat(2, 1fr); }
}
.sos-sleep-card {
    background: none;
    border: 1px solid var(--sos-teal);
    border-radius: var(--sos-radius-md);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sos-sleep-card i {
    font-size: 32px;
    color: var(--sos-teal);
    margin-bottom: 8px;
}
.sos-sleep-card__icon-wrap {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sos-sleep-card__icon {
    font-size: 32px;
    line-height: 1;
    color: var(--sos-teal);
    display: block;
}
.sos-sleep-card h4 {
    font-family: var(--sos-font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--sos-slate-800);
    margin-bottom: 4px;
    letter-spacing: 0;
    text-align: center;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}
.sos-sleep-card p {
    font-size: 0.78rem;
    color: var(--sos-gray-500);
}
.sos-sleep-card__ensuite {
    margin-top: 4px;
    font-size: 0.72rem;
    color: var(--sos-teal);
    font-weight: 400;
}

/* Video / 360 Tour — responsive aspect ratio */
.sos-video-tour {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--sos-radius-xl);
    overflow: hidden;
}
.sos-video-tour iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--sos-radius-xl);
}

/* Amenities — categorized flat grid with collapsible */
/* Featured amenities — top 10 with icons */
.sos-amenities-featured {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: var(--sos-gap-lg);
}
.sos-amenity-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    border: 1px solid var(--sos-teal);
    border-radius: var(--sos-radius-md);
    padding: 16px 12px;
    min-width: 120px;
}
.sos-amenity-feat__icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sos-amenity-feat__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.sos-amenity-feat__icon i {
    font-size: 32px;
    line-height: 1;
    color: var(--sos-teal);
}
.sos-amenity-feat span {
    font-size: 0.8rem;
    color: var(--sos-gray-600);
    line-height: 1.3;
}
@media (max-width: 768px) {
    .sos-amenities-featured { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .sos-amenities-featured { grid-template-columns: repeat(2, 1fr); }
}

.sos-ac-wrap {
    max-height: 320px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.sos-ac-wrap--expanded { max-height: none; }
.sos-ac-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--sos-white));
    pointer-events: none;
    transition: opacity 0.3s;
}
.sos-ac-wrap--expanded .sos-ac-fade { opacity: 0; }
.sos-ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.sos-ac-cat {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sos-teal);
    padding: 18px 4px 6px;
    border-bottom: 1px solid var(--sos-sand-200);
}
.sos-ac-cat:first-child { padding-top: 0; }
.sos-ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--sos-gray-600);
    padding: 10px 4px;
}
.sos-ac-item i {
    color: var(--sos-teal);
    font-size: 0.65rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--sos-teal-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sos-ac-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--sos-teal);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--sos-font-body);
    padding: 0;
}
.sos-ac-toggle:hover { opacity: 0.7; }
@media (max-width: 640px) {
    .sos-ac-grid { grid-template-columns: 1fr; }
}

/* House Rules */
.sos-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sos-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--sos-gray-600);
    padding: 8px 0;
    background: none;
    border-radius: 0;
}
.sos-rule__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}
.sos-rule__icon--yes {
    background: rgba(12, 156, 190, 0.1);
    color: var(--sos-teal);
}
.sos-rule__icon--no {
    background: #fef2f2;
    color: #ef4444;
}
@media (max-width: 768px) {
    .sos-rules-grid { grid-template-columns: 1fr 1fr; }
}

/* Availability Calendar (inline on detail page) */
.sos-avail-cal {
    background: var(--sos-sand-50);
    border-radius: var(--sos-radius-xl);
    padding: 20px;
}
.sos-avail-cal__hdr {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.sos-avail-cal__titles {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-family: var(--sos-font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
}
.sos-avail-cal__nav {
    width: 34px; height: 34px; border: none;
    background: var(--sos-sand-100); border-radius: var(--sos-radius-sm);
    cursor: pointer; font-size: 0.75rem; color: var(--sos-gray-600);
    display: flex; align-items: center; justify-content: center;
}
.sos-avail-cal__nav:hover { background: var(--sos-sand-200); }
.sos-avail-cal__months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sos-avail-cal__month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    text-align: center;
}
.sos-avail-cal__dow {
    font-size: 0.6rem; font-weight: 700; color: var(--sos-gray-400);
    padding: 4px 0; text-transform: uppercase;
}
.sos-avail-cal__day {
    font-size: 0.78rem; padding: 12px 0; border-radius: 0;
    color: var(--sos-slate-800);
}
.sos-avail-cal__day--emp { visibility: hidden; }
.sos-avail-cal__day--past { color: var(--sos-sand-300); }
.sos-avail-cal__day--booked {
    background: var(--sos-teal) !important; color: #fff !important; border-radius: 0; cursor: default !important;
}
.sos-avail-cal__day--checkin {
    background: linear-gradient(135deg, var(--sos-sand-50) 50%, var(--sos-teal) 50%) !important;
    color: var(--sos-slate-800);
}
.sos-avail-cal__day--checkout {
    background: linear-gradient(135deg, var(--sos-teal) 50%, var(--sos-sand-50) 50%) !important;
    color: var(--sos-slate-800);
}
.sos-avail-cal__day--turnover {
    background: linear-gradient(135deg, var(--sos-teal) 50%, var(--sos-teal-hover) 50%) !important;
    color: #fff !important;
}
.sos-avail-cal__day--today { font-weight: 700; box-shadow: inset 0 0 0 1.5px var(--sos-slate-800); }
.sos-avail-cal__day--sel-start { background: var(--sos-teal) !important; color: #fff !important; font-weight: 600; border-radius: 0; }
.sos-avail-cal__day--sel-end { background: var(--sos-teal) !important; color: #fff !important; font-weight: 600; border-radius: 0; }
.sos-avail-cal__day--sel-mid { background: var(--sos-teal-light) !important; border-radius: 0; }
button.sos-avail-cal__day { border: none; background: none; font-family: var(--sos-font-body); cursor: pointer; }
button.sos-avail-cal__day:not(.sos-avail-cal__day--past):not(.sos-avail-cal__day--booked):not(.sos-avail-cal__day--checkin):not(.sos-avail-cal__day--emp):hover {
    background: var(--sos-sand-100);
}
.sos-avail-cal__day--past, .sos-avail-cal__day--booked { cursor: default; }
.sos-avail-cal__legend {
    display: flex; gap: 20px; margin-top: 16px; padding-top: 12px;
    border-top: 1px solid var(--sos-sand-100); font-size: 0.75rem; color: var(--sos-gray-500);
    justify-content: center;
}
.sos-avail-dot {
    display: inline-block; width: 10px; height: 10px; border-radius: 0;
    margin-right: 5px; vertical-align: middle;
}
.sos-avail-dot--open { background: var(--sos-sand-50); border: 1px solid var(--sos-sand-300); }
.sos-avail-dot--booked { background: var(--sos-teal); }
.sos-avail-dot--checkin { background: linear-gradient(135deg, var(--sos-sand-50) 50%, var(--sos-teal) 50%); }
.sos-avail-dot--checkout { background: linear-gradient(135deg, var(--sos-teal) 50%, var(--sos-sand-50) 50%); }
.sos-avail-dot--today { background: var(--sos-sand-50); box-shadow: inset 0 0 0 1.5px var(--sos-slate-800); }
@media (max-width: 768px) {
    .sos-avail-cal__months { grid-template-columns: 1fr; }
    .sos-avail-cal__titles { grid-template-columns: 1fr; gap: 0; }
}

/* Review platforms + average */
.sos-rv-avg {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.05rem;
    color: var(--sos-orange);
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}
.sos-rv-platforms {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    margin-top: 2px;
}
.sos-rv-plat-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--sos-radius-sm);
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--sos-sand-200);
    padding: 3px;
    margin-right: -8px;
    position: relative;
}
.sos-rv-plat-logo:nth-child(1) { z-index: 3; }
.sos-rv-plat-logo:nth-child(2) { z-index: 2; }
.sos-rv-plat-logo:nth-child(3) { z-index: 1; margin-right: 0; }

/* Reviews */
/* Review platform icons — overlapping pill style */
#sos-sec-reviews h2 {
    margin-bottom: 4px;
}
.sos-review-platforms {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    margin-top: 0;
}
.sos-rv-plat-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--sos-radius-sm);
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--sos-sand-200);
    padding: 3px;
    margin-right: -8px;
    position: relative;
}
.sos-rv-plat-logo:nth-child(1) { z-index: 3; }
.sos-rv-plat-logo:nth-child(2) { z-index: 2; }
.sos-rv-plat-logo:nth-child(3) { z-index: 1; margin-right: 0; }

.sos-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sos-gap-md);
}
.sos-review-card {
    background: var(--sos-sand-50);
    border-radius: var(--sos-radius-md);
    padding: var(--sos-gap-lg);
}
.sos-review-card__header {
    display: flex;
    align-items: center;
    gap: var(--sos-gap-sm);
    margin-bottom: var(--sos-gap-sm);
    flex-wrap: wrap;
}
.sos-review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sos-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.sos-review-card__header strong { font-size: 0.95rem; }
.sos-review-card__header span { font-size: 0.8rem; color: var(--sos-gray-500); display: block; }
.sos-review-card__stars { margin-left: auto; }
.sos-stars { color: #F8A41E; font-size: 0.95rem; display: inline-flex; gap: 1px; }
.sos-stars i { color: #F8A41E !important; }
.sos-stars i.sos-star--filled { color: #F8A41E !important; }
.sos-stars i.sos-star--empty { color: rgba(0, 0, 0, 0.18) !important; }
/* Override any global duotone pseudo-element rules so stars render solid */
.sos-stars i.sos-star::before,
.sos-stars i.sos-star::after { color: inherit !important; opacity: 1 !important; }
.sos-review-card p { font-size: 0.9rem; color: var(--sos-gray-600); line-height: 1.6; }
@media (max-width: 768px) {
    .sos-reviews-grid { grid-template-columns: 1fr; }
    .sos-detail-stats { gap: var(--sos-gap-md); flex-wrap: nowrap; }
    .sos-detail-stat i { font-size: 20px; width: auto; }
    .sos-detail-name-left { flex-wrap: wrap; gap: var(--sos-gap-sm); }
    .sos-detail-location { padding-left: 0; border-left: none; }
}

/* Booking Sidebar */
/* Sidebar scaling handled by JS for full browser support */
.sos-detail-sidebar {
    position: sticky;
    top: calc(var(--sos-header-h) + 50px + var(--sos-gap-md));
    transform-origin: top right;
}
.sos-booking-card {
    background: #fff;
    border: 2px solid var(--sos-sand-200);
    border-radius: var(--sos-radius-xl);
    padding: 16px 18px;
    box-shadow: var(--sos-shadow-md);
}
.sos-booking-card__header { margin-bottom: var(--sos-gap-sm); }
.sos-booking-card__type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sos-teal);
    font-weight: 600;
}
.sos-booking-card__header h3 { font-size: 1.3rem; margin-top: 4px; }

/* Price prompt */
.sos-booking-card__price-prompt {
    text-align: center;
    padding: var(--sos-gap-xs) 0;
    margin-bottom: var(--sos-gap-xs);
}
.sos-booking-card__price-label {
    font-size: 0.82rem;
    color: var(--sos-gray-500);
    font-style: italic;
}

/* Date picker fields */
.sos-booking-card__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--sos-sand-200);
    border-radius: var(--sos-radius-md);
    overflow: hidden;
    margin-bottom: var(--sos-gap-md);
}
.sos-booking-card__date-field {
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--sos-duration);
}
.sos-booking-card__date-field:first-child { border-right: 1px solid var(--sos-sand-200); }
.sos-booking-card__date-field:hover { background: var(--sos-sand-50); }
.sos-booking-card__date-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sos-gray-500);
    margin-bottom: 2px;
    pointer-events: none;
}
.sos-booking-card__date-val { font-size: 0.9rem; font-weight: 500; color: var(--sos-slate-800); }
.sos-booking-card__placeholder { color: var(--sos-gray-400); }

/* Sidebar calendar */
.sos-bk-cal {
    display: none;
    background: #fff;
    border: 1px solid var(--sos-sand-200);
    border-radius: var(--sos-radius-md);
    padding: 14px;
    margin-bottom: var(--sos-gap-md);
    box-shadow: var(--sos-shadow-sm);
}
.sos-bk-cal--open { display: block; }
.sos-bk-cal__hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sos-bk-cal__title { font-family: var(--sos-font-display); font-size: 0.9rem; font-weight: 700; }
.sos-bk-cal__nav {
    width: 30px; height: 30px; border: none; background: var(--sos-sand-100);
    border-radius: var(--sos-radius-sm); cursor: pointer; font-size: 0.7rem;
    color: var(--sos-gray-600); display: flex; align-items: center; justify-content: center;
}
.sos-bk-cal__nav:hover { background: var(--sos-sand-200); }
.sos-bk-cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; text-align: center; }
.sos-bk-cal__dow { font-size: 0.6rem; font-weight: 700; color: var(--sos-gray-400); padding: 4px 0; text-transform: uppercase; }
.sos-bk-cal__day {
    font-size: 0.78rem; padding: 7px 0; border-radius: var(--sos-radius-sm); cursor: pointer;
    border: none; background: transparent; font-family: var(--sos-font-body); width: 100%;
    color: var(--sos-slate-800); transition: background 0.1s;
}
.sos-bk-cal__day:hover:not(.sos-bk-cal__day--dis):not(.sos-bk-cal__day--emp) { background: var(--sos-sand-100); }
.sos-bk-cal__day--today { font-weight: 700; box-shadow: inset 0 0 0 1.5px var(--sos-teal); }
.sos-bk-cal__day--dis { color: var(--sos-sand-300); cursor: default; }
.sos-bk-cal__day--booked {
    background: var(--sos-teal) !important;
    color: rgba(255,255,255,0.85) !important;
    cursor: default;
    border-radius: 0;
}
.sos-bk-cal__day--book-start {
    background: linear-gradient(to bottom right, transparent 50%, var(--sos-teal) 50%) !important;
    color: var(--sos-slate-600);
    border-radius: 0;
}
.sos-bk-cal__day--book-end {
    background: linear-gradient(to bottom right, var(--sos-teal) 50%, transparent 50%) !important;
    color: var(--sos-slate-600);
    border-radius: 0;
}
.sos-bk-cal__day--flip {
    background: linear-gradient(to bottom right, var(--sos-teal) 50%, var(--sos-teal-hover) 50%) !important;
    color: #fff !important;
    cursor: default;
    border-radius: 0;
}
.sos-bk-cal__day--emp { cursor: default; }
.sos-bk-cal__day--start { background: var(--sos-teal) !important; color: #fff !important; font-weight: 600; border-radius: var(--sos-radius-sm) 0 0 var(--sos-radius-sm); }
.sos-bk-cal__day--end { background: var(--sos-teal) !important; color: #fff !important; font-weight: 600; border-radius: 0 var(--sos-radius-sm) var(--sos-radius-sm) 0; }
.sos-bk-cal__day--start.sos-bk-cal__day--solo { border-radius: var(--sos-radius-sm); }
.sos-bk-cal__day--mid { background: var(--sos-teal-light) !important; border-radius: 0; }
.sos-bk-cal__day--hover-end { background: var(--sos-teal-hover) !important; color: #fff !important; border-radius: 0 var(--sos-radius-sm) var(--sos-radius-sm) 0; }
.sos-bk-cal__day--hover-mid { background: rgba(12,156,190,0.06) !important; border-radius: 0; }
.sos-bk-cal__hint { font-size: 0.75rem; color: var(--sos-gray-500); text-align: center; margin-top: 8px; }

/* Guest selector */
.sos-booking-card__selectors {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--sos-gap-sm);
    margin-bottom: var(--sos-gap-md);
}
.sos-booking-card__selectors:has(.sos-booking-card__guests:only-child) {
    grid-template-columns: 1fr;
}
.sos-booking-card__guests {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; border: 2px solid var(--sos-sand-200); border-radius: var(--sos-radius-md);
    cursor: pointer; position: relative;
}
.sos-booking-card__guests select {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer; z-index: 2;
}
.sos-booking-card__guests .sos-bk-select-val {
    font-family: var(--sos-font-body); font-size: 0.9rem; font-weight: 500;
    color: var(--sos-slate-800);
}
.sos-booking-card__guests label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sos-gray-500); }
.sos-booking-card__guests label i { margin-right: 4px; }

/* Pricing breakdown */
.sos-booking-card__pricing { margin-bottom: var(--sos-gap-xs); }
.sos-booking-card__nights {
    text-align: center; padding: 8px; background: var(--sos-teal-light);
    border-radius: var(--sos-radius-sm); font-size: 0.8rem; color: var(--sos-gray-600); margin-bottom: var(--sos-gap-xs);
}
.sos-booking-card__nights strong { color: var(--sos-teal); }
.sos-booking-card__breakdown { padding: 0 4px; }
.sos-booking-card__prow {
    display: flex; justify-content: space-between; padding: 6px 0;
    font-size: 0.9rem; color: var(--sos-gray-600);
}
.sos-booking-card__prow--total {
    border-top: 2px solid var(--sos-sand-200); margin-top: 4px; padding-top: 10px;
    font-weight: 700; color: var(--sos-slate-800); font-size: 1rem;
}
.sos-booking-card__prow--loading { text-align: center; color: var(--sos-teal); font-size: 0.85rem; padding: 12px 0; }
@keyframes sosBkPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.sos-bk-dot { animation: sosBkPulse 1.2s ease infinite; }

/* CTA button */
.sos-booking-card__cta { margin-bottom: 0; }
.sos-booking-card__note {
    margin-top: var(--sos-gap-md);
    font-size: 0.78rem;
    color: var(--sos-gray-500);
    text-align: center;
}
.sos-booking-card__note i { color: var(--sos-success); margin-right: 4px; }

/* Gallery lightbox: large image + thumbnail strip */
.sos-gv {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,0.97);
    z-index: 99999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sos-gv--open { display: flex; }

/* Close button — top-right of main image area, not the strip */
.sos-gv__close {
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 42px; height: 42px; background: rgba(0,0,0,0.5);
    color: #fff; border: none; border-radius: 50%; cursor: pointer;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.12s;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.sos-gv__close:hover { background: rgba(0,0,0,0.7); }

/* Two-column layout: main image + strip */
.sos-gv__layout {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Main image area — takes remaining space */
.sos-gv__main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.sos-gv__img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
    transition: opacity 0.2s, transform 0.2s;
}

/* Navigation arrows */
.sos-gv__arr {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 46px; height: 46px; background: rgba(255,255,255,0.12);
    color: #fff; border: none; border-radius: 50%; cursor: pointer;
    font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: background 0.12s;
}
.sos-gv__arr:hover { background: rgba(255,255,255,0.25); }
.sos-gv__prev { left: 18px; }
.sos-gv__next { right: 18px; }

/* Counter overlay on main image */
.sos-gv__counter {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
    background: rgba(0,0,0,0.4); padding: 4px 14px; border-radius: 20px;
}

/* Thumbnail strip — right column */
.sos-gv__strip {
    width: 200px;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    background: #CEEBF2;
}
.sos-gv__strip::-webkit-scrollbar { width: 4px; }
.sos-gv__strip::-webkit-scrollbar-track { background: transparent; }
.sos-gv__strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.sos-gv__thumb {
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: box-shadow 0.2s, border-color 0.2s;
    border: 3px solid transparent;
}
.sos-gv__thumb:hover { border-color: rgba(8,156,191,0.4); }
.sos-gv__thumb--active {
    border-color: #089CBF;
    box-shadow: 0 0 0 2px rgba(8,156,191,0.25);
}
.sos-gv__thumb img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Mobile: stack strip below, make it horizontal */
@media (max-width: 768px) {
    .sos-gv__layout { flex-direction: column; }
    .sos-gv__main { flex: 1; min-height: 0; }
    .sos-gv__img { max-width: 96%; max-height: 70vh; }
    .sos-gv__strip {
        width: 100%; height: 90px; flex-direction: row;
        overflow-x: auto; overflow-y: hidden; padding: 8px;
        gap: 6px;
    }
    .sos-gv__thumb { width: 100px; flex-shrink: 0; }
    .sos-gv__thumb img { aspect-ratio: 4/3; }
    .sos-gv__arr { width: 38px; height: 38px; font-size: 0.9rem; }
    .sos-gv__close { width: 36px; height: 36px; top: 12px; right: 12px; }
    .sos-gv__prev { left: 10px; }
    .sos-gv__next { right: 10px; }
}

/* Book Direct & Save Card */
.sos-bdc {
    margin-top: var(--sos-gap-md);
    border: 2px solid var(--sos-sand-200);
    border-radius: var(--sos-radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sos-shadow-sm);
}
.sos-bdc__header {
    text-align: center;
    padding: 16px 20px 10px;
}
.sos-bdc__header h4 {
    font-family: var(--sos-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.sos-bdc__header p {
    font-size: 0.78rem;
    color: var(--sos-gray-500);
}
.sos-bdc__rows { padding: 0 14px 14px; }
.sos-bdc__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--sos-radius-md);
    margin-bottom: 4px;
    background: var(--sos-sand-50);
    border: 1.5px solid var(--sos-sand-200);
    transition: box-shadow 0.12s;
}
.sos-bdc__row:hover { box-shadow: var(--sos-shadow-sm); }
.sos-bdc__row--direct {
    background: var(--sos-teal-light);
    border-color: var(--sos-teal);
    box-shadow: 0 0 0 1px var(--sos-teal);
}
.sos-bdc__logo {
    width: 28px;
    height: 28px;
    border-radius: var(--sos-radius-sm);
    object-fit: contain;
    flex-shrink: 0;
    background: var(--sos-white);
    border: 1px solid var(--sos-sand-200);
    padding: 2px;
}
.sos-bdc__row--direct .sos-bdc__logo {
    border-color: var(--sos-teal);
    width: 28px;
    height: 28px;
    padding: 2px;
    border-radius: var(--sos-radius-sm);
    background: #fff;
}
.sos-bdc__name {
    flex: 1;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--sos-slate-800);
}
.sos-bdc__row--direct .sos-bdc__name { color: var(--sos-teal); }
.sos-bdc__tag {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sos-teal);
    padding: 3px 8px;
    border-radius: var(--sos-radius-full);
    white-space: nowrap;
}
.sos-bdc__price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sos-slate-800);
    white-space: nowrap;
}
.sos-bdc__row:not(.sos-bdc__row--direct) .sos-bdc__price {
    color: var(--sos-gray-400);
    font-weight: 500;
}
.sos-bdc__from {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--sos-gray-400);
    margin-right: 2px;
}
.sos-bdc__save {
    text-align: center;
    padding: 8px 0 0;
    font-size: 0.82rem;
    color: var(--sos-teal);
    font-weight: 600;
    background: none;
    margin-top: 0;
}
.sos-bdc__save strong {
    color: var(--sos-teal);
    font-size: 1rem;
}
