/*******************************************/
/*************GENERAL CSS START*************/
/*******************************************/

/*root*/
:root {
    --accent: #D6AF36;
    --accent-hover: #C49E27;
    --accent-alt: #7D12B5;
    --accent-alt-hover: #4A0F63;
    --primary: #4A0F63;
    --dark: #280438; 
    --dark-hover: #16011F;
    --light: #F9F7F4;
    --light-alt: #FAF0FF;
    --title-font: 'finalsix', sans-serif;
    --script-font: 'shelby', sans-serif;
    --body-font: 'arial', sans-serif;
    --header-height: 117px;
    --gap-xs: clamp(10px, calc(5.709px + 1.192vw), 20px);
    --gap-s: clamp(20px, calc(11.418px + 2.384vw), 40px);
    --gap-m: clamp(30px, calc(17.128px + 3.576vw), 60px);
    --gap-l: clamp(40px, calc(22.837px + 4.768vw), 80px);
    --gap-xl: clamp(50px, calc(28.546px + 5.959vw), 100px);
    --h1-type: 800 clamp(2.75rem, 1.6786rem + 4.7619vw, 5.25rem) / 1 var(--title-font);
    --h2-type: 600 clamp(2.375rem, 1.4643rem + 4.0476vw, 4.5rem) / 1 var(--title-font);
    --h3-type: 500 clamp(1.875rem, 1.2321rem + 2.8571vw, 3.375rem) / 1 var(--title-font);
    --h4-type: 500 clamp(1.375rem, 1.0536rem + 1.4286vw, 2.125rem) / 1.1 var(--title-font);
    --h5-type: 500 clamp(1.25rem, 1.0893rem + 0.7143vw, 1.625rem) / 1.1 var(--title-font);
    --h6-type: 500 clamp(1.125rem, 1.0714rem + 0.2381vw, 1.25rem) / 1.3 var(--title-font);
    --h6-chapeau-type: 500 clamp(2.75rem, 2.534rem + 0.962vw, 3.375rem) / 1 var(--script-font);
    --body-type: 300 clamp(0.875rem, 0.8214rem + 0.2381vw, 1rem) / 1.4 var(--body-font);
    --small-type: 300 clamp(0.75rem, 0.6964rem + 0.2381vw, 0.875rem) / 1.2 var(--body-font);
    --x-small-type: 300 clamp(0.625rem, 0.5714rem + 0.2381vw, 0.75rem) / 1.2 var(--body-font);
}
/*root*/

html {
    font-size: 16px;
}

html, body {
    max-width: 100%;
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

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

/*scrollbar*/
::-webkit-scrollbar {
  width: 5px !important;
  height: 5px !important;
}
::-webkit-scrollbar-track {
  background: var(--light-alt) !important;
}
::-webkit-scrollbar-thumb {
  background: var(--dark) !important;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark) !important;
}
/*scrollbar*/

hr {
    margin: 0;
    border-color: var(--dark);
    border-top: unset;
}

.diap hr {
    border-color: #fff
}

.light hr {
    border-color: var(--primary);
}

.anchor-target {
    position: relative;
    top: -150px;
    display: block;
    visibility: hidden;
}

/*buttons*/
a {
    color: var(--dark);
    text-decoration: none !important;
}

.wysiwyg-row a {
    color: var(--accent-alt) !important;
    text-decoration: underline !important;
    transition: all .1s ease;
}

.wysiwyg-row a:hover {
    color: var(--accent-alt-hover) !important;
    text-decoration: none !important;
}

a.btn, .wpcf7 .btn, .button, .btn, .cwgstock_button, li.ubermenu-item-view-all a {
    padding: 12px 15px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    letter-spacing: -.5px;
    font-family: var(--title-font), sans-serif !important;
    font-size: 90% !important;
    line-height: 1 !important;
    transition: all .1s ease;
    display: inline-block !important;
    background: var(--accent) !important;
    color: #fff !important;
    appearance: none;
    -webkit-appearance: none;
    text-transform: uppercase !important;
}

a.btn.diap {
    background: #fff !important;
    color: var(--dark) !important;
}

a.btn.diap:hover {
    background: var(--light) !important;
    color: var(--dark) !important;
}

a.btn:hover, .button:hover, .wpcf7 .btn:hover, .cwgstock_button:hover, li.ubermenu-item-view-all a:hover {
    background: var(--accent-hover) !important;
}


a.inline-link {
    color: var(--accent);
    text-decoration: underline !important;
    transition: all .1s ease;
}

a.inline-link:hover {
    color: var(--accent-hover);
    text-decoration: none !important;
}
/*buttons*/

/*headings*/
h1, h1 span {
    font: var(--h1-type);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--primary);
}
h2, h2 span {
    font: var(--h2-type);
    color: var(--primary);
}
h3, h3 span {
    font: var(--h3-type);
    color: var(--primary);
}
h4, h4 span {
    font: var(--h4-type);
    color: var(--accent-alt);
}
h5, h5 span {
    font: var(--h5-type);
    color: var(--accent-alt);
}
h6, h6 span {
    font: var(--h6-type);
    color: var(--primary);
}
h6.chapeau {
    font: var(--h6-chapeau-type);
    color: var(--accent) !important;
}
p, a, ul, li, span, nav, input::placeholder {
    font: var(--body-type);
    color: var(--dark);
}
small {
    font: var(--small-type);
    color: var(--dark);
}
.x-small {
    font: var(--x-small-type);
    color: var(--dark);
}

b {
    font-weight: bold !important;
}
/*headings*/

/*****************************************/
/*************GENERAL CSS END*************/
/*****************************************/



/*******************************************/
/***************HEADER START****************/
/*******************************************/

header {
    padding: 10px 0 15px 0;
    background: none;
    transition: all .2s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: var(--primary);
}

.mega-menu-open,
html.mega-menu-open,
body.mega-menu-open,
body.mega-menu-open #main {
    overflow: hidden !important;
}

#main {
    overflow: hidden;
    padding-top: var(--header-height) !important;
}

.woocommerce-checkout #main {
    overflow: unset;
}

header.scrolled {
    padding: 12px 0;
}

header .notification-bar {
    transform: translateY(-10px);
}

header .notification-bar,
header .top-bar,
header .search-bar {
    transition: all .2s ease;
}

header .top-bar {
    height: 48px;
}

header.scrolled .notification-bar,
header.scrolled .top-bar{
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

header .notification-bar p {
    font-weight: bold;
    width: 100%;
    text-align: center;
    max-width: calc(100% - 60px);
}

header .notification-bar p a {
    font-weight: bold;
    text-decoration: underline !important;
}

header .notification-bar p a:hover {
    text-decoration: none !important;
}

header .notification-bar .close {
    background: url(/wp-content/uploads/close.svg) no-repeat center center;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.header .logo {
    z-index: 2;
    margin: -5px 0;
}

.header .logo a {
    position: relative;
    top: 2px;
}

header .logo svg {
    width: 250px;
    height: auto;
    transition: all .1s ease;
}

header.scrolled .logo svg {
    width: 180px;
}

header .search-bar {
    flex-grow: 1;
    max-width: 700px;
}

header .cat-search-nav {
    flex-grow: 1;
}

header .top-bar-nav ul {
    display: flex;
    gap: clamp(10px, calc(5.709px + 1.192vw), 20px);
}

header .top-bar .c > div {
    white-space: nowrap;
}

header .divider {
    padding: 10px 0 15px 0;
    opacity: .35;
}


/*mobile styles*/
@media(max-width: 1199px) {
    header .logo svg {
        width: 200px;
    }
}

@media(max-width: 991px) {

}

@media(max-width: 767px) {
    header .top-bar .c {
        justify-content: center;
    }
    header.scrolled .search-bar {
        opacity: 0;
        height: 0;
        overflow: hidden;
        padding: 0;
    }
    header .top-bar {
        height: 46px;
    }
    header .search-bar {
        height: 54px;
    }
}

@media(max-width: 575px) {

}
/*mobile styles*/

/*******************************************/
/*****************HEADER END****************/
/*******************************************/



/*********************************************/
/***************FOOTER START******************/
/*********************************************/

footer {
    position: relative;
}

footer:after {
    content: '';
    background: url(/wp-content/uploads/sg-beeldmerk-diap.svg) no-repeat right bottom;
    background-size: 100%;
    width: 50vw;
    max-width: 400px;
    height: 100%;
    opacity: .1;
    display: block;
    position: absolute;
    right: -120px;
    bottom: 50px;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 0 !important;
}

footer a {
    transition: all .2s ease;
}

footer a:not(.no-hover a):hover {
    opacity: .25;
}

footer .logo svg {
    width: 230px;
    height: auto;
}

footer .footer-cols {
    max-width: 75%;
    z-index: 2 !important;
    position: relative !important;
}

footer .footer-cols b {
    color: var(--accent);
}

footer .col-company {
    flex: 30%;
}

.socials-list svg {
    width: 16px;
}

.socials-list svg path {
    fill: var(--dark);
}

footer .socials-list svg path {
    fill: #fff;
}

footer .col-category {
    flex: 50%;
}

footer .col-category img,
footer .col-category .count {
    display: none !important;
}

footer .col-category h2 {
    padding: 0 !important;
    text-transform: inherit;
    font: 300 clamp(0.875rem, 0.8214rem + 0.2381vw, 1rem) / 1.4 var(--body-font) !important;
    color: #fff !important;
}

footer .col-category ul,
footer .col-category li,
.woocommerce-page footer ul.products[class*=columns-] li.product-category.product {
    margin: 0 !important;
}

footer  li:not(.bottom-bar li) {
    padding-bottom: 10px !important;
}

footer .col-category ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 250px;
}

footer .col-category li {
    white-space: nowrap;
    width: fit-content !important;
}

.footer-usp p {
    font-weight: bold;
}

.footer-usp p:before {
    content: '';
    background: url(/wp-content/uploads/check-accent.svg) no-repeat center center;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin-right: 7px;
    vertical-align: text-top;
    top: -1px;
}

.bottom-bar .menu {
    align-items: baseline;
}

.bottom-bar #menu-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, calc(2.855px + 0.596vw), 10px);
}

.bottom-bar p, .bottom-bar a {
    font-size: 90%;
}

.bottom-bar .payment-shipping li,
.bottom-bar .payment-shipping img {
    height: 25px;
    width: auto;
}

.bottom-bar .credits svg {
    width: 52px;
    vertical-align: middle;
    transition: all .1s ease;
    margin-left: 6px;
    margin-top: -3px;
}

.bottom-bar .credits svg path {
    fill: #fff;
}

.bottom-bar .legal {
    align-items: baseline;
}

.bottom-bar .legal li:not(:last-of-type) {
    margin-right: 30px;
}


/*mobile styles*/
@media(max-width: 1199px) {
    footer .footer-cols {
        max-width: 90%;
    }
    footer .col-company {
        flex: 20%;
    }
    footer .logo svg {
        width: 200px;
    }
    footer .col-category {
        flex: 40%;
    }
    footer:after {
        bottom: -50px;
    }
}

@media(max-width: 991px) {
    footer .footer-cols {
        max-width: unset;
    }
    .footer-cols > div {
        flex: 50%;
        margin-bottom: 25px;
    }
    footer .col-category {
        order: 3;
        margin-bottom: 0;
    }
    footer .col-category li {
        width: 50% !important;
    }
}

@media(max-width: 767px) { 
    .bottom-bar .legal {
        margin-bottom: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .bottom-bar .credits {
        justify-content: center;
    }
    footer:after {
        max-width: unset;
        width: 60vw;
        bottom: -30px;
        right: -120px;
    }
}

@media(max-width: 575px) {
    footer .col-category ul {
        flex-wrap: nowrap;
        max-height: unset;
    }
    footer .col-category li {
        white-space: unset;
        padding-right: 0px !important;
        width: 100% !important;
        height: fit-content !important;
    }
    .bottom-bar .menu p,
    .bottom-bar .menu .menu-bottom-bar-container {
        align-self: center;
    }
    .bottom-bar .payment-shipping {
        order: -1;
        margin-bottom: 10px;
    }
    .bottom-bar .legal li:not(:last-of-type) {
        margin-right: 15px;
    }
    .bottom-bar .legal li:first-child {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .bottom-bar .legal li:not(:last-of-type) {
        margin-right: 15px;
    }
    footer:after {
        max-width: unset;
        width: 75vw;
        bottom: -30px;
        right: -150px;
    }
    footer .logo svg {
        width: 180px;
    }
}

@media(max-width: 400px) {
    footer .logo svg {
        width: 125px;
        height: auto;
    }
}
/*mobile styles*/

/*********************************************/
/****************FOOTER END*******************/
/*********************************************/



/*********************************************/
/*****************404 START*******************/
/*********************************************/

.error-404 .c {
    padding: 150px 0;
}

.error-404 .c p {
    padding: 40px 0;
    margin: 0 auto;
    max-width: 440px;
}

.error-404 h1 span {
    font: 600 clamp(150px, 4.0115rem + 23.8379vw, 350px) / .8 var(--title-font);
    display: inline-block;
    margin: 0 -15px;
}

/*mobile styles*/
@media(max-width: 1199px) {

}

@media(max-width: 991px) {

}

@media(max-width: 767px) {
    
}

@media(max-width: 575px) {
    .footer-usp .c.f {
        align-items: flex-start;
    }
}
/*mobile styles*/

/*********************************************/
/******************404 END********************/
/*********************************************/











/*********************************************/
/*************FLEXIBLE CONTENT****************/
/*********************************************/

.opening-hours {
    background: var(--light-alt);
    padding: 30px;
    max-width: 450px;
}

.opening-hours ul {
    padding-top: 10px;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
}

.opening-hours ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.opening-hours ul li.is-today span {
    font-weight: bold;
}

.faq-block {
    max-width: calc(50% - 50px);
}

.faq .faq-item {
    position: relative;
    background: var(--light-alt);
    margin-bottom: 5px;
    transition: all .2s ease;
}

.faq .faq-item:after {
    content: '';
    background: url(/wp-content/uploads/chevron-down.svg) no-repeat center center;
    background-size: 12px 8px;
    width: 12px;
    height: 8px;
    position: absolute;
    right: 12px;
    top: 20px;
    transition: all .1s ease;
}

.faq-title {
    padding: 12px 36px 11px 12px;
    cursor: pointer;
    user-select: none !important;
}

.faq .faq-item.active:after {
    transform: rotate(180deg);
}

.faq .faq-item:hover .faq-title {
    text-decoration: underline;
}

.faq .faq-body {
    padding: 0 12px 11px 12px;
    opacity: .75;
    font-size: 90%;
    display: none;
}

.faq .faq-item.active .faq-body {
    display: block;
}

.zelf-regelen .block {
    flex: 33%;
    border: solid 1px var(--primary);
    padding: 20px;
    
} 

.zelf-regelen .block a {
    text-decoration: underline !important;
}

.zelf-regelen .block a:hover {
    text-decoration: none !important;
}

.zelf-regelen .block a:not(:last-child) {
    padding-bottom: 5px;
}

.zelf-regelen .block a {
    display: block;
}


.block-header {
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: solid 6px var(--accent);
}

.block-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--dark);
    opacity: .6;
}

.block-header h1,
.block-header h6 {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.block-header h6 {
    color: var(--accent);
}


.block-img .wrapper {
    min-height: 300px;
    display: flex;
}

.block-img img {
    object-fit: cover;
}

.block-cta-block .wrapper {
    padding-left: 20px;
    padding-right: 20px;
}

.assortiment-block {
    margin-bottom: 50px;
}

.assortiment-block .left {
    padding: 50px;
}

.assortiment-block h2 {
    text-transform: uppercase;
}

.assortiment-block .right {
    background: url(/wp-content/uploads/sg-assortiment-cta-block-700x450-1.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
}


@media(max-width: 1199px) {

}

@media(max-width: 991px) {
    .faq-block {
        max-width: unset;
    }
    .assortiment-block .left {
        text-align: center;
        padding: 35px 20px;
    }
    .assortiment-block .right {
        flex: unset;
        height: 350px;
    }
}

@media(max-width: 767px) {
    .opening-hours {
        padding: 20px;
        max-width: 275px;
    }
}

@media(max-width: 575px) {
    .assortiment-block .right {
        height: 250px;
    }
}

/*********************************************/
/*************FLEXIBLE CONTENT****************/
/*********************************************/













/*********************************************/
/****************CONTACT FORM*****************/
/*********************************************/

/*cf7*/

.wpcf7 input:not(.name input),
.wpcf7 textarea {
    margin-top: 10px;
}

.wpcf7 input:not(.btn),
.wpcf7 textarea {
    font: 300 clamp(0.875rem, 0.8214rem + 0.2381vw, 1rem) / 1.4 var(--body-font);
    color: var(--dark);
    width: 100%;
    padding: 10px 12px 9px 12px;
    border-radius: 0;
    border: 1px solid var(--dark) !important;
    background: none;
}

.wpcf7 input.btn {
    border: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    transition: all .1s ease;
    color: var(--dark);
    opacity: .25;
}

.wpcf7 input:hover::placeholder,
.wpcf7 input:active::placeholder,
.wpcf7 textarea:hover::placeholder,
.wpcf7 textarea:active::placeholder {
    opacity: 1;
}

.wpcf7 input:focus::placeholder,
.wpcf7 textarea:focus::placeholder {
    opacity: 0;
}

.wpcf7 .wpcf7-not-valid-tip {
    display: inline-block;
    width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    font: 500 clamp(14px, 0.8214rem + 0.2381vw, 16px) / 1.7 var(--body-font);
    color: var(--dark);
    border: 2px solid var(--dark) !important;
    text-align: center;
}

.wpcf7 small a, .wpcf7 small span {
    font: 400 clamp(12px, 0.6964rem + 0.2381vw, 14px) / 1.3 var(--body-font);
    color: var(--dark) !important;
}

/*cf7*/

/*mobile styles*/

@media(max-width: 1199px) {

}

@media(max-width: 991px) {

}

@media(max-width: 767px) {
    .wpcf7 input:not(.btn), .wpcf7 textarea {
        padding: 10px;
    }
}

@media(max-width: 575px) {

}

/*mobile styles*/

/*********************************************/
/****************CONTACT FORM*****************/
/*********************************************/

























/*mobile styles*/
@media(max-width: 1199px) {

}

@media(max-width: 991px) {

}

@media(max-width: 767px) {

}

@media(max-width: 575px) {

}
/*mobile styles*/