/*
Theme Name: Robust Camperbouw
Theme URI: https://www.wolterswebdesign.com
Author: Wolters Webdesign
Author URI: https://www.wolterswebdesign.com
Description: Custom WordPress theme for Robust Camperbouw. Built by Wolters Webdesign.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: robust-camperbouw
*/

:root{
  --rcb-blue:#0f172a;
  --rcb-blue-2:#16213a;
  --rcb-beige:#e6dccf;
  --rcb-white:#ffffff;
  --rcb-light:#f7f7f5;
  --rcb-text:#20304f;
  --rcb-muted:#6b7280;
  --rcb-line:rgba(15,23,42,.12);
  --rcb-shadow:0 18px 45px rgba(15,23,42,.10);
  --rcb-radius:22px;
  --rcb-radius-mobile:10px;
  --header-h:82px;
  --container:1200px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--rcb-text);
  background:#fff;
  line-height:1.65;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;height:auto}
button,input,textarea{font:inherit}

.site-wrap{overflow:hidden}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.container-narrow{width:min(860px,calc(100% - 32px));margin:0 auto}

.section{padding:84px 0}
.section-light{background:#fff}
.section-soft{background:var(--rcb-light)}
.section-dark{background:linear-gradient(180deg,var(--rcb-blue) 0%, var(--rcb-blue-2) 100%);color:#fff}

.section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:32px;
}

.section-heading h2,
.section-heading h1,
.page-title{
  font-family:"Bebas Neue", Impact, sans-serif;
  letter-spacing:.03em;
  font-size:clamp(2rem,5vw,4.4rem);
  line-height:1;
  margin:0;
  color:inherit;
}

.section-kicker{
  font-size:.88rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.75;
  margin-bottom:14px;
}

.section-intro{
  max-width:720px;
  font-size:1.06rem;
  color:inherit;
  opacity:.9;
}

.text-center{text-align:center}
.text-muted{color:var(--rcb-muted)}
.mt-0{margin-top:0}
.mb-0{margin-bottom:0}
.mb-16{margin-bottom:16px}
.mb-24{margin-bottom:24px}
.mb-32{margin-bottom:32px}
.mb-48{margin-bottom:48px}

.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.25s ease;
  background:var(--rcb-blue);
  color:#fff;
  font-weight:600;
}

.btn:hover{transform:translateY(-1px)}

.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.8);
  color:#fff;
}

.btn-outline:hover{background:rgba(255,255,255,.12)}

.btn-beige{
  background:var(--rcb-beige);
  color:var(--rcb-blue);
}

.btn-beige:hover{background:#efe7dc}

.btn-dark-outline{
  background:transparent;
  border-color:rgba(15,23,42,.25);
  color:var(--rcb-blue);
}

.btn-dark-outline:hover{
  background:var(--rcb-blue);
  color:#fff;
  border-color:var(--rcb-blue);
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-header.is-solid{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 6px 24px rgba(15,23,42,.08);
}

.site-header.is-hidden{transform:translateY(-100%)}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.brand-mark{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:2.2rem;
  line-height:1;
}

.brand-sub{
  font-size:.75rem;
  letter-spacing:.24em;
  opacity:.82;
}

.site-header.is-transparent .brand,
.site-header.is-transparent .menu-toggle{color:#fff}

.site-header.is-solid .brand,
.site-header.is-solid .menu-toggle{color:var(--rcb-blue)}

.menu-toggle{
  border:none;
  background:transparent;
  padding:10px 0;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  cursor:pointer;
}

.menu-toggle-bars{display:grid;gap:4px}

.menu-toggle-bars span{
  display:block;
  width:22px;
  height:2px;
  background:currentColor;
  border-radius:2px;
}

.drawer{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.55);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:1100;
}

.drawer.is-open{
  opacity:1;
  visibility:visible;
}

.drawer-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(420px,100%);
  background:#fff;
  padding:26px 22px 120px;
  transform:translateX(100%);
  transition:.3s ease;
  overflow-y:auto;
}

.drawer.is-open .drawer-panel{transform:none}

.drawer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.drawer-close{
  border:none;
  background:transparent;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  color:var(--rcb-blue);
}

.drawer-nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.drawer-nav a{
  font-size:clamp(1.1rem,2vw,1.3rem);
  font-weight:700;
  color:var(--rcb-blue);
}

.drawer-nav .sub-menu{
  padding-left:14px;
  margin-top:10px;
  border-left:1px solid var(--rcb-line);
}

.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-start;
  color:#fff;
  padding:calc(var(--header-h) + 32px) 0 52px;
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:820px;
  margin:120px auto 0;
}

.hero-media,
.section-banner-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
}

.hero-content h1{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(3rem,8vw,6.9rem);
  letter-spacing:.03em;
  line-height:.94;
  margin:0 0 14px;
}

.hero-content p{
  font-size:clamp(1rem,2vw,1.3rem);
  margin:0 auto;
  max-width:720px;
  opacity:.95;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.dark-card-zone{
  position:relative;
  padding:76px 0 95px;
  background:linear-gradient(180deg,var(--rcb-blue) 0%, var(--rcb-blue-2) 100%);
  color:#fff;
}

.dotted-line{
  position:absolute;
  left:0;
  right:0;
  top:74px;
  height:160px;
  pointer-events:none;
  opacity:.15;
}

.dotted-line svg{
  width:100%;
  height:100%;
}

.card-grid-label{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:34px;
}

.card-grid-label h2{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(2.3rem,4vw,4rem);
  margin:0 0 10px;
  letter-spacing:.03em;
}

.app-cards{
  position:relative;
  z-index:2;
}

.app-card{
  position:relative;
  display:block;
  min-height:420px;
  overflow:hidden;
  color:#fff;
  box-shadow:var(--rcb-shadow);
  border-radius:0;
  background:#101a31;
}

.app-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.app-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,23,42,.06) 0%, rgba(15,23,42,.70) 100%);
}

.app-card-content{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
}

.app-card-title{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:2rem;
  line-height:1.02;
  letter-spacing:.03em;
  margin:0 0 10px;
}

.app-card-text{
  margin:0;
  opacity:.92;
  max-width:28ch;
}

.app-card:hover img{transform:scale(1.04)}

.sticky-bottom-nav{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:min(92%,430px);
  z-index:1200;
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  box-shadow:0 16px 40px rgba(5,11,23,.32);
  padding:10px 12px;
  display:none;
}

.sticky-bottom-nav ul{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  list-style:none;
  margin:0;
  padding:0;
  gap:8px;
}

.sticky-bottom-nav a{
  display:grid;
  justify-items:center;
  gap:4px;
  color:#fff;
  font-size:.74rem;
  font-weight:600;
  padding:8px 6px;
  border-radius:999px;
}

.sticky-bottom-nav a:hover{background:rgba(255,255,255,.08)}

.sticky-bottom-nav .is-primary{
  background:var(--rcb-beige);
  color:var(--rcb-blue);
}

.icon-circle{
  width:20px;
  height:20px;
  display:block;
}

.feature-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.feature-item{
  padding:26px;
  background:#fff;
  border:1px solid var(--rcb-line);
  border-radius:var(--rcb-radius);
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.feature-item h3{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:1.65rem;
  letter-spacing:.03em;
  margin:0 0 10px;
  color:var(--rcb-blue);
}

.feature-item p{
  margin:0;
  color:var(--rcb-muted);
}

.services-preview{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.service-card,
.product-card{
  background:#fff;
  border:1px solid var(--rcb-line);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.service-card{
  border-radius:24px;
  overflow:hidden;
}

.service-card-media{
  aspect-ratio:16/9;
  overflow:hidden;
}

.service-card-media img,
.product-card img,
.story-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-card-body,
.product-card-body{
  padding:24px;
}

.service-card h3,
.product-card h3{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:2rem;
  line-height:1.02;
  letter-spacing:.03em;
  margin:0 0 10px;
  color:var(--rcb-blue);
}

.product-card h3{font-size:1.9rem}

.service-card p,
.product-card p{
  margin:0 0 18px;
  color:var(--rcb-muted);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.page-top{padding-top:calc(var(--header-h) + 24px)}

.page-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:30px;
  align-items:start;
  margin-bottom:34px;
}

.page-heading h1{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(2.4rem,6vw,4.8rem);
  line-height:.98;
  letter-spacing:.03em;
  margin:0;
  color:var(--rcb-blue);
}

.page-heading p{
  margin:0;
  color:var(--rcb-muted);
  max-width:55ch;
}

.story-layout{display:grid;gap:34px}

.story-image{
  overflow:hidden;
  border-radius:24px;
  box-shadow:var(--rcb-shadow);
}

.story-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.story-text h2,
.story-text h3{
  font-family:"Bebas Neue", Impact, sans-serif;
  letter-spacing:.03em;
  line-height:1;
  margin:0 0 16px;
  color:var(--rcb-blue);
}

.story-text h2{font-size:clamp(2rem,4vw,3.4rem)}
.story-text h3{font-size:clamp(1.6rem,3vw,2.4rem)}

.story-text p{
  margin:0 0 14px;
  color:var(--rcb-muted);
}

.quote-panel{
  padding:34px;
  border-radius:26px;
  background:var(--rcb-light);
}

.quote-panel blockquote{
  margin:0;
  font-family:Georgia, serif;
  font-style:italic;
  font-size:clamp(1.4rem,3vw,2rem);
  line-height:1.3;
  color:var(--rcb-blue);
}

.quote-panel cite{
  display:block;
  margin-top:18px;
  font-style:normal;
  color:var(--rcb-muted);
}

.banner-page{
  position:relative;
  min-height:66svh;
  padding:calc(var(--header-h) + 50px) 0 40px;
  display:flex;
  align-items:flex-end;
  color:#fff;
}

.banner-page .hero-overlay{
  background:linear-gradient(180deg, rgba(8,12,24,.26) 0%, rgba(8,12,24,.50) 40%, rgba(8,12,24,.78) 100%);
}

.banner-page-content{
  position:relative;
  z-index:2;
  max-width:820px;
}

.banner-page-content h1{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:clamp(2.7rem,7vw,6rem);
  line-height:.95;
  margin:0 0 12px;
  letter-spacing:.03em;
}

.banner-page-content p{
  font-size:clamp(1rem,2vw,1.2rem);
  opacity:.95;
  margin:0;
  max-width:55ch;
}

.info-stack{display:grid;gap:18px}

.info-box{
  padding:24px;
  background:var(--rcb-light);
  border-radius:24px;
}

.info-box h3{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:1.8rem;
  line-height:1.02;
  letter-spacing:.03em;
  margin:0 0 8px;
  color:var(--rcb-blue);
}

.info-box p,
.info-box li{
  margin:0;
  color:var(--rcb-muted);
}

.info-box ul{
  padding-left:18px;
  margin:10px 0 0;
}

.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
  gap:28px;
}

.contact-panel{
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--rcb-line);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.contact-panel h2{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:2.6rem;
  line-height:1;
  letter-spacing:.03em;
  margin:0 0 18px;
  color:var(--rcb-blue);
}

.contact-list{
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.contact-list li strong{display:block;color:var(--rcb-blue)}

.form-row{display:grid;gap:14px}
.field{display:grid;gap:8px}

.field input,
.field textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.16);
  padding:14px 16px;
  border-radius:14px;
  background:#fff;
  color:var(--rcb-blue);
}

.field textarea{
  min-height:150px;
  resize:vertical;
}

.notice{
  padding:18px 20px;
  border-radius:18px;
  background:var(--rcb-light);
  color:var(--rcb-blue);
}

.site-footer{
  background:var(--rcb-blue);
  color:#fff;
  padding:34px 0 calc(34px + env(safe-area-inset-bottom));
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-socials{
  display:flex;
  gap:14px;
  align-items:center;
}

.footer-socials a{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  display:grid;
  place-items:center;
  transition:.25s ease;
}

.footer-socials a:hover{background:rgba(255,255,255,.08)}

.footer-socials a svg{
  width:18px;
  height:18px;
  display:block;
}

.footer-meta{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  color:rgba(255,255,255,.82);
  font-size:.96rem;
}

.footer-credit{
  opacity:.8;
  font-size:.88rem;
}

.footer-credit a:hover{text-decoration:underline}

.screen-reader-text{
  position:absolute;
  left:-9999px;
}

.hide-mobile{
  display:block;
}

/* OCCASIONS / PRODUCT GRID */
.products-grid{
  gap:28px;
  align-items:stretch;
}

.product-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--rcb-line);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  border-radius:24px;
  overflow:hidden;
  height:100%;
}

.product-card-media{
  width:100%;
  aspect-ratio: 4 / 5;
  overflow:hidden;
  background:#f3f4f6;
  position:relative;
}

.product-card-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-card-body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  flex:1;
}

.product-card h3{
  font-family:"Bebas Neue", Impact, sans-serif;
  font-size:2rem;
  line-height:1;
  letter-spacing:.03em;
  margin:0;
  color:var(--rcb-blue);
}

.occasion-specs{
  display:flex;
  flex-direction:column;
  gap:2px;
  margin:0;
  color:var(--rcb-muted);
  font-size:.98rem;
  font-weight:500;
  line-height:1.5;
}

.occasion-specs strong{
  font-weight:600;
}

.occasion-price{
  margin:0;
  color:var(--rcb-blue);
  font-size:1.1rem;
  font-weight:700;
}

.product-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  margin-top:auto;
  border:1px solid #0f172a;
  color:#0f172a;
  background:transparent;
  text-decoration:none;
  font-weight:600;
}

.product-cta:hover{
  background:#0f172a;
  color:#ffffff;
}

@media (max-width: 980px){
  .grid-3,
  .feature-strip,
  .services-preview,
  .grid-2,
  .story-row,
  .page-heading,
  .contact-layout,
  .service-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-bottom:42px;
    min-height:86svh;
  }

  .app-card{
    min-height:300px;
    border-radius:var(--rcb-radius-mobile);
  }

  .service-card,
  .product-card,
  .story-image,
  .quote-panel,
  .contact-panel,
  .info-box{
    border-radius:var(--rcb-radius-mobile);
  }

  .page-heading{margin-bottom:26px}
  .section{padding:70px 0}

  .products-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .product-card-media{
    aspect-ratio:4 / 4.5;
  }

  .product-card-body{
    padding:18px 18px 20px;
  }

  .product-card h3{
    font-size:1.85rem;
  }
}

@media (max-width: 767px){
  :root{--header-h:74px}

  body{padding-bottom:92px}

  .sticky-bottom-nav{display:block}

  .hero-content h1{font-size:clamp(2.5rem,15vw,4.2rem)}
  .hero-content p{font-size:1rem}

  .dark-card-zone{padding:60px 0 40px}
  .dotted-line{top:56px;height:120px}
  .card-grid-label{margin-bottom:24px}
  .services-preview,
  .service-grid,
  .feature-strip,
  .story-layout{gap:18px}

  .service-card-body,
  .product-card-body{padding:20px}

  .page-top{padding-top:calc(var(--header-h) + 14px)}

  .footer-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .hide-mobile{
    display:none;
  }
}

.hero-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* AANPASSINGEN HERO */
.hero-content{
  margin:50px auto 0;
}

@media (max-width: 767px){
  .hero-content{
    margin:0 auto;
    transform:translateY(-80px);
  }

  .hero-actions .btn:nth-child(2){
    display:none;
  }
}
@media (max-width: 767px){
  .hero-content{
    margin:0 auto;
    transform:translateY(-50px);
  }
}
/* ===== PREMIUM FORM BUTTON ===== */
.fluentform .ff-btn-submit {
    display: inline-block;
    width: auto;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* hover = luxe effect */
.fluentform .ff-btn-submit:hover {
    background: #1a1a1a;
    color: #ffffff;
}
/* ===== HARD FIX PREMIUM BUTTON ===== */
.fluentform button.ff-btn-submit,
.fluentform input.ff-btn-submit,
.fluentform .ff-btn-submit,
.fluentform .ff_submit_btn_wrapper button {

    display: inline-block !important;
    width: auto !important;

    background: transparent !important;
    color: #1a1a1a !important;

    border: 1px solid #1a1a1a !important;
    border-radius: 999px !important;

    padding: 14px 24px !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;

    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

/* hover */
.fluentform button.ff-btn-submit:hover,
.fluentform input.ff-btn-submit:hover,
.fluentform .ff-btn-submit:hover,
.fluentform .ff_submit_btn_wrapper button:hover {

    background: #1a1a1a !important;
    color: #ffffff !important;
}
.occasion-specs-box{
  background: var(--rcb-light);
  border: 1px solid var(--rcb-line);
  border-radius: 18px;
  padding: 18px 20px;
  width: 100%;
}

.single-product .story-row{
  align-items: start;
}

.single-product .story-text .btn{
  margin-top: 10px;
}

.single-product .grid.grid-3{
  margin-top: 10px;
}

.single-product .section-soft{
  margin-top: 10px;
}
/* ===== SINGLE OCCASION CLEAN ===== */

.single-occasion-page .story-layout{
  gap:32px;
}

.single-occasion-top{
  align-items:start;
}

.single-occasion-gallery{
  width:100%;
  max-width:680px;
  margin:0 auto;
}

.single-occasion-main{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  background:#f3f4f6;
  border-radius:24px;
  box-shadow:var(--rcb-shadow);
}

.single-occasion-main::-webkit-scrollbar{
  display:none;
}

.single-occasion-main-track{
  display:flex;
  width:max-content;
  min-width:100%;
  scroll-snap-type:x mandatory;
}

.single-occasion-slide{
  flex:0 0 100%;
  width:100%;
  max-width:680px;
  aspect-ratio:4 / 3;
  scroll-snap-align:start;
  overflow:hidden;
}

.single-occasion-main-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.single-occasion-no-image{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:var(--rcb-muted);
}

.single-occasion-thumbs-wrap{
  margin-top:16px;
}

.single-occasion-thumbs-viewport{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.single-occasion-thumbs-viewport::-webkit-scrollbar{
  display:none;
}

.single-occasion-thumbs-track{
  display:flex;
  gap:12px;
  width:max-content;
}

.single-occasion-thumb{
  flex:0 0 96px;
  height:96px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  opacity:.82;
}

.single-occasion-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.single-occasion-summary .page-title{
  color:var(--rcb-blue);
}

.occasion-specs-box{
  background:var(--rcb-light);
  border:1px solid var(--rcb-line);
  border-radius:18px;
  padding:18px 20px;
  width:100%;
}

.occasion-specs-html ul,
.occasion-specs-html ol{
  margin:0;
  padding-left:20px;
}

.occasion-specs-html li{
  margin:0 0 8px;
  color:var(--rcb-text);
}

.occasion-specs-html li:last-child{
  margin-bottom:0;
}

.single-occasion-whatsapp,
.single-occasion-back{
  margin-top:10px;
}

.single-occasion-description{
  padding:32px;
  border-radius:24px;
}

.single-occasion-description p:last-child{
  margin-bottom:0;
}

@media (max-width: 980px){
  .single-occasion-main{
    border-radius:var(--rcb-radius-mobile);
  }

  .single-occasion-thumb{
    border-radius:10px;
  }

  .single-occasion-description{
    padding:22px;
    border-radius:var(--rcb-radius-mobile);
  }
}

@media (max-width: 767px){
  .single-occasion-page{
    padding-bottom:140px;
  }

  .single-occasion-gallery{
    max-width:100% !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  .single-occasion-main{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    border-radius:0 !important;
    box-shadow:none !important;
    background:#f3f4f6;
  }

  .single-occasion-slide{
    max-width:100vw;
    aspect-ratio:4 / 5;
  }

  .single-occasion-thumbs-wrap{
    display:none !important;
  }

  .single-occasion-summary{
    padding-top:20px;
  }
}
@media (max-width: 767px){

  /* haal padding van container weg */
  .single-occasion-page .container{
    width:100% !important;
    padding:0 !important;
  }

  /* haal ook padding van story layout */
  .single-occasion-page .story-layout{
    padding:0 !important;
  }

  /* full width image */
  .single-occasion-main{
    width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;

    border-radius:0 !important;
    box-shadow:none !important;
  }

}
.single-occasion-main-image{
  object-fit: cover;
  object-position: center 35%;
}