/*
    FMBijoux - FinBase frontend
    Basis: finbase.zip
    Designbron: Figma + PDF exports
*/

:root {
    --wit: #FFFFFF;
    --zwart: #000000;
    --roze: #EB9FA9;
    --lichtgrijs: #F5F5F5;
    --middengrijs: #D8D8D8;
    --donkergrijs: #1A1A1A;
    --tekst: #000000;
    --rand: #000000;
    --font-kop: 'Playfair Display', serif;
    --font-basis: 'Inter', sans-serif;
	--inputcolor: #000000;
	--inputbgcolor: transparent;
	--inputborder: #B7B7B7;
    --wrapper: 1555px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 28px;
    --space-lg: 48px;
    --space-xl: 84px;
}

/* Basis */

html,
body {
    color: var(--tekst);
    font-family: var(--font-basis);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--wit);
}

* {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

p {
    line-height: 1.25;
    margin: 0 0 18px 0;
}

strong {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    font-weight: 700;
}

h1,
h2 {
    font-family: var(--font-kop);
    line-height: 1.1;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
    line-height: 1.1;
}

h4 {
    font-size: 28px;
    line-height: 1.1;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

li:before {
    display: none;
}

/* Helpers */

.clear {
    clear: both;
}

.hidden {
    display: none;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.wrapper {
    width: 100%;
    max-width: var(--wrapper);
    margin: 0 auto !important;
    padding: 0;
    position: relative;
}

.wrapper.wide {
    max-width: 1555px;
}

.wrapper.text-content {padding:40px 0;}

.text-content .col {padding:0;}

.section {
    clear: both;
    margin: 0;
    padding: 0;
}

.section:not(.noflex) {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
}

.col {
    display: block;
    float: left;
    height: auto;
    margin: 0;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.group:before,
.group:after {
    content: '';
    display: table;
}

.group:after {
    clear: both;
}

/*.col-12 {
    width: 50%;
}

.col-13 {
    width: 33.3333%;
}

.col-23 {
    width: 66.6666%;
}

.col-14 {
    width: 25%;
}

.col-34 {
    width: 75%;
}*/

/* Buttons */

.btn {
    align-items: center;
    background: var(--wit);
    border: 1px solid var(--zwart);
    color: var(--zwart);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 22px;
    justify-content: space-between;
    letter-spacing: 0.02em;
    line-height: 1;
    min-width: 184px;
    padding: 21px 28px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn:after {
    content: '\f061';
    font-family: 'Font Awesome\ 7 Pro';
    font-weight: 400;
    font-size: 12px;
}

.btn:hover {
    background: var(--zwart);
    color: var(--wit);
}

.btn-dark {
    background: var(--zwart);
    border-color: var(--zwart);
    color: var(--wit);
}

.btn-dark:hover {
    background: var(--roze);
    border-color: var(--roze);
    color: var(--zwart);
}

.btn-white {
    background: var(--wit);
    border-color: var(--wit);
    color: var(--zwart);
}

.btn-outline {
    background: transparent;
    border-color: var(--zwart);
    color: var(--zwart);
}

.btn-light {
    border-color: var(--wit);
    color: var(--wit);
}

.btn-full {
    justify-content: space-between;
    width: 100%;
}

.btn-back:after {
    display: none;
}

.btn-back:before {
    content: '\f060';
    font-family: 'Font Awesome\ 7 Pro';
    font-weight: 400;
    font-size: 12px;
}

/* Header */
/* Desktop */
#topbar {
    position: relative;
    z-index: 1001;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* Mobiel */
@media (max-width: 768px) {

    #topbar {
        transition: transform .25s ease;
    }

    body.scrolled #topbar {
        transform: translateY(-100%);
    }

    #header {
        position: sticky;
        top: 0;
        z-index: 1001;
        background: #fff;
    }
}

#topbar {
    background: var(--roze);
    color: var(--zwart);
    font-size: 12px;
    font-weight: 800;
    height: 38px;
    letter-spacing: 0.12em;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;

    transform: translateY(0);
    transition: transform .35s ease;
}

#header {
    background: var(--wit);
    left: 0;
    position: fixed;
    top: 38px;
    width: 100%;
    z-index: 50;

    transition: top .5s;
}

body.is-scrolled #topbar {
    transform: translateY(-100%);
}

body.is-scrolled #header {
    top: 0;
}

#topbar .wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
}

#topbar p {
    line-height: 38px;
    margin: 0;
}

#topbar .language {
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
}

#navbar {
    background: var(--wit);
    height: 87px;
}

#navbar .wrapper {
    align-items: center;
    display: flex;
    height: 87px;
    justify-content: space-between;
}

#logo {
    display: block;
    width: 156px;
}

#nav-container {
    flex: 1;
    padding: 0 70px;
}

.nav {
    align-items: center;
    display: flex;
    gap: 42px;
    justify-content: center;
}

.nav li a {
    color: var(--zwart);
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 15px 0;
    text-transform: uppercase;
}

.nav li.active a,
.nav li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 24px;
    min-width: 190px;
    justify-content: flex-end;
}

.login-link {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-transform: uppercase;
}

.section-block.cart-page {padding-top:0;}

.cart-link {
    align-items: center;
    display: flex;
    font-size: 20px;
    gap: 5px;
    position: relative;
}

.cart-link span {
    align-items: center;
    background: var(--roze);
    border-radius: 50%;
    display: flex;
    font-size: 10px;
    height: 22px;
    justify-content: center;
    position: absolute;
    right: -16px;
    top: -14px;
    width: 22px;
}

.cart-hr {height:1px;border:0;display:block;background-color:#E5E5E5;width: 100%;margin: 0 0 20px 0;position: relative;box-sizing: border-box;}

#mobile-nav {
    display: none;
}

/* Main */
#main {
    padding-top: 125px;
}

body.is-scrolled #main {
    padding-top: 87px;
}

/* Hero */

.hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 633px;
    position: relative;
}

.hero:before {
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 38%, rgba(255,255,255,0) 68%);
    content: '';
    inset: 0;
    position: absolute;
}

.hero .wrapper {
    min-height: inherit;
}

.hero-content {
    color: var(--wit);
    max-width: 640px;
    padding-top: 244px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--wit);
    font-size: 48px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin: 0;
}

.hero-small {
    min-height: 282px;
}

.hero-small .hero-content {
    padding-top: 92px;
}

/* Sections */

.section-block {
    padding: 76px 0;
}

.collection-block {
    padding-top: 48px;
}

.collection-block h2,
.intro-block h2,
.related-block h2,
.more-discover h2 {
    margin-bottom: 42px;
}

/* Collection */

.collection-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr 1fr;
}

.category-card {
    align-items: flex-end;
    background-color: var(--lichtgrijs);
    background-position: center;
    background-size: cover;
    color: var(--wit);
    display: flex;
    min-height: 359px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.category-card:before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
    content: '';
    inset: 0;
    position: absolute;
}

.category-card span,
.category-card strong,
.category-card i {
    position: relative;
    z-index: 2;
}

.category-card span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.category-card i {
    align-items: center;
    background: var(--wit);
    border-radius: 50%;
    color: var(--zwart);
    display: flex;
    font-size: 11px;
    height: 38px;
    justify-content: center;
    margin-left: auto;
    width: 38px;
	aspect-ratio: 1;
	position: absolute;
    right: 20px;
}

.category-card-large {
    align-items: center;
    grid-row: span 2;
    justify-content: center;
    min-height: 758px;
}

.category-center {
    border: 2px solid var(--wit);
    display: inline-block !important;
    font-size: 32px !important;
    padding: 28px 60px;
    text-align: center;
}

.category-card-black {
    align-items: flex-start;
    background: var(--zwart);
    flex-direction: column;
    justify-content: space-between;
}

.category-card-black:before {
    display: none;
}

.category-card-black strong {
    font-size: 88px;
    line-height: 1;
}

.category-card-black span {
    max-width: 286px;
}

.category-card.small {
    min-height: 250px;
    padding: 28px;
}

.category-card.small span {
    font-size: 28px;
}

.category-card.faded:after {
    background: rgba(255,255,255,0.55);
    content: '';
    inset: 0;
    position: absolute;
}

/* Intro */

.intro-block {
    padding-top: 20px;
}

.intro-grid {
    margin-left: -20px;
    margin-right: -20px;
}

.intro-item h3 {
    border-bottom: 1px solid var(--roze);
    font-family: var(--font-basis);
    font-size: 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
}

.intro-item p {
    font-size: 18px;
    max-width: 470px;
}

.intro-item .btn {
    margin-top: 34px;
}

/* Page heading */

.page-heading {
    align-items: center;
    display: flex;
    gap: 35px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.page-heading h1 {
    color: var(--zwart);
    flex: 0 0 auto;
    font-size: 48px;
    margin: 0;
}

.search-form {
    align-items: center;
    border-bottom: 1px solid var(--zwart);
    display: flex;
    max-width: 370px;
    width: 100%;
}

.search-form input {
    border: 0;
    color: var(--zwart);
    font-family: var(--font-basis);
    font-size: 16px;
    font-style: italic;
    height: 42px;
    outline: none;
    padding: 0 10px;
    width: 100%;
	margin-bottom: 0;
}

.search-form button {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    height: 42px;
    width: 42px;
}

/* Category row */

.category-row {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 32px;
}

/* Category slider */

.category-slider-row {
    display: block !important;
    margin-top: 42px;
    margin-bottom: 42px;
}

.category-slider-row .slick-list {
    margin: 0 -18px;
}

.category-slider-row .slick-track {
    display: flex;
}

.category-slider-row .slick-slide {
    height: auto;
    padding: 28px;
}

.category-slider-row .slick-slide > div {
    height: 100%;
}

.category-slider-row .slick-slide {
    height: auto;
    margin: 0 18px;
}

.category-slider-row .slick-list {
    margin: 0 -18px;
}

.category-slider-row .category-card {
    min-height: 250px;
    height: 100%;
    width: 100%;
}

.category-slider-row .category-card {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    min-height: 250px;
    height: 250px;
}

.category-slider-row .category-card span {
    margin-top: 0;
    margin-right: 20px;
}

.category-slider-row .category-card i {
    margin-left: auto;
    flex: 0 0 38px;
}

.category-slider-row .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--wit);
    box-shadow: 0 8px 22px rgba(0,0,0,.12);

    font-size: 0;
    cursor: pointer;
}

.category-slider-row .slick-prev {
    left: -18px;
}

.category-slider-row .slick-next {
    right: -18px;
}

.category-slider-row .slick-prev:before,
.category-slider-row .slick-next:before {
    font-family: 'Font Awesome 7 Pro';
    font-size: 14px;
    color: var(--zwart);
}

.category-slider-row .slick-prev:before {
    content: '\f060';
}

.category-slider-row .slick-next:before {
    content: '\f061';
}

/* Filters */

.filter-bar {
    align-items: center;
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    margin-bottom: 42px;
}

.filters,
.sort {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-tag {
    background: var(--zwart);
    color: var(--wit);
    display: inline-flex;
    font-size: 13px;
    gap: 8px;
    line-height: 1;
    padding: 8px 10px;
}

.clear-filters {
    color: var(--zwart);
    font-size: 13px;
    text-decoration: underline;
}

.filter-tag {
    align-items: center;
}

.filter-color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 7px;
    border: 1px solid rgba(255,255,255,.45);
    vertical-align: -1px;
}

.color-dot {
    display:block;
    width:18px;
    height:18px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,.15);
    margin:auto;
}

/* Custom select */

.select-style {
    position: relative;
}

.select-style select {
    display: none;
}

.select-selected {
    cursor: pointer;
    padding: 8px 25px 8px 4px;
    position: relative;
}

.select-selected:after {
    content: '\f107';
    font-family: 'Font Awesome\ 7 Pro';
    font-weight: 400;
    position: absolute;
    right: 4px;
    top: 8px;
}

.select-items {
    background: var(--wit);
    border: 1px solid var(--middengrijs);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    left: 0;
    min-width: 180px;
    position: absolute;
    top: 100%;
    z-index: 10;
	
	max-height: 250px;
    overflow: auto;
}

.select-items div {
    cursor: pointer;
    padding: 10px 14px;
}

.select-items div:hover,
.same-as-selected {
    background: var(--lichtgrijs);
}

.select-hide {
    display: none;
}

/* Product grid */

.product-grid {
    display: grid;
    gap: 58px 58px;
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    color: var(--zwart);
    display: block;
    min-width: 0;
    position: relative;
}

.product-card figure {
    align-items: center;
    background: var(--wit);
    display: flex;
    height: 250px;
    justify-content: center;
    margin: 0 0 22px 0;
    overflow: hidden;
    position: relative;
}

.product-card figure img {
    max-height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    max-width: calc(100% - 70px);
}

.product-price {
    float: right;
    font-size: 18px;
    font-weight: 700;
}

.product-card small {
    clear: both;
    color: #999999;
    display: block;
    font-size: 13px;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

.product-arrow {
    bottom: 2px;
    font-size: 12px;
    position: absolute;
    right: 0;
}

.cart-dot {
    align-items: center;
    background: var(--zwart);
    border-radius: 50%;
    color: var(--wit);
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 36px;
}

.customer-cta {
    border-top: 1px solid var(--middengrijs);
    margin-top: 70px;
    padding-top: 48px;
    text-align: center;
}

.customer-cta h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.customer-cta h3 {
    border-bottom: 1px solid var(--roze);
    display: inline-block;
    font-size: 24px;
    margin-bottom: 18px;
    padding: 0 90px 14px 90px;
}

.customer-cta p {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

/* Product detail */

.detail-heading {
    align-items: flex-end;
}

.breadcrumb {
    flex: 1;
    font-size: 16px;
    margin-bottom: 10px;
}

.product-detail-grid {
    margin-left: -20px;
    margin-right: -20px;
}

.gallery-main {
    position: relative;
}

.gallery-main img {
    width: 100%;
}

.gallery-zoom {
    align-items: center;
    background: var(--wit);
    border-radius: 50%;
    display: flex;
    height: 54px;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 24px;
    width: 54px;
}

.gallery-thumbs {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    max-width: 560px;
}

.gallery-thumbs a {
    background: var(--lichtgrijs);
    display: block;
}

.product-info {
    padding-left: 70px;
}

.product-title-row {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-title-row h2 {
    font-family: var(--font-basis);
    font-size: 40px;
    margin-bottom: 4px;
}

.product-title-row h3 {
    color: #777777;
    font-family: var(--font-basis);
    font-size: 20px;
    margin: 0;
}

.product-title-row .price {
    font-size: 34px;
}

.product-info p {
    font-size: 18px;
    max-width: 540px;
}

.color-picker {
    margin: 42px 0 28px 0;
}

.color-picker strong {
    display: block;
    font-size: 18px;
    margin-bottom: 18px;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color {
    border-radius: 50%;
    display: block;
    height: 28px;
    width: 28px;
}

.color.active {
    box-shadow: 0 0 0 3px var(--wit), 0 0 0 5px var(--zwart);
}

.color.yellow { background: #F7CA32; }
.color.orange { background: #F29A2E; }
.color.blue { background: #5C7BFF; }
.color.darkblue { background: #1D3F70; }
.color.green { background: #29964A; }
.color.mint { background: #76E4A6; }

.color-options {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.color-options .color {
    width:28px;
    height:28px;
    border-radius:50%;
    display:block;

    border:2px solid transparent;

    transition:.25s;
}

.color-options .color:hover {
    transform:scale(1.15);
}

.color-options .color.active {
    border:3px solid var(--roze);
    box-shadow:0 0 0 2px #fff;
}

.quantity-row {
    margin-bottom: 30px;
}

.quantity-row label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.quantity-row span {
    display: inline-block;
    font-size: 13px;
    margin-left: 18px;
    vertical-align: middle;
}

.quantity-box {
    border: 1px solid var(--zwart);
    display: inline-flex;
    height: 48px;
    vertical-align: middle;
    width: 400px;
}

.quantity-box button,
.quantity-box input {
    background: var(--wit);
    border: 0;
    color: var(--zwart);
    font-family: var(--font-basis);
    font-size: 18px;
    height: 46px;
    outline: none;
    text-align: center;
}

.quantity-box button {
    cursor: pointer;
    width: 54px;
}

.quantity-box button:disabled {background:#f0f0f0;cursor:auto;}

.quantity-box input {
    flex: 1;
}

.total-box {
    margin-bottom: 16px;
}

.total-box strong {
    display: block;
    margin-bottom: 4px;
}

.total-box p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.total-box small {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.related-block,
.more-discover {
    border-top: 1px solid var(--middengrijs);
    margin-top: 70px;
    padding-top: 42px;
}

.related-grid {
    gap: 45px;
}

.product-card.compact figure {
    height: 220px;
}

/* Cart */

.cart-grid {
    margin-left: -20px;
    margin-right: -20px;
}

.cart-item {
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    display: grid;
    gap: 36px;
    grid-template-columns: 220px 1fr 210px;
    padding: 0 0 32px 0;
    margin-bottom: 32px;
}

.cart-item figure {
    background: var(--lichtgrijs);
    height: 170px;
    margin: 0;
    overflow: hidden;
}

.cart-item figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cart-info h2 {
    font-family: var(--font-basis);
    font-size: 30px;
    margin: 0 0 2px 0;
}

.cart-info p {
    color: #777777;
    font-size: 18px;
}

.cart-info .quantity-box {
    width: 220px;
}

.cart-price {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.cart-price .cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: auto;
}

.cart-price .update,
.cart-price .remove {
    color: #999999;
    margin-bottom: 0;
    display: inline-block;
    cursor: pointer;
}

.cart-price strong {
    font-size: 26px;
}

.cart-price span {
    font-size: 15px;
}

.order-summary-text {
    padding: 42px;
}

.summary-box {
    background: var(--lichtgrijs);
    padding: 42px;
}

.summary-box h2 {
    font-family: var(--font-basis);
    font-size: 28px;
}

.summary-box p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.summary-box hr {
    border: 0;
    border-top: 1px solid var(--middengrijs);
    margin: 28px 0;
}

.summary-box .total {
    align-items: flex-start;
    font-size: 26px;
}

.summary-box small {
    font-size: 15px;
    font-weight: 400;
}

.shipping-note {
    display: block !important;
    font-size: 17px;
    margin-top: 36px;
}

.order-summary-text {
    margin-top: 1.5rem;
	margin-bottom:1.5rem;
    padding: 1rem 1.25rem;
    background: #f8f6f3;
    border: 1px solid #e5e1da;
    border-radius: 6px;
}

.order-summary-text .h1 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--zwart);
}

.order-summary-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-summary-text li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.order-summary-text li:last-child {
    margin-bottom: 0;
}

.order-summary-text li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--groen);
}

/* Footer */

#footer {
    background: var(--zwart);
    color: var(--wit);
}

.footer-main {
    background: var(--zwart);
    padding: 78px 0 92px 0;
    position: relative;
}

.footer-main:after {
    background-image: url(../images/bg-vector.svg);
    background-size: cover;
    bottom: 0;
    content: '';
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.footer-main .wrapper {
    position: relative;
    z-index: 2;
}

#footer .col {
    padding: 0 20px;
}

#footer h4 {
    border-bottom: 1px solid rgba(255,255,255,0.45);
    font-family: var(--font-basis);
    font-size: 24px;
    margin-bottom: 28px;
    padding-bottom: 26px;
}

#footer p,
#footer a {
    color: var(--wit);
    font-size: 15px;
    line-height: 1.25;
}

.socials a {
    display: inline-block;
    font-size: 22px !important;
    margin-right: 14px;
}

.footer-nav-cols {
    display: grid;
    gap: 55px;
    grid-template-columns: repeat(4, 1fr);
}

.footer-nav-cols strong,
.footer-nav-cols a {
    display: block;
    font-size: 16px;
    line-height: 1.6;
}

.footer-slogan {
    margin: 80px 0 0 auto;
    max-width: 245px;
}

.footer-bottom {
    background: var(--roze);
    color: var(--zwart);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 16px 0;
    text-transform: uppercase;
}

.footer-bottom .wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--zwart) !important;
    font-size: 12px !important;
    line-height: 1;
    margin: 0;
}

/* Footer links */
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
}

.footer-links li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
}

.footer-links a {
    color: var(--zwart);
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.44px;
    text-transform: uppercase;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* EIGEN AANVULLINGEN */
/* FORMS */
.form-container .col {padding:0;}
form h5 {font-weight:400;}
fieldset {margin-bottom:25px;border:none;padding:0;}
input, textarea, .datepicker a {border:1px solid var(--inputborder);padding:15px 15px;font-family: var(--font-basis);font-size:14px;width:100%;display:inline-block;color:var(--inputcolor);box-sizing:border-box;-moz-box-sizing:border-box;webkit-box-sizing:border-box;margin-bottom:25px;background-color:var(--inputbgcolor);}
input.margin-bottom {margin-bottom:30px;}

*:focus {
    outline: none;
}

.datepicker {position:relative;}
.datepicker input {width:75%;border-right:0;}
.datepicker a {width:25%;float:right;border-left: 0;padding:13.2px 13.2px 13.2px 13.2px;}
.datepicker a i {color:#171717;}

input[type=radio], input[type=checkbox] {
    display: none;
}
input[type="text"]:disabled {
    background: #f0f0f0;
} 
.radio-container .radio-items {display:inline-block;margin-bottom:5px;min-height:20px;}
span.radiobox, span.checkbox {float:left;margin-right:10px;line-height:18px;margin-bottom:5.5px;position:relative;cursor:pointer;}
span.radiobox:before, span.checkbox:before {
    content: "";
    display: inline-block;
 
    width: 18px;
    height: 18px;
 
    margin-right: 10px;
	float:left;
	background-color: #F1F1F1;
	cursor:pointer;
}

textarea {resize:none;height:120px;}

/*span.radiobox:before {
    border-radius: 50%;
}*/

span.checkbox:before {
    border-radius: 4px;
}

input[type=radio]:checked + span.radiobox:before {
    content: "\f0c8";
	font-family:'Font Awesome\ 7 Pro';
	font-weight:900;
    color: var(--roze);
    font-size: 12px;
    text-align: center;
    line-height: 18px;
}
input[type=checkbox]:checked + span.checkbox:before {
    content: "\f00c";
	font-family:'Font Awesome\ 7 Pro';
    color: var(--roze);
    font-size: 15px;
    text-align: center;
    line-height: 17px;
	font-weight: 900;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.inputfile, label.file {
    cursor: pointer;
}

/* SELECT BOX */
/*the container must be positioned relative:*/
.form-container .select-style {
  position: relative;
  font-family: var(--font-basis);
	font-size: 13px;
	margin-bottom:25px;
}
.form-container .select-style select {
  display: none; /*hide original SELECT element:*/
}
.form-container .select-selected {
  background-color: transparent;
  border:1px solid var(--inputborder);
}
/*style the arrow inside the select element:*/
.form-container .select-selected:after {
  position: absolute;
  content:'\f078';
  font-family:'Font Awesome\ 7 Pro';
  top: 16px;
  right: 23px;
  width: 0;
  height: 0;
}
/*point the arrow upwards when the select box is open (active):*/
.form-container .select-selected.select-arrow-active:after {
  content:'\f077';
}
/*style the items (options), including the selected item:*/
.form-container .select-items div,.form-container .select-selected {
  color:var(--zwart);
  padding: 15px 15px;
  cursor: pointer;
  user-select: none;
}
.form-container .select-items div {
border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  white-space: nowrap;
}
/*style items (options):*/
.form-container .select-items {
  position: absolute;
  background-color: #f1f1f1;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/
.form-container .select-hide {
  display: none;
}
.form-container .select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

span.required {color:#e61d33;}

/* LABELS */
label.error {color:#AD1416;padding:6px 12px;display:block;margin-top: -22px;margin-bottom: 8px;}
label.error:before {content:'\f0d8';font-family:'Font Awesome\ 7 Pro';margin-right:5px;font-weight:900}

/* MESSAGING */
.message, #message {
	display:none;
}
.negative, .positive, .attention {
  margin: 4px 0;
  font-size: 1em;
  padding: 8px 10px 8px 10px;
  
  color: #C24848;  
  background: #FFD6D6 .5em .4em no-repeat;
  border: 1px solid #FFC2C2;
} 
.positive {
  color: #3F9153;  
  background: #D7F7DF .5em .4em no-repeat;
  border: 1px solid #A3F7B8
} 
.attention {
  color: #CF9E00;  
  background: #FAF2D7 .5em .4em no-repeat;
  border: 1px solid #FAE8AF;
}

/* MAP */
#map {height:300px;}

/*UC PAGE*/
.wrapper.uc {
	text-align:center;
	width:inherit;
}
.uc-logo {
	margin-top:50px;
	width:260px;
}
/* EMAIL */
.mailme, .mailme2 {display:none;}
.email:not(input), .email2:not(input) {cursor:pointer;text-decoration:underline;}
.email::after{ content:"@" attr(data-host); }


/* FINWIZE COPY */
.finwize-p {position:relative;margin-bottom: 0;padding: 10px 0;font-size: 12px;}
.finwize-p a span {padding-left:14px;}
.finwize-icon {width:12px;display:inline-block;position:absolute;top:10px;}

/* COOKIE MELDING*/
#cookiemelding {position:fixed;bottom:0;left:50%;transform:translate(-50%,0);width:100%;text-align:center;}

#cookiemelding.fullscreen {width:50%;top:50%;bottom:auto;left:50%;transform:translate(-50%,-50%);z-index:99999;}
#cookiemelding.fullscreen::before {content:'';width:200vw;height:200vh;position:fixed;top:-100vh;left:-100vw;background-color:rgba(255,255,255,0.2);backdrop-filter: blur(14px);z-index:0;}

#cookiemelding h6 {font-size:24px;margin:0 25px 35px 25px;top:25px;position:relative;}

#cookiemelding img {width:150px;position:absolute;top:25px;right:25px;}

#cookiemelding p {display:inline-block;padding:12px 25px;margin:0;font-weight:300;}
#cookiemelding p a.btn {margin-right:0;padding-left:40px;padding-right:40px;margin-bottom:20px;width:80%;}
#cookiemelding p a:not(.btn) {text-decoration:underline;}

#cookiemelding-content {position: relative;background:var(--wit);-webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);}
#cookiemelding-content-text {box-sizing:border-box;}
#cookiemelding-content-text h2 {padding-top:20px;margin-bottom:0;}

/* FIXED MESSAGE */
#fixedmessage {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

#fixedmessage p {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    max-width: min(760px, calc(100vw - 32px));
    margin: 0;
    padding: 15px 46px 15px 22px;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    text-align: left;

    background: #F7F3EE;
    color: #3F3F3F;
    border: 1px solid #E5E1DA;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);

    pointer-events: auto;
}

#fixedmessage p::before {
    content: '\f05a';
    font-family: 'Font Awesome 7 Pro';
    font-weight: 400;
    flex: 0 0 auto;
    font-size: 18px;
}

#fixedmessage p::after {
    content: '\f00d';
    font-family: 'Font Awesome 7 Pro';
    font-weight: 400;

    position: absolute;
    top: 14px;
    right: 16px;

    font-size: 15px;
    cursor: pointer;
    opacity: .55;
}

#fixedmessage p::after:hover {
    opacity: 1;
}

#fixedmessage.positive,
#fixedmessage.negative,
#fixedmessage.attention {
    background: none;
    border: none;
}

#fixedmessage.positive p {
    background: #F1F8F3;
    border-color: #CDE8D4;
    color: #2F6F3E;
}

#fixedmessage.positive p::before {
    content: '\f058';
}

#fixedmessage.negative p {
    background: #FFF1F1;
    border-color: #F0C9C9;
    color: #9B3A3A;
}

#fixedmessage.negative p::before {
    content: '\f06a';
}

#fixedmessage.attention p {
    background: #FBF4E3;
    border-color: #EAD8A8;
    color: #8A6718;
}

#fixedmessage.attention p::before {
    content: '\f071';
}

#fixedmessage p a {
    color: inherit;
    text-decoration: underline;
}

#fixedmessage p a.btn {
    margin-left: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    background: #3F3F3F;
    color: #fff;
}

/* LOADER */

#page-loader{
	display:none;

	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;

	z-index:999999;

	background:rgba(255,255,255,.85);

	backdrop-filter:blur(3px);
	-webkit-backdrop-filter:blur(3px);
}

#page-loader .loader-content{
	position:absolute;
	top:50%;
	left:50%;

	transform:translate(-50%,-50%);

	text-align:center;
}

#page-loader .loader-spinner{
	width:56px;
	height:56px;

	border:3px solid #E7E2DA;
	border-top:3px solid #3C3C3C;

	border-radius:50%;

	animation:loader-spin .8s linear infinite;

	margin:0 auto 20px auto;
}

#page-loader .loader-text{
	font-size:15px;
	color:#444;
	font-weight:500;
	letter-spacing:.5px;
}

@keyframes loader-spin{
	from{
		transform:rotate(0deg);
	}
	to{
		transform:rotate(360deg);
	}
}

.loader-spinner{
	display:none;
}

.loader-text::after{
	content:'';
	animation:dots 1.5s infinite;
}

@keyframes dots{
	0%   { content:''; }
	25%  { content:'.'; }
	50%  { content:'..'; }
	75%  { content:'...'; }
	100% { content:''; }
}

.grecaptcha-badge { visibility: hidden; }


/* NEWS */
.news-page {
    padding-top: 0px;
}

.news-heading {
    margin-bottom: 42px;
}

.news-list {
    display: grid;
    gap: 42px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 70px;
    align-items: center;

    padding: 54px;
    background: #F8F6F3;
}

.news-card:nth-child(even) {
    grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.news-card:nth-child(even) .news-card-image {
    order: -1;
}

.news-label {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--roze);
}

.news-card h2 {
    max-width: 520px;
    margin-bottom: 28px;
    font-size: 54px;
}

.news-text {
    max-width: 520px;
    margin-bottom: 34px;
}

.news-text p {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 18px;
}

.news-card-image {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--lichtgrijs);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EVENTS */
.events-page {
    padding-top: 0px;
}

.events-list {
    display: grid;
    gap: 34px;
}

.event-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: stretch;

    padding: 38px;
    border: 1px solid #E5E1DA;
    background: #fff;
}

.event-date {
    align-items: center;
    background: var(--roze);
    color: var(--zwart);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    text-align: center;
}

.event-date span {
    font-family: var(--font-kop);
    font-size: 52px;
    line-height: 1;
}

.event-date small {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    margin-top: 6px;
	text-transform:uppercase;
}

.event-label {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--roze);
}

.event-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.event-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.45;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 24px 0 28px 0;

    font-size: 14px;
    font-weight: 700;
}

.event-meta i {
    margin-right: 6px;
}

.event-image {
    margin: 0;
    overflow: hidden;
    background: var(--lichtgrijs);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SHOWROOMS */
.showroom-page {
    padding-top: 0px;
}

.showroom-intro {
    max-width: 760px;
    margin-bottom: 48px;
}

.showroom-intro h2 {
    margin-bottom: 18px;
}

.showroom-intro p {
    font-size: 18px;
    line-height: 1.45;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    margin-bottom: 54px;
}

.showroom-card {
    min-height: 430px;
    padding: 48px;
    background: #F8F6F3;
    border: 1px solid #E5E1DA;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showroom-card-dark {
    background: var(--zwart);
    color: var(--wit);
    border-color: var(--zwart);
}

.showroom-label {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--roze);
}

.showroom-card h2 {
    font-size: 52px;
    margin-bottom: 34px;
}

.showroom-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 38px;
}

.showroom-info strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--roze);
}

.showroom-info p {
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

.showroom-hours {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid #E5E1DA;
}

.showroom-hours p {
    margin: 0;
}

.showroom-card-dark .showroom-hours {
    border-top-color: rgba(255,255,255,.25);
}

.showroom-card-dark .btn {
    border-color: var(--wit);
}

.showroom-map {
    height: 460px;
    overflow: hidden;
    background: var(--lichtgrijs);
}

.showroom-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(1);
}

/* PRODUCT CARD CART DOT */
.product-card figure {
    position: relative;
    overflow: hidden;
}

.product-card .cart-dot {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 5;
}

.product-card:hover .cart-dot {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-card .cart-dot i {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.product-card .cart-dot:hover {
    background: var(--roze);
    color: var(--zwart);
}

.product-card .cart-dot:hover i {
    color: var(--zwart);
}

.product-accordion {
    border-top: 1px solid var(--middengrijs);
    border-bottom: 1px solid var(--middengrijs);
    margin: 34px 0;
}

.product-accordion-title {
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--zwart);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: var(--font-basis);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.product-accordion-title i {
    transition: transform .25s ease;
}

.product-accordion.active .product-accordion-title i {
    transform: rotate(180deg);
}

.product-accordion-content {
    display: none;
    padding: 0 0 26px 0;
}

.dpp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 36px;
    margin: 0;
}

.dpp-list div {
    border-bottom: 1px solid #E5E1DA;
    padding-bottom: 14px;
}

.dpp-list dt {
    color: #777;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.dpp-list dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}

@media only screen and (max-width: 700px) {
    .dpp-list {
        grid-template-columns: 1fr;
    }
}
