/* ===== ROOT CSS VARIABLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #95c11f;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --text-color: #000000;
    --text-light: #666666;
    --bg-color: #ffffff;
    --border-color: #e0e0e0;

    --font-1: 'Poppins', Arial, sans-serif;
    --font-size-base: 17px;
    --line-height-base: 1.8;
    --font-2: 'Bricolage Grotesque', sans-serif;

    --border-radius: 0.375rem;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-1);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--font-2);
}

.h1 {
    font-size: 95px;
    line-height: 1.04;
}

.h2 {
    font-size: 60px;
    line-height: 1.08;
    text-transform: uppercase;
}

.h3 {
    font-size: 1.75rem;
}

.h4 {
    font-size: 1.5rem;
}

.h5 {
    font-size: 1.25rem;
}

.h6 {
    font-size: 1rem;
}
main {
    overflow-x: hidden;
}
/* ===== PARAGRAPH ===== */
p {
    margin-bottom: 1rem;
    line-height: var(--line-height-base);
}

/* ===== LINKS ===== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}
a:focus,
a:active {
    text-decoration: none !important;
    color: inherit !important;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ===== FORM ELEMENTS ===== */
input,
select,
textarea,
button {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='tel'],
input[type='url'],
input[type='date'],
input[type='time'],
input[type='search'],
textarea,
select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
    resize: none;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='date']:focus,
input[type='time']:focus,
input[type='search']:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: var(--light-color);
    color: var(--text-light);
    cursor: not-allowed;
}
label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.18;
    font-family: var(--font-1);
}

/* ===== SELECT ===== */
select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* ===== TEXTAREA ===== */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== BUTTONS ===== */
button,
input[type='button'],
input[type='submit'],
input[type='reset'] {
    border: 1px solid transparent;
    border-radius: 100px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    line-height: 41px;
    text-transform: uppercase;
    background-color: transparent;
}

button:hover,
input[type='button']:hover,
input[type='submit']:hover,
input[type='reset']:hover {
}

button:active,
input[type='button']:active,
input[type='submit']:active,
input[type='reset']:active {
    transform: translateY(0);
}

button:disabled,
input[type='button']:disabled,
input[type='submit']:disabled,
input[type='reset']:disabled {
    background-color: var(--secondary-color);
    cursor: not-allowed;
    opacity: 0.65;
}

/* ===== CHECKBOXES & RADIO BUTTONS ===== */
input[type='checkbox'],
input[type='radio'] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

/* ===== HR ===== */
hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.container {
    max-width: 1335px !important;
    margin: 0 auto;
}

.btn-main {
    display: inline-flex;
    align-items: stretch;
    gap: 1px;
    text-decoration: none !important;
    color: #000000;
    font-family: var(--font-2);
    transition: all 0.3s ease;
}

.btn-main .btn__body {
    padding: 10px 35px;
    border: 1px solid transparent;
    border-radius: 100px;
    background-color: var(--primary-color);
    color: #000000;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    line-height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-main .btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    background-color: var(--primary-color);
    border-radius: 100px;
    color: #000000;
    transition: all 0.3s ease;
}
.btn-main:hover .btn__icon {
    background-color: #1d1d1b;
    color: #ffffff !important;
}
.btn-main .btn__icon .btn__icon-wrapper {
    width: 20px;
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    line-height: 1;
    transition: all 0.3s ease;
    transform: translateY(-2px);
}
.btn-main .btn__icon .btn__icon-wrapper i {
    transition: all 0.3s ease;
    font-size: 24px;
}
.btn-main:hover .btn__icon .btn__icon-wrapper i {
    transform: translateY(-100%);
}

.btn-main--transparent .btn__body {
    background-color: transparent;
    padding: 0px 11px;
}
.btn-main--transparent .btn__icon {
    background-color: transparent !important;
    width: inherit;
}
.btn-main--transparent .btn__icon i {
    color: #000000 !important;
}

/* header- */
.header {
    position: absolute;
    left: 0;
    top: 26px;
    width: 100%;
    height: auto;
    z-index: 111;
    padding: 0px 24px;
}

.header__container {
    max-width: 1324px;
    margin: 0 auto;
    padding: 12px 42px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav .nav__list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.header__nav .nav__item {
    position: relative;
}
.header__nav .nav__item:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
}
.header__nav .nav__item .dropdown__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 12px);
    background-color: #fff;
    width: 395px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.header__nav .nav__link {
    color: #000000;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 40px;
    position: relative;
    text-decoration: none;
    font-family: var(--font-2);
}
.header__nav .nav__link:hover {
    color: #fff;
}
.header__nav .nav__link i {
    font-weight: normal;
    font-size: 20px;
}
.header__nav .nav__link:hover {
    text-decoration: none;
}
.header__nav .nav__link::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '/';
    font-size: 20px;
    font-weight: 200;
    opacity: 0.2;
}
.header__nav .nav__link.active {
    font-weight: 800;
}
.header__nav .nav__list .nav__item:last-child .nav__link::after {
    display: none;
}

.header__btn {
    font-size: 15px;
    line-height: 1;
    padding: 12px 27px;
    border-radius: 50px;
    font-family: var(--font-2);
    font-weight: 700;
    background-color: #fff;
    color: #000000;
    text-transform: uppercase;
}
.header__btn:hover {
    background-color: #e3ff97;
}

.dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 35px;
    line-height: 1;
    border-bottom: 1px solid #00000021;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-2);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.dropdown__item {
    padding: 0px;
}

.dropdown__menu {
    margin: 0;
    padding: 0;
}

.dropdown__link span.icon {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    background: var(--primary-color);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.dropdown__link:hover {
    background: #00000012;
    color: #000;
}

/* .offcanvas */
.offcanvas-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.offcanvas-menu ul li a {
    font-size: 18px;
    padding: 11px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #0001;
}
.offcanvas-menu ul li a span {
    width: 27px;
    height: 27px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu-mobile {
    padding-left: 20px !important;
}

.submenu-mobile li a {
    font-size: 14px !important;
    padding: 7px 0px !important;
}

/* header-css-end */

/* hero-section */
.hero-section {
    height: 100vh;
    padding: 12px 15px;
}
.hero-wrapper {
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        91.03deg,
        rgba(0, 0, 0, 0.93) 8.4%,
        rgba(0, 0, 0, 0) 99.23%
    );
    border-radius: 16px;
    z-index: -1;
}
.hero-content .preTitle {
    font-size: 40px;
    font-family: var(--font-2);
    font-weight: bold;
    line-height: 1.8;
}
.hero-content .preTitle span {
    color: var(--primary-color);
}
.hero-content h1 {
    margin-bottom: 40px;
}
.hero-subtitle {
    font-size: 22px;
    line-height: 43px;
    font-weight: 500;
    margin-bottom: 50px;
}
/* hero-section--end */

/* Offer-section */
.offer-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.933333) 0%,
        #f6ffde 100%
    );
}
.offer-section--title {
    padding: 110px 0px 80px;
}

.swiper-navs {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}
.swiper-navs button {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #000000;
    padding: 0px;
    color: #000000;
    font-weight: normal;
}
.swiper-navs button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.swiper-navs.swiper-navs--filled button {
    border-color: transparent;
    background-color: #fff;
}
.swiper-navs.swiper-navs--filled button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.offer-slider {
    overflow: visible;
}
.offer-slider .swiper-slide {
    max-width: 405px;
    width: 100%;
}
.offer-slider-wrapper {
    margin-bottom: 120px;
}
.offer-card__img {
    border-radius: 8px;
}
.offer-card__img img {
    min-width: 100%;
    max-width: 100%;
    height: 282px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s linear;
}
.offer-card:hover .offer-card__img img {
    transform: scale(1.05);
}
.offer-card__content {
    padding: 18px 0px 0px;
}

h3.offer-card__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-card__subtitle del {
    opacity: 0.5;
    font-weight: normal;
    font-size: 16px;
}

.offer-card__subtitle {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
}
.offer__section-btn {
    padding: 27px 0px;
    border-top: 2px solid #0000002b;
}

.offer__section-btn .btn-main {
    font-size: 20px;
}
/* Offer-section--end */

/* About-section */
.about-section {
    padding: 110px 0px;
}
.about-content h2 {
    margin-bottom: 38px;
}

.about-content {
    max-width: 600px;
}

.about-content p {
    margin-bottom: 38px;
}

.about-img img {
    max-width: 100%;
    border-radius: 10px;
}
.about-img--md img {
    width: 411px;
    max-width: inherit;
    height: 268px;
    object-fit: cover;
    object-position: center;
}
/* About-section--end */

/* review-section */
.review-section {
    padding: 90px 0px 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.review-section--title {
    margin-bottom: 73px;
}

.review-card {
    background: #fff;
    padding: 38px 28px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.review-slider .swiper-slide {
    max-width: 353px;
    height: auto;
}

.review-card__quote {
    margin-bottom: 8px;
    display: block;
}

.review-card__content {
    margin-bottom: 28px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-card__author-name {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    line-height: 29px;
    margin-bottom: 2px;
}

.review-card__author-stars {
    line-height: 1;
    margin-bottom: 0px;
    color: #95c11f;
}

.review-card__author-img {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
}

.review-card__author-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
}

.review-card:hover {
    background: #95c11f;
}

.review-card:hover .review-card__content svg path {
    fill: #000000;
}

.review-card:hover .review-card__author-stars {
    color: #000000;
}
.review-slider.swiper {
    overflow: visible;
}
/* review-section--end */

/* brands-section */
.our-brands-section {
    padding-top: 79px;
}
.brands-slider-wrapper {
    padding-bottom: 60px;
    border-bottom: 1px solid #0000002b;
}
/* brands-section--end */

/* contact-section */
.contact-section {
    padding: 110px 0px;
}
.input-box {
    margin-bottom: 36px;
}
.input-box input {
    border-color: transparent;
    border-radius: 0px;
    padding: 0;
    height: 50px;
    border: none;
    border-bottom: 1px solid #00000021;
}
.input-box input:focus {
    border-color: var(--primary-color);
}
.input-box textarea:focus {
    border-color: var(--primary-color);
}
.input-box textarea {
    border-color: transparent;
    border-radius: 0px;
    padding: 0;
    height: 90px;
    border: none;
    border-bottom: 1px solid #00000021;
}
.contact-thumbnails {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34%;
    border-top-left-radius: 70px;
}
.contact-thumbnails-box {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: inherit;
}
.contact-thumbnails-box::after {
    position: absolute;
    left: -10px;
    top: -10px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    content: '';
    background: var(--primary-color);
    z-index: -1;
    border-radius: inherit;
}
.contact-thumb {
    width: 100%;
    height: 100%;
    border-top-left-radius: 63px;
}
.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-thumbnails img {
    max-width: 100%;
    border-top-left-radius: 63px;
}
.dots-pattern {
    position: absolute;
    left: -27px;
    bottom: -27px;
    z-index: -1;
}
.contact-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}
/* contact-section--end */

/* footer-section */
.footer-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.933333) 0%,
        #f6ffde 100%
    );
    border-top: 1px solid #0000002b;
}
.footer-top {
    padding: 63px 0px 100px;
}
.footer-logo {
    padding-top: 36px;
    border-top: 1px solid #0000002b;
}
.footer-logo-box {
    max-width: 988px;
    width: 100%;
    aspect-ratio: 1 / 0.1215;
}

.footer-logo-imgs {
    width: 100%;
    height: 100%;
}
.logo-text-one {
    width: 43.25%;
    height: 100%;
    position: relative;
}
.logo-text-two {
    width: 54%;
    height: 100%;
    position: relative;
}
.footer-logo-text {
    width: 100%;
    height: 100%;
}

/* .footer-logo-imgs {
    position: absolute;
    width: 988px;
    height: 120px;
    top: 50%;
    left: 50%;
    display: flex;
    overflow: hidden;
    visibility: hidden;
}
.logo-text-one {
    position: relative;
    width: 427px;
    margin: 0;
    float: left;
    display: block;
}
.logo-text-two {
    position: absolute;
    width: 535px;
    display: block;
    overflow: hidden;
    float: right;
} */
.footer-widget h4 {
    font-size: 22px;
    font-weight: 800;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-widget ul li a {
    color: #000000;
    font-size: 18px;
    line-height: 41px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none !important;
}

.footer-widget ul li a span.icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}
.footer-social-links li a {
    transform: translate(0) !important;
}
/* footer-section--end */

.product-details { padding: 150px 0 ;}
.product-details img { width: 100%; border-radius: 10px; }

.brand-card {
    height: 100px;
    width: 100%;          /* belangrijk: vul de hele slide */
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card img {
    width: auto !important;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.brands-slider .swiper-slide {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card {
    margin-bottom: 50px;
}

/* zoekbalk */
.search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding: 4px 6px 4px 18px;
    background-color: #ffffff;
    border-radius: 100px;
    transition: var(--transition);
}

.header__search {
    flex: 0 0 auto;
    width: 200px;
}

.search-form--page {
    width: 340px;
    border: 1px solid var(--border-color);
    padding: 4px 6px 4px 20px;
}

.search-form--page:focus-within {
    border-color: var(--primary-color);
    box-shadow: none;
}

.search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.search-form input.search-form__input {
    width: 100%;
    min-width: 0;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: #000000;
    font-family: var(--font-1);
    font-size: 15px;
    line-height: 34px;
}

.search-form input.search-form__input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.search-form input.search-form__input::placeholder {
    color: #6b6b6b;
    opacity: 1;
}

.search-form button.search-form__btn {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #000000;
    font-size: 18px;
    line-height: 1;
}

.search-form button.search-form__btn:hover {
    background-color: #1d1d1b;
    color: #ffffff;
}

/* zoek-toggle (tablet en mobiel) */
.header__search-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    line-height: 1;
}

.header__search-toggle:hover {
    background-color: #1d1d1b;
    color: #ffffff;
}

.header__search-bar {
    display: none;
    margin-top: 10px;
    max-width: 1324px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.header--search-open .header__search-bar {
    display: block;
}

.header__search-bar .search-form {
    width: 100%;
}

/* zoekresultaten */
.search-section .offer-section--title {
    padding-top: 160px;
}

.search-section__summary {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 12px;
}

.search-section__subtitle {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #0000002b;
}

.search-section__empty {
    max-width: 720px;
    margin-bottom: 50px;
}

.offer-card__cat {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 4px;
}

.search-section .offer-card__img a {
    display: block;
}

.search-section .offer-card__title a {
    color: #000000;
}