/* ==========================================================================
   SloepjesHuren - Single Sloep Redesign v2
   Eigen sh-wrap container, geen .container class
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

/* ============================================================
   NUCLEAR RESET - Override ALLE theme CSS binnen #sh-page
   ============================================================ */
#sh-page {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: #f7f5f2;
}

#sh-page *,
#sh-page *::before,
#sh-page *::after {
    box-sizing: border-box;
}

/* Reset theme's "display: inline" op alle links */
#sh-page a {
    display: inline;
    color: inherit;
    text-decoration: none;
}

/* Reset theme's overflow:hidden */
#sh-page,
#sh-page > *,
#sh-page .sh-wrap,
#sh-page .sh-main,
#sh-page .sh-layout,
#sh-page .sh-info,
#sh-page .sh-sidebar {
    overflow: visible !important;
}

/* Reset img */
#sh-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Eigen container - NIET .container */
#sh-page .sh-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

@media screen and (min-width: 1500px) {
    #sh-page .sh-wrap {
        padding: 0;
    }
}

/* ============================================================
   HERO
   ============================================================ */
#sh-page .sh-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

#sh-page .sh-hero__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

#sh-page .sh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sh-page .sh-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.3) 50%, rgba(20,20,20,0.1) 100%);
}

#sh-page .sh-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 48px;
}

#sh-page .sh-hero__back {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.2s;
}

#sh-page .sh-hero__back:hover {
    color: #fe7519 !important;
}

#sh-page .sh-hero__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
    display: block;
}

#sh-page .sh-hero__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

#sh-page .sh-hero__spec {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
}

#sh-page .sh-hero__spec svg {
    display: inline-block;
    flex-shrink: 0;
}

#sh-page .sh-hero__spec--highlight {
    background: rgba(254, 117, 25, 0.25);
    border-color: rgba(254, 117, 25, 0.4);
    color: #ffcfa3;
}

#sh-page .sh-hero__price {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    display: block;
}

#sh-page .sh-hero__price strong {
    color: #fe7519;
    font-size: 28px;
    font-weight: 700;
}

#sh-page .sh-hero__cta {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: #fe7519;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(254, 117, 25, 0.4);
}

#sh-page .sh-hero__cta svg {
    display: inline-block;
}

#sh-page .sh-hero__cta:hover {
    background: #e5680f;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(254, 117, 25, 0.5);
}

/* ============================================================
   GALLERY
   ============================================================ */
#sh-page .sh-gallery {
    padding: 40px 0 0;
    background: #f7f5f2;
}

#sh-page .sh-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
}

#sh-page .sh-gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    display: block !important;
}

#sh-page .sh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#sh-page .sh-gallery__item:hover img {
    transform: scale(1.06);
}

#sh-page .sh-gallery__hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}

#sh-page .sh-gallery__item:hover .sh-gallery__hover {
    opacity: 1;
}

#sh-page .sh-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

#sh-page .sh-gallery__more-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,20,20,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
#sh-page .sh-main {
    padding: 48px 0 80px;
}

#sh-page .sh-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    /* GEEN align-items: start! Sidebar moet stretchen voor sticky */
}

/* ============================================================
   LEFT: INFO CARDS
   ============================================================ */
#sh-page .sh-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
}

#sh-page .sh-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #272727;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0ede8;
}

#sh-page .sh-card__title svg {
    color: #fe7519;
    flex-shrink: 0;
    display: inline-block;
}

/* Pricing card */
#sh-page .sh-pricing-card {
    border: 2px solid #fe7519;
    position: relative;
}

#sh-page .sh-pricing-card::before {
    content: 'Incl. brandstof';
    position: absolute;
    top: -12px;
    right: 24px;
    background: #fe7519;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#sh-page .sh-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0ede8;
    font-family: 'DM Sans', sans-serif;
}

#sh-page .sh-price-row:last-child {
    border-bottom: none;
}

#sh-page .sh-price-row__label {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

#sh-page .sh-price-row__amount {
    font-size: 16px;
    font-weight: 700;
    color: #272727;
}

#sh-page .sh-price-row--borg {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 2px dashed #e0dcd5;
}

#sh-page .sh-price-row--borg .sh-price-row__label {
    font-weight: 700;
    color: #272727;
}

#sh-page .sh-prices__note {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #999;
    margin: 16px 0 0;
    text-align: center;
}

/* Description */
#sh-page .sh-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

#sh-page .sh-description strong {
    color: #272727;
}

#sh-page .sh-description a {
    color: #fe7519 !important;
}

#sh-page .sh-description h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #272727;
    margin: 24px 0 8px;
}

#sh-page .sh-description hr {
    border: none;
    border-top: 1px solid #f0ede8;
    margin: 20px 0;
}

#sh-page .sh-description table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#sh-page .sh-description table td {
    padding: 6px 8px;
    border: 1px solid #e8e4de;
}

/* Huurperiodes */
#sh-page .sh-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#sh-page .sh-times__block {
    background: #faf8f5;
    border-radius: 10px;
    padding: 16px;
}

#sh-page .sh-times__block h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #272727;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#sh-page .sh-times__row {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 4px 0;
    color: #666;
}

#sh-page .sh-times__row strong {
    color: #272727;
}

/* ============================================================
   RIGHT: BOOKING SIDEBAR
   ============================================================ */

#sh-page .sh-sidebar {
    position: relative;
    align-self: stretch; /* Vul volledige grid hoogte */
}

#sh-page .sh-booking-sticky {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06);
    overflow: hidden;
    z-index: 10;
    /* Geen position: sticky meer - JS doet het */
    will-change: transform;
}

#sh-page .sh-booking-header {
    background: #272727;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#sh-page .sh-booking-header h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #fff;
    margin: 0;
}

#sh-page .sh-booking-header__sloep {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #fe7519;
    font-weight: 600;
    background: rgba(254, 117, 25, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

/* Sidebar Gallery (onder booking widget) */
#sh-page .sh-sidebar-gallery {
    margin-top: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
}

#sh-page .sh-sidebar-gallery__title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #272727;
    margin: 0 0 16px;
}

#sh-page .sh-sidebar-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#sh-page .sh-sidebar-gallery__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    display: block !important;
    cursor: pointer;
}

#sh-page .sh-sidebar-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#sh-page .sh-sidebar-gallery__item:hover img {
    transform: scale(1.06);
}

#sh-page .sh-sidebar-gallery__hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}

#sh-page .sh-sidebar-gallery__item:hover .sh-sidebar-gallery__hover {
    opacity: 1;
}

/* ============================================================
   CTA SECTION (original below)
   ============================================================ */
#sh-page .sh-cta {
    background: #272727;
    padding: 60px 0;
}

#sh-page .sh-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#sh-page .sh-cta__text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #fff;
    margin: 0 0 8px;
}

#sh-page .sh-cta__text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

#sh-page .sh-cta__text a {
    color: #fe7519 !important;
}

#sh-page .sh-cta__btn {
    display: inline-block !important;
    background: #fe7519;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(254, 117, 25, 0.35);
}

#sh-page .sh-cta__btn:hover {
    background: #e5680f;
    transform: translateY(-2px);
}


/* ============================================================
   BOOKING WIDGET OVERRIDES
   Duidelijk selecteerbare opties met radio/checkbox indicators
   ============================================================ */

#sh-page .sh-booking-sticky .sh-booking-widget {
    max-width: 100%;
    padding: 24px;
}

#sh-page .sh-booking-sticky,
#sh-page .sh-booking-sticky * {
    font-family: 'DM Sans', sans-serif;
}

/* Labels */
#sh-page .sh-booking-sticky .sh-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 12px;
}

/* ---- Period Options (Radio) ---- */
#sh-page .sh-booking-sticky .sh-period-options {
    gap: 6px;
}

#sh-page .sh-booking-sticky .sh-period-label {
    border: 2px solid #e8e4de;
    border-radius: 10px;
    padding: 12px 16px 12px 46px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

#sh-page .sh-booking-sticky .sh-period-label::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    transition: all 0.2s;
}

#sh-page .sh-booking-sticky .sh-period-label::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s;
}

#sh-page .sh-booking-sticky .sh-period-option input:checked + .sh-period-label {
    border-color: #fe7519;
    background: #fff8f3;
    box-shadow: 0 0 0 1px #fe7519;
}

#sh-page .sh-booking-sticky .sh-period-option input:checked + .sh-period-label::before {
    border-color: #fe7519;
}

#sh-page .sh-booking-sticky .sh-period-option input:checked + .sh-period-label::after {
    background: #fe7519;
}

#sh-page .sh-booking-sticky .sh-period-label:hover {
    border-color: #d0ccc5;
    background: #faf8f5;
}

#sh-page .sh-booking-sticky .sh-period-name {
    font-size: 14px;
    font-weight: 600;
    color: #272727;
}

#sh-page .sh-booking-sticky .sh-period-price {
    font-size: 15px;
    font-weight: 700;
    color: #fe7519;
}

/* ---- Selected Dates ---- */
#sh-page .sh-booking-sticky .sh-selected-dates {
    background: #e8f5e9;
    border: 2px solid #2e7d32;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1b5e20;
}

/* ---- Add-on Options (Checkbox) ---- */
#sh-page .sh-booking-sticky .sh-addons {
    gap: 6px;
}

#sh-page .sh-booking-sticky .sh-addon-label {
    border: 2px solid #e8e4de;
    border-radius: 10px;
    padding: 12px 16px 12px 46px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    display: block !important;
}

#sh-page .sh-booking-sticky .sh-addon-label::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #ccc;
    background: #fff;
    transition: all 0.2s;
}

#sh-page .sh-booking-sticky .sh-addon-label::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 18px;
    width: 12px;
    height: 7px;
    border-left: 2.5px solid transparent;
    border-bottom: 2.5px solid transparent;
    transform: rotate(-45deg);
    transition: all 0.2s;
}

#sh-page .sh-booking-sticky .sh-addon-option input:checked + .sh-addon-label {
    border-color: #fe7519;
    background: #fff8f3;
    box-shadow: 0 0 0 1px #fe7519;
}

#sh-page .sh-booking-sticky .sh-addon-option input:checked + .sh-addon-label::before {
    background: #fe7519;
    border-color: #fe7519;
}

#sh-page .sh-booking-sticky .sh-addon-option input:checked + .sh-addon-label::after {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

#sh-page .sh-booking-sticky .sh-addon-label:hover {
    border-color: #d0ccc5;
    background: #faf8f5;
}

#sh-page .sh-booking-sticky .sh-addon-name {
    font-size: 14px;
    font-weight: 600;
    color: #272727;
}

#sh-page .sh-booking-sticky .sh-addon-desc {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

#sh-page .sh-booking-sticky .sh-addon-price {
    font-weight: 700;
    color: #fe7519;
    font-size: 14px;
}

/* ---- Captain option ---- */
#sh-page .sh-booking-sticky .sh-captain-option .sh-addon-label {
    border-color: #d6e4f0;
    background: #f7fafd;
}

#sh-page .sh-booking-sticky .sh-captain-option .sh-addon-label::before {
    border-color: #8bb5d9;
}

#sh-page .sh-booking-sticky .sh-captain-option input:checked + .sh-addon-label {
    border-color: #2b6ea3;
    background: #eef5fc;
    box-shadow: 0 0 0 1px #2b6ea3;
}

#sh-page .sh-booking-sticky .sh-captain-option input:checked + .sh-addon-label::before {
    background: #2b6ea3;
    border-color: #2b6ea3;
}

/* ---- Price Summary ---- */
#sh-page .sh-booking-sticky .sh-price-summary {
    background: #faf8f5;
    border: 2px solid #e8e4de;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
}

#sh-page .sh-booking-sticky .sh-price-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
    color: #666;
}

#sh-page .sh-booking-sticky .sh-price-total {
    font-size: 18px;
    font-weight: 700;
    color: #272727;
    border-top: 2px solid #272727;
    padding-top: 12px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

#sh-page .sh-booking-sticky .sh-total-amount {
    color: #fe7519;
    font-size: 20px;
}

/* ---- Form Inputs ---- */
#sh-page .sh-booking-sticky input[type="text"],
#sh-page .sh-booking-sticky input[type="email"],
#sh-page .sh-booking-sticky input[type="tel"],
#sh-page .sh-booking-sticky textarea {
    border: 2px solid #e8e4de !important;
    border-radius: 10px !important;
    padding: 11px 14px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    transition: border-color 0.2s;
    background: #fff !important;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

#sh-page .sh-booking-sticky input:focus,
#sh-page .sh-booking-sticky textarea:focus {
    border-color: #fe7519 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(254, 117, 25, 0.12) !important;
}

/* ---- Submit Button ---- */
#sh-page .sh-booking-sticky .sh-submit-btn {
    background: #fe7519 !important;
    border-radius: 10px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 24px !important;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(254, 117, 25, 0.3);
    border: none !important;
    cursor: pointer;
    color: #fff !important;
    width: 100%;
}

#sh-page .sh-booking-sticky .sh-submit-btn:hover {
    background: #e5680f !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(254, 117, 25, 0.4);
}

/* ---- Calendar overrides ---- */
#sh-page .sh-booking-sticky .sh-calendar-nav button {
    background: #272727;
    width: 32px;
    height: 32px;
    font-size: 18px;
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#sh-page .sh-booking-sticky .sh-calendar-nav button:hover {
    background: #fe7519;
}

#sh-page .sh-booking-sticky .sh-cal-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #272727;
}

#sh-page .sh-booking-sticky .sh-cal-day.sh-day-selected {
    background: #2e7d32;
    color: #fff;
}

#sh-page .sh-booking-sticky .sh-cal-day.sh-day-range {
    background: #a5d6a7;
    color: #1b5e20;
}

#sh-page .sh-booking-sticky .sh-cal-day.sh-day-today {
    box-shadow: inset 0 0 0 2px #2e7d32;
}

/* Beschikbare dagen groen */
#sh-page .sh-booking-sticky .sh-cal-day:not(.sh-day-past):not(.sh-day-booked):not(.sh-day-pending):not(.sh-day-selected):not(.sh-day-range):not(.sh-day-no-start) {
    background: #e8f5e9;
    color: #2e7d32;
}

#sh-page .sh-booking-sticky .sh-cal-day:not(.sh-day-past):not(.sh-day-booked):not(.sh-day-pending):not(.sh-day-selected):not(.sh-day-range):not(.sh-day-no-start):hover {
    background: #c8e6c9;
}

#sh-page .sh-booking-sticky .sh-cal-day:hover {
    background: #fff3e8;
}

/* Not a valid start day for selected period */
#sh-page .sh-booking-sticky .sh-cal-day.sh-day-no-start {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

#sh-page .sh-booking-sticky .sh-cal-day.sh-day-no-start:hover {
    background: #f0f0f0;
}

#sh-page .sh-booking-sticky .sh-calendar-legend {
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid #f0ede8;
}

/* Legenda dots */
#sh-page .sh-booking-sticky .sh-legend-dot.sh-available {
    background: #e8f5e9;
    border: 1px solid #66bb6a;
}

/* ---- Messages ---- */
#sh-page .sh-booking-sticky .sh-form-message.sh-msg-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #a5d6a7;
    border-radius: 10px;
    padding: 12px;
}

#sh-page .sh-booking-sticky .sh-form-message.sh-msg-error {
    background: #fce4ec;
    color: #c62828;
    border: 2px solid #ef9a9a;
    border-radius: 10px;
    padding: 12px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 1024px) {
    #sh-page .sh-layout {
        grid-template-columns: 1fr;
    }

    #sh-page .sh-sidebar {
        order: -1; /* Sidebar (reserveren) BOVEN info op mobiel */
    }

    #sh-page .sh-booking-sticky {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
    }

    #sh-page .sh-hero {
        min-height: 400px;
    }

    #sh-page .sh-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #sh-page .sh-gallery__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    #sh-page .sh-cta__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    #sh-page .sh-hero {
        min-height: 350px;
    }

    #sh-page .sh-hero__specs {
        gap: 8px;
    }

    #sh-page .sh-hero__spec {
        font-size: 12px;
        padding: 6px 12px;
    }

    #sh-page .sh-card {
        padding: 24px;
        border-radius: 12px;
    }

    #sh-page .sh-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #sh-page .sh-times {
        grid-template-columns: 1fr;
    }

    #sh-page .sh-cta__text h2 {
        font-size: 24px;
    }

    #sh-page .sh-booking-sticky {
        border-radius: 12px;
    }
}

@media screen and (max-width: 480px) {
    #sh-page .sh-gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    #sh-page .sh-hero__content {
        padding-top: 40px;
        padding-bottom: 32px;
    }
}
