<style>
  :root{
    --bp2-sticky-offset: 0px;
    --bp2-nav-height: 0px;
  }

  /* Page bg */
  #brand-page.brand-page-v2{
    padding-bottom: 28px;
    background:
      radial-gradient(1200px 520px at 20% 0%, rgba(13,134,214,.06), transparent 60%),
      radial-gradient(900px 520px at 90% 30%, rgba(38,20,108,.06), transparent 65%);
    overflow-x:hidden;
  }

  /* HERO */
  #brand-page .breadcrumbs ol{ float: none; }
  #brand-page .bp2-hero{
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 54px 0 26px;
    background: linear-gradient(135deg, #0d86d6 0%, #26146c 100%);
  }
  #brand-page .bp2-hero__bg{
    position:absolute; inset:0;
    background:
      radial-gradient(900px 420px at 15% 20%, rgba(255,255,255,.16), transparent 60%),
      radial-gradient(700px 380px at 80% 10%, rgba(255,255,255,.10), transparent 55%);
    pointer-events:none;
  }
  #brand-page .bp2-hero::after{
    content:"";
    position:absolute;
    top:-40%;
    right:-55%;
    width:100%;
    height:200%;
    background: rgba(255,255,255,.12);
    transform: skewX(16deg);
    pointer-events:none;
  }
  #brand-page .bp2-hero__wm{
    position:absolute; inset:0;
    background-repeat:no-repeat;
    background-size: 520px auto;
    background-position: 115% 55%;
    opacity:.20;
    pointer-events:none;
    z-index:1;
  }
  #brand-page .bp2-hero__inner{
    position: relative;
    z-index: 2;
    display:flex;
    gap:22px;
    align-items:flex-end;
    justify-content:space-between;
  }
  #brand-page .bp2-crumbs,
  #brand-page .bp2-crumbs a{
    color: rgba(255,255,255,.90) !important;
    text-decoration:none !important;
    font-weight:600;
    font-size:13px;
  }
  #brand-page .bp2-title{
    margin: 10px 0 0 !important;
    color:#fff !important;
    font-size: 46px !important;
    font-weight: 900 !important;
    letter-spacing:-.02em;
    line-height: 1.02;
  }
  #brand-page .bp2-teaser{
    margin-top: 12px;
    max-width: 78ch;
    line-height: 1.35;
    color: rgba(255,255,255,.92);
    opacity: .95;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden;
  }
  #brand-page .bp2-teaser *{ color: inherit !important; }
  #brand-page .bp2-hero__meta{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
  #brand-page .bp2-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.20);
    font-weight: 900;
    font-size: 12px;
    letter-spacing:.02em;
    text-decoration:none !important;
    color:#fff !important;
  }
  #brand-page .bp2-pill--link{ background: rgba(0,0,0,.14); border-color: rgba(255,255,255,.16); }

  @media (max-width: 767px){
    #brand-page .bp2-hero{ padding: 34px 0 20px; }
    #brand-page .bp2-title{ font-size: 34px !important; }
    #brand-page p, #brand-page ul { font-size:1.5rem; line-height:1.65; }
    #brand-page .bp2-hero__wm{ background-size: 460px auto; background-position: 120% 55%; }
  }

  /* Intro card */
  #brand-page .bp2-introCard{
    background:#f9f9f9;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    padding: 16px;
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
    margin: 2rem 0;
  }
  #brand-page .bp2-introCard__logo{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    display:grid;
    place-items:center;
    overflow:hidden;
    flex: 0 0 auto;
    background:#fff;
  }
  #brand-page .bp2-introCard__logo img{ width:100%; height:100%; object-fit:contain; padding:14px; display:block; }
  #brand-page .bp2-introCard__content{ flex: 1 1 380px; min-width:0; }

  /* Sticky nav */
  #brand-page .bp2-navWrap{ margin-top: 16px; }
  #brand-page .bp2-navWrap.is-fixed{ height: var(--bp2-nav-height); }
  #brand-page .bp2-navWrap.is-fixed .bp2-navBar{
    position: fixed !important;
    top: var(--bp2-sticky-offset) !important;
    left: 0; right: 0;
    z-index: 999;
  }
  #brand-page .bp2-navBar{
    background: rgba(243,250,255,.90);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
    position: relative;
  }

  /* navRow scroll */
  #brand-page .bp2-navRow{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #brand-page .bp2-navRow::-webkit-scrollbar{ display: none; }

  #brand-page .bp2-navTitle{
    flex: 0 0 auto;
    white-space: nowrap;
    color: rgb(38 20 108);
    font-weight:700;
    transition: opacity .18s ease, transform .18s ease;
    will-change: opacity, transform;
  }
  #brand-page .bp2-navRow.is-scrolled .bp2-navTitle{
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
  }

  #brand-page .bp2-chips{
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: max-content;
  }

  /* fades */
  #brand-page .bp2-navBar::before,
  #brand-page .bp2-navBar::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:28px;
    pointer-events:none;
    opacity:0;
    transition: opacity .18s ease;
    z-index: 5;
  }
  #brand-page .bp2-navBar::before{
    left:0;
    background: linear-gradient(to right, rgba(243,250,255,.92), rgba(243,250,255,0));
  }
  #brand-page .bp2-navBar::after{
    right:0;
    background: linear-gradient(to left, rgba(243,250,255,.92), rgba(243,250,255,0));
  }
  #brand-page .bp2-navBar.has-left-fade::before{ opacity: 1; }
  #brand-page .bp2-navBar.has-right-fade::after{ opacity: 1; }

  /* Hover “border” fix: no border, only inset shadow */
  #brand-page .bp2-chip{
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    border: 0 !important;
    background: #fff;
    background-clip: padding-box;
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.14),
      0 8px 18px rgba(0,0,0,.06);
    color: #0d86d6 !important;
    text-decoration: none !important;
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  #brand-page .bp2-chip:hover,
  #brand-page .bp2-chip:focus,
  #brand-page .bp2-chip:focus-visible{
    outline: none;
    transform: translateY(-1px);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.28),
      0 14px 22px rgba(0,0,0,.10);
  }
  #brand-page .bp2-chip.is-active{
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.45),
      0 16px 26px rgba(0,0,0,.12);
  }
  #brand-page .bp2-chip--accent{
    border: 0 !important;
    background: linear-gradient(135deg, rgba(13,134,214,.12), rgba(38,20,108,.10));
    color: #26146c !important;
    box-shadow:
      inset 0 0 0 1px rgba(13,134,214,.28),
      0 8px 18px rgba(0,0,0,.06);
  }
  #brand-page .bp2-chip--accent:hover,
  #brand-page .bp2-chip--accent:focus,
  #brand-page .bp2-chip--accent:focus-visible{
    box-shadow:
      inset 0 0 0 1px rgba(13,134,214,.45),
      0 14px 22px rgba(0,0,0,.10);
  }
  #brand-page .bp2-chip--accent.is-active{
    box-shadow:
      inset 0 0 0 1px rgba(13,134,214,.55),
      0 16px 26px rgba(0,0,0,.12);
  }

  /* Sections */
  #brand-page .bp2-section{ margin-top: 18px; }
  #brand-page .bp2-section__head{
    margin-bottom: 12px;
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  #brand-page .bp2-h2{ margin:0 !important; font-weight: 1000 !important; color:#26146c; font-size: 20px; }
  #brand-page .bp2-sub{ color: rgba(0,0,0,.60); font-size: 13px; }

  #brand-page .bp2-section__head--auto{ margin-bottom: 2rem; margin-left:2rem; margin-top:4rem; }
  @media (max-width: 767px){
    #brand-page .bp2-section__head--auto{ margin-left:0; margin-top:1.75rem; margin-bottom:1.25rem; }
  }

  /* Reading cards */
  #brand-page .bp2-readingCard{
    background:#fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    padding: 16px;
    position: relative;
    overflow: hidden;
  }
  #brand-page .bp2-readingCard > *{ position: relative; z-index: 1; }
  #brand-page .bp2-readingCard p{ line-height: 1.8; }
  #brand-page .bp2-readingCard img{ max-width: 100%; height: auto; border-radius:2rem; }

  /* Desktop tiles grid (base) */
  #brand-page .bp2-tiles{
    display:grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 768px){
    #brand-page .bp2-tiles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (min-width: 1200px){
    #brand-page .bp2-tiles{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }

  #brand-page .bp2-tiles .category-card{
    width: auto !important;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    overflow:hidden;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    margin: 2rem 1rem 4rem;
  }
  #brand-page .bp2-tiles .category-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0,0,0,.12);
    border-color: rgba(0,0,0,.22);
  }
  #brand-page .bp2-tileMedia img{ width: 100%; display:block; border-radius:0; }
  #brand-page .bp2-btnWide{ width:100%; }

  /* Product overview card styling */
  #brand-page .bp2-collectionGrid{
  	display: flow-root;
	}
  #brand-page .bp2-collectionCard{
    background:#fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    padding: 16px;
  }
  #brand-page .bp2-collectionCard h2{
    margin:8px;
    margin-bottom:1rem;
  }
  #brand-page #brand-collection .filters-wrap{
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 12px;
    margin-top: 10px;
  }
  #brand-page #brand-collection .filter-wrap .filter-title{
  	color: #26146c;
  }

  /* Sidebar filter-wrap spacing + filter-title kleur */
  #brand-page .bp2-collectionCard .sidebar-filters .filter-wrap{ margin-bottom: 20px; }
  #brand-page .bp2-collectionCard .sidebar-filters .filter-title{ color: #0d85d7; }

  /* Prijsslider — identiek aan collection.rain */
  #brand-page .price-filter a{ -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; }
  #brand-page .collection-filter-price{
    height: 5px;
    border: none;
    margin: 0;
    position: relative;
  }
  #brand-page .collection-filter-price .ui-slider-range{
    background-color: #26146c;
    border: none;
    margin: 0;
    position: absolute;
    height: 7px;
    z-index: 9;
  }
  #brand-page .collection-filter-price .ui-slider-handle{
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    top: -4px;
    cursor: col-resize;
    background-color: #e67a08;
    border: 1px solid #e67a08;
    outline: none;
    z-index: 9;
  }
  #brand-page .collection-filter-price .ui-slider-handle:last-child{ margin-left: -10px; }
  #brand-page .collection-filter-price:after{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
    border-radius: 5px;
    background-color: #ddd;
  }
  #brand-page .collection-filter-slider{ max-width: 80%; margin: 20px 0 15px; display: block; vertical-align: middle; }
  #brand-page .price-filter-range{ font-size: 13px; display: block; vertical-align: middle; max-width: 82%; }
  #brand-page .price-filter-range .min,
  #brand-page .price-filter-range .max{ display: inline-block; margin: 0; color: #666; }
  #brand-page .price-filter-range .min span,
  #brand-page .price-filter-range .max span{ font-weight: 600; }
  #brand-page .price-filter-range .max{ float: right; }

  /* WIDEIMAGE breakout + margin */
  #brand-page .container-fluid.brand{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
  }
  #brand-page .bp2-wideimage{ margin-top: 2rem; }
  #brand-page #bp2AutoWideImage{ margin-top: 0; }

  /* Wide image heights */
  #brand-page .container-fluid.brand{ max-height: 350px; }
  #brand-page .container-fluid.brand img{
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
  }
  @media (max-width: 767px){
    #brand-page .container-fluid.brand{ max-height: 150px !important; }
    #brand-page .container-fluid.brand img{ height:150px !important; }
  }
  @media (min-width: 768px) and (max-width: 991px){
    #brand-page .container-fluid.brand{ max-height: 220px !important; }
    #brand-page .container-fluid.brand img{ height:220px !important; }
  }

  /* Filter form separators */
  #brand-page .filter-form-top{ border-bottom: 1px solid #eee; padding-bottom: 15px; }
  #brand-page .filter-form-bottom{ border-top: 1px solid #eee; padding-top: 15px; }

  /* filters-wrap form layout */
  #brand-page .filters-wrap form{ display: inline-block; vertical-align: middle; }

  /* Pager — volledig identiek aan collection.rain */
  #brand-page .filters-wrap .custom-pager ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  #brand-page .filters-wrap .custom-pager ul li{
    display: inline-block;
    line-height: 40px;
    background: #f8f8f8;
    color: #777;
    margin: 0 2px;
    width: 40px;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  #brand-page .filters-wrap .custom-pager ul li:first-child{ margin-left: 0; }
  #brand-page .filters-wrap .custom-pager ul li:last-child{ margin-right: 0; }
  #brand-page .filters-wrap .custom-pager ul li a{ height: 100%; width: 100%; color: #777; display: block; }
  #brand-page .filters-wrap .custom-pager ul .prev i,
  #brand-page .filters-wrap .custom-pager ul .next i{ color: #0d85d7; font-size: 10px; }
  #brand-page .filters-wrap .custom-pager ul .prev a.disabled,
  #brand-page .filters-wrap .custom-pager ul .next a.disabled{ pointer-events: none; cursor: default; display: none; }
  #brand-page .filters-wrap .custom-pager li.number.active a{ color: #fff; }
  #brand-page .filters-wrap .custom-pager li.number.active{ background: #0d85d7; }

  /* Per-page-wrap */
  #brand-page .filters-wrap .per-page-wrap .amount-text,
  #brand-page .filters-wrap .per-page-wrap .show-text{ display: inline-block; }
  #brand-page .filters-wrap .per-page-wrap .amount-text{ padding-right: 15px; color: #666; font-size: 12px; font-weight: 600; }
  #brand-page .filters-wrap .per-page-wrap .show-text{ color: #777; font-weight: 600; padding: 0 15px; border-left: 1px solid #ddd; font-size: 12px; }

  @media (max-width: 425px){
    #brand-page .filters-wrap .custom-pager ul li{ width: 22px; }
  }

  /* USP */
  #brand-page .bp2-uspBlock{ margin-top:0; }
  #brand-page .bp2-uspBlock .bp2-section__head{ display:none !important; }
  #brand-page .bp2-uspBlock .bp2-readingCard{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    background-color: #26146c;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.25;
    padding: 2.5rem 10%;
    overflow-wrap: anywhere;
  }
  @media (min-width: 768px) and (max-width: 991px){
    #brand-page .bp2-uspBlock .bp2-readingCard{
      font-size: 2.1rem;
      line-height: 1.28;
      padding: 2.25rem 8%;
      text-align: center;
      margin: 0 -10%;
    }
  }
  @media (max-width: 767px){
    #brand-page .bp2-uspBlock .bp2-readingCard{
      font-size: 1.7rem;
      line-height: 1.35;
      padding: 1.75rem 1.25rem;
      text-align: left;
      margin: 0 -15px;
    }
  }
  @media (max-width: 360px){
    #brand-page .bp2-uspBlock .bp2-readingCard{
      font-size: 1.55rem;
      padding: 1.5rem 1rem;
    }
  }

  /* AID button */
  #brand-page .bp2-aiden-btn{
    border: none;
    background: #e67800;
    border-radius: 6px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: inherit;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
  }
  #brand-page .bp2-aiden-btn:hover{ filter: brightness(.95); }

  /* Showroom: hide original tile link/button */
  #brand-page .bp2-tileLinkHidden{ display: none !important; }

  /* Tile media position + zoom button */
  #brand-page .bp2-tiles .bp2-tileMedia{ position: relative; }
  #brand-page .bp2-zoomBtn{
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: rgba(0,0,0,.60);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    display: grid;
    place-items: center;
  }
  #brand-page .bp2-zoomBtn:hover{ background: rgba(0,0,0,.75); }
  #brand-page .bp2-zoomBtn svg{
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
  }

  /* Lightbox */
  .bp2-lightbox{
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
  }
  .bp2-lightbox.is-open{ display: block; }
  .bp2-lightbox__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.70);
  }
  .bp2-lightbox__content{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
  }
  .bp2-lightbox__img{
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    background: #fff;
  }
  .bp2-lightbox__close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.92);
    color: #26146c;
    font-size: 26px;
    line-height: 44px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }

  .bp2-lightbox__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.92);
    color: #26146c;
    font-size: 34px;
    line-height: 48px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }
  .bp2-lightbox__prev{ left: 14px; }
  .bp2-lightbox__next{ right: 14px; }
  .bp2-lightbox__nav.is-disabled,
  .bp2-lightbox__nav:disabled{ opacity: .45; cursor: default; }

  .bp2-lightbox__count{
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
  }
  @media (max-width: 767px){
    .bp2-lightbox__nav{
      width: 42px;
      height: 42px;
      font-size: 30px;
      line-height: 42px;
    }
  }
  html.bp2-lightbox-open,
  html.bp2-lightbox-open body{ overflow: hidden !important; }

  /* ===== Tiles slider + correct fades (mobile/tablet only) ===== */
  @media (max-width: 991px){
    /* full-bleed wrapper so fades touch viewport edge */
    #brand-page .bp2-tilesWrap{
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    #brand-page .bp2-tiles{
      display: flex !important;
      flex-wrap: nowrap !important;

      overflow-x: auto;
      overflow-y: hidden;

      gap: 14px;
      padding: 0 0 14px;
      
      margin: 0;
     	margin-left:15px; 

      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
    }
    #brand-page .bp2-tiles::-webkit-scrollbar{ display:none; }

    #brand-page .bp2-tiles .category-card{
      flex: 0 0 auto;
      scroll-snap-align: start;
      margin: 0 !important;

      width: calc(100vw - 30px);
      max-width: 400px;
    }

    @media (min-width: 768px){
      #brand-page .bp2-tiles .category-card{
        width: 360px;
        max-width: none;
      }
    }

    #brand-page .bp2-fbefore,
    #brand-page .bp2-tilesWrap::after{
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      width: 56px;
      pointer-events:none;
      opacity:0;
      transition: opacity .18s ease;
      z-index: 20;
    }
    #brand-page .bp2-tilesWrap::before{
      left:0;
      background: linear-gradient(to right, rgba(243,250,255,1), rgba(243,250,255,0));
    }
    #brand-page .bp2-tilesWrap::after{
      right:0;
      background: linear-gradient(to left, rgba(243,250,255,1), rgba(243,250,255,0));
    }
    #brand-page .bp2-tilesWrap.has-left-fade::before{ opacity: 1; }
    #brand-page .bp2-tilesWrap.has-right-fade::after{ opacity: 1; }
  }
  /* ===== Custom Select component ===== */
  #brand-page .cs-wrap{
    position: relative;
    display: inline-block;
    min-width: 190px;
  }
  #brand-page .cs-native{
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
  #brand-page .cs-trigger{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    color: #0d86d6;
    user-select: none;
    transition: box-shadow .12s ease, border-color .12s ease, transform .12s ease;
    outline: none;
  }
  #brand-page .cs-trigger:hover{
    border-color: rgba(0,0,0,.28);
    box-shadow: 0 14px 22px rgba(0,0,0,.10);
    transform: translateY(-1px);
  }
  #brand-page .cs-trigger:focus-visible{
    border-color: #0d86d6;
    box-shadow: 0 0 0 3px rgba(13,134,214,.22), 0 8px 18px rgba(0,0,0,.06);
  }
  #brand-page .cs-wrap.is-open .cs-trigger{
    border-color: rgba(0,0,0,.28);
    box-shadow: 0 14px 22px rgba(0,0,0,.10);
  }
  #brand-page .cs-arrow{
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .18s ease;
    color: rgba(13,134,214,.60);
  }
  #brand-page .cs-wrap.is-open .cs-arrow{ transform: rotate(180deg); }
  #brand-page .cs-panel{
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    min-width: 100%;
  }
  #brand-page .cs-wrap.is-open .cs-panel{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  #brand-page .cs-list{
    list-style: none;
    padding: 6px;
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.15) transparent;
  }
  #brand-page .cs-list::-webkit-scrollbar{ width: 4px; }
  #brand-page .cs-list::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.15); border-radius: 4px; }
  #brand-page .cs-option{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #26146c;
    transition: background .10s ease;
  }
  #brand-page .cs-option:hover,
  #brand-page .cs-option.is-focused{ background: rgba(13,134,214,.08); }
  #brand-page .cs-option.is-selected{
    background: linear-gradient(135deg, rgba(13,134,214,.12), rgba(38,20,108,.10));
    color: #0d86d6;
  }
  #brand-page .cs-check{
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    color: #0d86d6;
    transition: opacity .12s ease;
  }
  #brand-page .cs-option.is-selected .cs-check{ opacity: 1 !important; }
  /* Accent variant (sort dropdowns) */
  #brand-page .cs-wrap--accent .cs-trigger{
    background: linear-gradient(135deg, rgba(13,134,214,.08), rgba(38,20,108,.06));
    color: #26146c;
    border-color: rgba(13,134,214,.28);
  }
  #brand-page .cs-wrap--accent .cs-trigger:hover{
    border-color: rgba(13,134,214,.45);
    box-shadow: 0 14px 22px rgba(0,0,0,.10);
  }
  #brand-page .cs-wrap--accent .cs-arrow{ color: rgba(38,20,108,.50); }
  #brand-page .cs-wrap--limit{ min-width: 90px; }
.faq-accordion-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.faq-accordion-item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.faq-accordion-item:first-child {
  border-top: none;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 8px;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
  gap: 12px;
}

.faq-accordion-question:hover {
  color: #5b2d8e;
}

.faq-accordion-question.active {
  color: #5b2d8e;
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0e8ff;
  color: #5b2d8e;
  transition: transform 0.3s ease, background-color 0.2s ease;
  font-size: 18px;
  line-height: 1;
}

.faq-accordion-question.active .faq-accordion-icon {
  transform: rotate(45deg);
  background-color: #5b2d8e;
  color: #fff;
}

.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 8px;
}

.faq-accordion-answer.open {
  max-height: 500px;
  padding: 0 8px 16px;
}

.faq-accordion-answer p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}
</style>