/* poppins-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --primary: #1170B3;
    --primary-darker: #29516D;
    --secondary: #E1F9FF;
    --text: #161819;
    --text-bright: #8C8C8C;
    --grading-a: #00BB03;
    --grading-ab: #96BB00;
    --grading-b: #BB9900;
    --grading-c: #BB2900;
    --grading-return: #B35A11;
    --background-darker: #F6F6F6;
    --background-footer: #242627;
    --background-footer-darker: #161819;
    --icon-primary: invert(34%) sepia(91%) saturate(1814%) hue-rotate(178deg) brightness(91%) contrast(92%);
    --border: #f0f0f0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    /* outline: 1px red dotted; */
}
html {scroll-behavior: smooth}
body {
    background-color: white;
    font-family: 'Poppins', sans-serif;
}
p, h1, h2, h3, h4, h5 {
    color: var(--text);
}
hr {border: 1px solid var(--border); margin: 10px 0}
.margin-auto {margin: 0 auto}
.margin-30 {margin: 30px !important;}
.v-margin-60 {margin: 60px 0 !important;}
.v-margin-30 {margin: 30px 0 !important;}
.h-margin-10 {margin: 0 10px !important;}
.h-margin-20 {margin: 0 20px !important;}
.t-margin-10 {margin-top: 10px !important;}
.t-margin-20 {margin-top: 20px !important;}
.t-margin-30 {margin-top: 30px !important;}
.t-margin-60 {margin-top: 60px !important;}
.b-margin-20 {margin-bottom: 20px !important;}
.v-padding-30 {padding: 30px 0 !important;}
.t-padding-20 {padding: 20px 0 0 0 !important;}
.t-padding-30 {padding: 30px 0 0 0 !important;}
.padding-10 {padding: 10px !important;}
.gap-5 {gap: 5px !important;}
.gap-10 {gap: 10px !important;}
.gap-20 {gap: 20px !important;}
.gap-30 {gap: 30px !important;}
.h-container {
    display: flex;
    flex-direction: row;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.grid-2 {
    display: grid;
    grid-template-columns: 550px 1fr;
    min-height: 300px;
    gap: 0;
}
.grid-2.highlighted {background-color: white}
.grid-2 .container:first-child {border-right: 2px solid var(--border)}
.wrap {flex-wrap: wrap !important;}
.flex-1 {flex: 1 !important;}
.just-center {justify-content: center !important;}
.just-left {justify-content: flex-start !important;}
.just-right {justify-content: flex-end !important;}
.just-between {justify-content: space-between !important;}
.align-center {align-items: center !important;}
.align-left {align-items: flex-start !important;}
.align-right {align-items: flex-end !important;}
.flex-row {display: flex;}
.flex-column {display: flex; flex-direction: column}
.back-darker {background-color: var(--background-darker)}
i {
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.i-home {background-image: url("../img/icons/home.svg");}
.i-pdf {background-image: url("../img/icons/file-text.svg")}
.i-package {background-image: url("../img/icons/package.svg")}
.i-search {background-image: url("../img/icons/search.svg")}
.i-hamburger {background-image: url("../img/icons/menu.svg")}
.i-phone {background-image: url("../img/icons/phone.svg")}
.i-share {background-image: url("../img/icons/share-2.svg")}
.i-x {background-image: url("../img/icons/x.svg")}
.i-filter {background-image: url("../img/icons/filter.svg"); filter: var(--icon-primary)}
.i-whatsapp {background-image: url("../img/icons/whatsapp.svg");}
.i-headquarters {background-image: url("../img/icons/headquarters.svg");}
.i-chevron-left {background-image: url("../img/icons/chevron-left.svg"); filter: invert()}
.i-chevron-right {background-image: url("../img/icons/chevron-right.svg"); filter: invert()}


/* ------ */
/* HEADER */
/* ------ */
header {
    width: 100%;
    position: sticky;
    height: 150px;
    border-bottom: 4px var(--primary) solid;
    top: 0;
    background-color: white;
    overflow: hidden;
    transition: top .2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 998;
}
header.shrunk {
    top: -90px;
    overflow: hidden;
    transition: top .2s;
}
header .container {
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
}
header .container .h-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-nav-menu {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.header-nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.nav-wrapper {
    position: relative;
    width: 100%;
    background-color: white;
}
.slider-nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}
.slider-nav::-webkit-scrollbar {
    display: none;
}
.slider-nav::after {
    content: '';
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), #fff);
    pointer-events: none;
}
.nav-a {
    background-color: white;
    color: var(--text);
    text-decoration: none;
    padding: 10px 20px;
    transition: all .1s;
}
.nav-a:hover {
    background-color: var(--primary);
    color: white;
    transition: all .1s;
}
.nav-a.active {
    background-color: var(--primary);
    color: white;
}
input[type="search"] {
    background-color: var(--background-darker);
    padding: 10px 20px;
    font-size: medium;
    font-weight: normal;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
    border: 2px solid transparent;
}
input[type=search]:focus {
    border: 2px solid var(--primary);
    outline: none;
}
.search-submit {
    position: absolute;
    padding: 8px 16px;
    background-color: var(--primary);
    color: white;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s;
}
.search-submit i{filter: invert()}
.search-submit:hover {
    background-color: var(--primary-darker);
    transition: all .3s;
}
.search {width: 40%}
.search form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
}
.logo {
    width: auto;
    height: 50px;
}
.footer-logo-small {
    width: auto;
    height: 20px;
}
.search-button {
    display: none;
    padding: 10px;
    background-color: white;
    transition: all .1s;
    cursor: pointer;
}
.search-button:hover {background-color: var(--primary); transition: all .1s}
.search-button:hover i {filter: invert(); transition: all .1s}
.search-button i {
    width: 20px !important;
    height: 20px !important;
    filter: none;
    transition: all .1s;
}
.menu-button {
    display: none;
    padding: 10px;
    background-color: white;
}
.menu-button i {width: 20px; height: 20px}
#mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 999;
}
#mobile-nav.active {display: flex}
#mobile-nav .container {width: 95%; margin: 0 auto; padding-top: 23px; overflow-y: scroll}
#mobile-nav .close-menu-button {width: 20px; height: 20px; margin-right: 10px}
#mobile-nav .close-menu-button i {width: 20px; height: 20px;}
#mobile-nav .nav-a {border: 1px var(--border) solid}
#mobile-nav .nav-a.highlighted {background-color: var(--primary); color: white; border: 1Px var(--primary) solid; box-shadow: 0 3px 10px rgba(41, 81, 109, 0.2);}
#mobile-nav .flex-column {width: 90%; margin: 0 auto}
#search-box {
    width: 100%;
    height: 70px;
    background-color: white;
    padding: 10px 10px;
    position: fixed;
    z-index: 999;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#search-box .container {
    width: 100%;
}
#search-box.active {
    display: flex;
}
#search-box .search-submit {
    top: 50% !important;
    right: 18px !important;
}

/* ---- */
/* MAIN */
/* ---- */
main {
    max-width: 1400px;
    width: 90%;
    margin: 30px auto 30px auto;
}
.primary-button {
    color: white;
    padding: 7px 17px;
    background-color: var(--primary);
    text-decoration: none;
    font-size: medium;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all .2s;
    cursor: pointer;
}
.primary-button:hover {
    background-color: var(--primary-darker);
    box-shadow: 0 3px 10px rgba(41, 81, 109, 0.2);
    transition: all .2s;
}
.primary-button.highlighted {
    box-shadow: 0 3px 10px rgba(41, 81, 109, 0.2);
}
button.primary-button {font-family: 'Poppins', sans-serif}
.secondary-button {
    color: var(--text);
    text-decoration: none;
    font-size: medium;
    transition: all .2s;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.secondary-button:hover {
    color: var(--primary);
    transition: all .2s;
}
.secondary-button i {
    filter: invert(16%) sepia(99%) saturate(7404%) hue-rotate(4deg) brightness(105%) contrast(115%);
}
.tertiary-button {
    padding: 7px 17px;
    background-color: var(--secondary);
    border: 1px solid var(--primary);
    font-size: medium;
    text-decoration: none;
    color: var(--primary);
    transition: all .2s;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    cursor: pointer;
}
.tertiary-button:hover {
    box-shadow: 0 3px 10px rgba(177, 247, 253, 0.5);
    background-color: #b1f7fd;
    transition: all .2s;
}
.page-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-darker);
    color: black;
    text-decoration: none;
}
.page-button.active {
    color: white;
    background-color: var(--primary);
}
.product-slider {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 20px;
    padding: 35px;
    margin: 0 -35px;
}
.product-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 20px;
}
.product-wrapper-list {
    grid-template-columns: repeat(3, 1fr) !important;
}
.product-box {
    max-width: 335px;
    min-width: 335px;
    width: 335px;
    height: 450px;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .1s;
    flex: 0 1 25%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.product-box .h-container {
    display: flex;
    flex-direction: row;
}
.product-box:hover {
    box-shadow: 0 5px 40px rgba(0,0,0,0.15);
    transition: all .1s;
}
.product-box .container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.product-box-desc {
    display: flex;
    flex-direction: column;
}
.product-box-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-wrapper .product-box {
    width: 100%;
    min-width: auto;
    max-width: none;
}
.card-featured {
    box-shadow: 0 8px 40px rgba(17, 112, 179, 0.18);
    border: var(--primary) 2px solid;
    transition: box-shadow .15s;
}
.card-featured:hover {
    box-shadow: 0 14px 55px rgba(17, 112, 179, 0.3);
}
.product-p-small {
    font-size: small;
}
.product-p-small.faded {color: var(--text-bright)}
.card-wide-badge {
    padding: 3px 10px;
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}
.card-title-wrap {
    min-height: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title-wrap h4 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-title-wrap .grading-pill {
    margin-top: 0;
}
.grading-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin: 6px 0 0 0;
    align-self: flex-start;
}
.grading-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grading-text {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grading-product {
    padding: 2px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.grading-a {background-color: var(--grading-a);}
.grading-ab {background-color: var(--grading-ab)}
.grading-b {background-color: var(--grading-b)}
.grading-c {background-color: var(--grading-c)}
.grading-return {background-color: var(--grading-return)}
.grading-new {background-color: var(--primary)}
.grading-aplus {background-color: #00DD55;}
.grading-refurbished {background-color: #7B61FF;}
.grading-box .grading-p {
    color: white;
    font-size: large;
    font-weight: bold;
}
.grading-text .grading-p {
    color: white;
    font-size: medium;
    font-weight: bold;
}
.product-img {
    max-width: 500px;
    height: auto;
}
.product-img.smaller {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.price {
    font-size: 42px;
    font-weight: bolder;
    line-height: 100%;
    color: var(--primary);
}
.price.smaller {font-size: 32px; line-height: 70%}
.price.even-smaller {font-size: 18px; text-wrap: wrap}
ul.breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 20px 0;
    list-style: none;
}
ul.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: var(--text-bright);
    content: "•\00a0";
}
ul.breadcrumb li .i-home {
    filter: invert(62%) sepia(0%) saturate(0%) brightness(93%) contrast(88%);
}
ul.breadcrumb li a {
    color: var(--text-bright);
    text-decoration: none;
}
ul.breadcrumb li a.highlighted {
    color: var(--primary);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 600px;
    min-width: 200px;
    width: 100%;
    display: inline-block;
}
ul.breadcrumb li a:hover {color: var(--primary)}
.page-a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: var(--text);
    text-decoration: none;
}
.page-a:hover {
    color: var(--primary);
}
.aside {
    width: 300px;
    background-color: var(--background-darker);
    height: auto;
}
.product-info-table {
    font-size: 14px;
}
.product-info-table tr td:nth-child(2) {
    padding-left: 20px;
    float: left;
}
.product-info-table tr td p {color: var(--text) !important;}
h1.highlighted {
    color: var(--primary);
    font-size: 38px;
}
.v3-wrap {
    display: grid;
    grid-template-columns: 550px 1fr;
    min-height: 560px;
    gap: 0;
}
.v3-image-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}
.v3-image-panel img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.v3-info-panel {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: white;
}
.v3-sku {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1170B3;
}
.v3-title {
    font-size: 30px;
    font-weight: 700;
    color: #161819;
    line-height: 1.2;
    margin-top: 4px;
}
.v3-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #f0f0f0;
}
.v3-spec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #f0f0f0;
}
.v3-spec-row:last-child { border-bottom: none; }
.v3-spec-row:first-child .sv {padding: 5px;}
.v3-spec-row .sk {
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #8C8C8C;
    background: #fafafa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v3-spec-row .sv {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #161819;
    justify-content: left;
    display: flex;
}
.v3-price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #f6f6f6;
    gap: 20px;
    flex-wrap: wrap;
}
.v3-price-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 5px;
}
.v3-price-block .price-big {
    font-size: 48px;
    font-weight: 800;
    color: #1170B3;
    line-height: 1;
}
.v3-price-block .price-note {
    font-size: 13px;
    color: #8C8C8C;
    margin-top: 2px;
}
.v3-price-block .price-offer {
    font-size: 24px;
    font-weight: 700;
    color: #1170B3;
}
.v3-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.v3-btn-primary {
    background-color: #1170B3;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color .2s;
}
.v3-btn-primary:hover { background-color: #29516D; }
.v3-btn-light {
    background-color: white;
    color: #1170B3;
    border: 1.5px solid #1170B3;
    padding: 11px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all .2s;
}
.v3-btn-light:hover { background-color: #E1F9FF; }
.v3-share-row {
    display: flex;
    gap: 20px;
}
.v3-share-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #8C8C8C;
    text-decoration: none;
    transition: all .2s;
}
.v3-share-link:hover { color: #1170B3; transition: all .2s}
.v3-share-link:hover i { filter: var(--icon-primary) }
.v3-description { margin-top: 32px; }
.sort {background-color: var(--background-darker);}
.sort .nav-a {background-color: transparent}
.sort .nav-a:hover {background-color: var(--primary)}
.sort .nav-a.active {background-color: var(--primary)}
.sort .tertiary-button {display: none}
.sort-button {width: 100%; display: none}
.filter-popup {
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px;
    display: none;
    overflow-y: scroll;
}
.filter-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
}
.filter-popup.active {
    display: flex;
    flex-direction: column;
}
.filter-popup .close-filter-button i {
    width: 25px;
    height: 25px;
}
.text-page {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ accordion */
.text-page details {
    border-bottom: 1px solid var(--border);
}
.text-page details:first-of-type {
    border-top: 1px solid var(--border);
}
.text-page summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    transition: color .2s;
}
.text-page summary::-webkit-details-marker { display: none; }
.text-page summary::after {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-bright);
    border-bottom: 2px solid var(--text-bright);
    transform: rotate(45deg);
    transition: transform .2s, border-color .2s;
    margin-bottom: 3px;
}
.text-page summary:hover { color: var(--primary); }
.text-page summary:hover::after { border-color: var(--primary); }
.text-page details[open] > summary {
    color: var(--primary);
}
.text-page details[open] > summary::after {
    transform: rotate(-135deg);
    border-color: var(--primary);
    margin-bottom: -3px;
}
.text-page details .content {
    padding: 0 4px 20px 4px;
}
.text-page details .content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-bright);
    margin: 0;
}
.shareButton {cursor: pointer}
.share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid var(--border);
    max-width: 400px;
    width: 95%;
    min-height: 100px;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    display: none;
    animation: fade-in .2s;
}
.share-popup.active {display: flex}
.share-popup .share-link {
    border: 1px solid var(--border);
    padding: 10px 15px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
.share-popup #share-exit i {
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.share-popup .primary-button {
    cursor: pointer;
}
.team-img {
    width: auto;
    height: 300px;
    object-fit: contain;
}
.i-at { background-image: url("../img/icons/at-sign.svg"); }

.ct-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 28px;
}
.ct-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-right: 1px solid var(--border);
}
.ct-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ct-block-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.ct-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ct-block p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}
.ct-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ct-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: var(--icon-primary);
}
.ct-row p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}
.ct-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border);
}
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ct-form h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.ct-form textarea.filter-input {
    resize: vertical;
    min-height: 140px;
    font-family: 'Poppins', sans-serif;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
    margin-top: 28px;
}
.team-card {
    background: white;
    display: flex;
    flex-direction: column;
}
.team-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--background-darker);
}
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .3s;
}
.team-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 3px solid var(--primary);
}
.team-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}
.team-card-role {
    font-size: 12px;
    color: var(--text-bright);
    margin-bottom: 10px;
}
.team-card-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    line-height: 1.8;
}
.team-card-contact:hover { color: var(--primary); }
.team-card-contact .ct-icon { flex-shrink: 0; }
.ph-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-bright);
    margin: 48px 0 6px;
}
.ph-title { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.ph-desc {
    font-size: 13px;
    color: var(--text-bright);
    margin-bottom: 20px;
    line-height: 1.6;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 16px;
}

/* ── A: SPLIT ── photo left, info right */
.ph-a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
    text-decoration: none;
    position: relative;
}
.ph-a-photo {
    background: var(--background-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    height: 500px;
}
.ph-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ph-a-info {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.ph-a-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.ph-a-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.ph-a-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-bright);
}
.countdown {
    display: flex;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    padding: 15px;
}
#hours, #minutes, #seconds {font-weight: 600; font-size: 48px; line-height: 100%}
.countdown p {color: white}

/* Carousel styles */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    display: none;
}

.carousel-item.active {
    display: grid;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev, .carousel-next {
    pointer-events: all;
    background: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary-darker);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background: var(--primary-darker);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    width: 30px;
}

@media screen and (max-width: 1060px) {
    #hours, #minutes, #seconds { font-size: 36px; }
}
@media screen and (max-width: 1250px) {
    .countdown {
        position: static;
        display: inline-flex;
        align-self: flex-start;
    }
    #hours, #minutes, #seconds { font-size: 28px; }
}
@media screen and (max-width: 560px) {
    #hours, #minutes, #seconds { font-size: 22px; }
    .countdown { padding: 10px; }
    .countdown .h-container { gap: 12px !important; }
}
/* COOKIE BOX */
.cookie-box {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 400px;
    background-color: white;
    padding: 30px;
    z-index: 998;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0px 25px 70px -2px rgba(0, 0, 0, 0.15);
}
.cookie-settings-box h2::after {width: 0}
.cookie-box.active {
    display: block;
}

.cookie-settings.active {
    display: block;
}

.cookie-settings {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.cookie-settings-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 98%;
    background-color: white;
    padding: 50px;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0px 25px 70px -2px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.cookie-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.modal-footer {display: flex; gap: 20px; justify-content: flex-end}
.cookie-buttons button,
.modal-footer button {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
}

.cookie-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.option-info {
    max-width: 80%;
}

.option-name {
    display: block;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--text-bright);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

input:disabled+.slider {
    background-color: var(--primary-darker);
    opacity: 0.6;
    cursor: not-allowed;
}

/* ------ */
/* FOOTER */
/* ------ */

footer p, footer h1, footer h2, footer h3 {
    color: white;
}
.footer-top {
    background-color: var(--background-footer);
    width: 100%;
}
.footer-top .footer-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 0;
    width: 90%;
}
.footer-top .footer-top-content .h-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-bot {
    background-color: var(--background-footer-darker);
    width: 100%;
}
.footer-bot .footer-bot-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    width: 90%;
}
.footer-box {
    display: flex;
    flex-direction: column;
}
.contact-p {
    display: flex;
    flex-direction: row;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
}
.contact-p:hover {color: var(--primary); transition: all .2s}
.contact-p:hover img {filter: var(--icon-primary)}
.contact-icon {
    filter: invert();
    width: 20px;
    height: 20px;
}
.footer-a {
    color: white;
    text-decoration: none;
    transition: all .1s;
}
.footer-a:hover {
    color: var(--primary);
    transition: all .1s;
}
.footer-a.smaller {font-size: 12px; color: var(--text-bright)}
.footer-email {
    padding: 10px 15px;
    background-color: white;
    border: 2px solid var(--border);
    box-sizing: content-box;
}
.footer-email:focus {border: 2px solid var(--primary); outline: none}
input[type=submit] {
    padding: 10px 15px;
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: all .2s;
}
input[type=submit]:hover {
    background-color: var(--primary-darker);
    transition: all .2s;
    border: 1px solid var(--primary-darker);
}
.underlined {color: black; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; transition: all .2s}
.underlined:hover {color: var(--primary); transition: all .2s; text-decoration-thickness: 3px; text-underline-offset: 4px}
/* LIGHTBOX */
.hidden-link {display: none !important;}
body.lightbox-open {overflow: hidden;}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.caption {
    color: #ccc;
    font-size: 1.2em;
    padding: 10px 0;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox .prev-slide-btn,
.lightbox .next-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1001;
    user-select: none;
    border-radius: 4px;
    opacity: 0.8;
}

.lightbox .prev-slide-btn:hover,
.lightbox .next-slide-btn:hover {
    opacity: 1;
}

.lightbox .prev-slide-btn {
    left: 20px;
}

.lightbox .next-slide-btn {
    right: 20px;
}

/* VIEWPORTS / RESPONSIVITY */
@media screen and (max-width: 1400px) {
    .product-wrapper {display: flex; flex-direction: row}
    .product-wrapper .product-box {width: 100%; flex-basis: 32%; max-width: none; min-width: auto}
    .product-wrapper-list {display: grid; grid-template-columns: repeat(2, 1fr) !important;}
}
@media screen and (max-width: 1280px) {
    .search-button {display: block}
    .search {display: none}
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-2 .container:first-child {
        border-right: none;
        border-bottom: 2px solid var(--border);
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 1110px) {
    .product-wrapper {display: flex; flex-direction: row}
    .product-wrapper .product-box {flex-basis: 47%;}
    .product-wrapper-list .product-box {flex-basis: 0;}
    .product-wrapper-list {display: grid; grid-template-columns: repeat(2, 1fr) !important;}
}
@media screen and (max-width: 1060px) {
    .aside {display: none}
    .sort .tertiary-button {display: flex}
}
@media (max-width: 1000px) {
    .v3-wrap { grid-template-columns: 1fr; }
    .v3-image-panel { min-height: 300px; }
}
@media screen and (max-width: 980px) {
    .product-wrapper .product-box {flex-basis: 47%}
    .footer-top-content {display: flex; justify-content: center}
    .footer-top-content .h-container {flex-direction: column !important; gap: 40px}
    ul.breadcrumb {flex-wrap: wrap}
    ul.breadcrumb li a.highlighted {white-space: wrap}
}
@media screen and (max-width: 830px) {
    .header-nav-menu {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .slider-nav {
        display: none;
    }
    .carousel-controls {max-width: 20%; top: 95%; right: 10px}
    header {height: 90px;}
    header .container {justify-content: center; padding-top: 0}
    header.shrunk {top: -90px}
    header .logo {height: 40px}
    #mobile-nav .logo {height: 40px}
    .sort .nav-a {font-size: 14px}
    .ct-wrap {grid-template-columns: 1fr;}
    .team-grid {grid-template-columns: 1fr 1fr;}
    .ph-a {grid-template-columns: 1fr}
    .ph-a-photo {height: 300px}
    .product-slider {margin: 0;}
}
@media screen and (max-width: 700px) {
    .product-wrapper .product-box {flex-basis: 100%}
    .product-wrapper-list .product-box {flex-basis: 0;}
    .product-wrapper-list {display: grid; grid-template-columns: 1fr !important;}
    .v3-spec-row {grid-template-columns: 130px 1fr}
    .v3-info-panel {padding: 24px 20px}
    .v3-image-panel {padding: 20px}
    .sort .tertiary-button {display: none}
    .sort-button {display: flex}
}
@media screen and (max-width: 600px) {
    .sort .nav-a {font-size: 12px};
    .footer-bot-content {display: flex; justify-content: center}
    .footer-bot-content .h-container {flex-direction: column; gap: 40px}
}
@media  screen and (max-width: 560px) {
    .team-grid {grid-template-columns: 1fr;}
    .ph-a-info {padding: 15px}
    .ph-a-photo {height: 200px}
    .carousel-controls {max-width: 40%}
}
@media screen and (max-width: 500px) {.sort {display: none}}
@media screen and (max-width: 390px) {
    .v3-info-panel {padding: 12px 10px}
    .v3-image-panel {padding: 10px}
}


/* ── Filter panel ── */
.filter-panel {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.filter-panel-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.filter-group {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.filter-group:last-of-type {
    border-bottom: none;
}
.filter-group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-bright);
    margin-bottom: 12px;
}
.filter-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.filter-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.filter-label {
    font-size: 12px;
    color: var(--text-bright);
}
.filter-dash {
    padding-bottom: 8px;
    color: var(--text-bright);
    font-size: 14px;
}
.filter-input {
    background-color: white;
    border: 1px solid var(--border);
    padding: 7px 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    width: 100%;
    outline: none;
    transition: border-color .2s;
}
.filter-input:focus {
    border-color: var(--primary);
}
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.filter-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}
.filter-check-label input[type="checkbox"],
.filter-check-label input[type="radio"] {
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}
.filter-grade-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 22px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}
.filter-btn-apply,
.filter-btn-reset {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
/* ── USP Strip ─────────────────────────────────────────────────────────── */
.usp-strip {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}
.usp-item {
    flex: 1 1 200px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 26px 28px;
    border-right: 1px solid var(--border);
    background: white;
    text-decoration: none;
}
.usp-item:last-child { border-right: none; }
.usp-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
}
.usp-icon img { width: 100%; filter: var(--icon-primary); }
.usp-text { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; justify-content: space-between; height: 100%}
.usp-title { font-size: 15px; font-weight: 700; color: var(--text); }
.usp-desc  { font-size: 13px; color: var(--text-bright); line-height: 1.55; }
@media (max-width: 700px) {
    .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
    .usp-item:last-child { border-bottom: none; }
}

/* ── Category Grid ─────────────────────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.category-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 14px;
    background: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-darker);
    text-align: center;
    letter-spacing: 0.3px;
    border: 1px solid var(--border);
    transition: background .15s, box-shadow .15s, transform .15s;
}
.category-tile:hover {
    background: var(--secondary);
    box-shadow: 0 4px 16px rgba(17,112,179,0.15);
    transform: translateY(-2px);
}

/* ── How It Works ──────────────────────────────────────────────────────── */
.hiw-section {
    margin-top: 60px;
    padding: 52px;
    background: var(--background-darker);
}
.hiw-header { margin-bottom: 40px; }
.hiw-header h2 { font-size: 24px; font-weight: 800; }
.hiw-header p  { font-size: 15px; color: var(--text-bright); margin-top: 8px; }
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}
.hiw-step { display: flex; flex-direction: column; gap: 12px; }
.hiw-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.18;
    line-height: 1;
}
.hiw-title { font-size: 17px; font-weight: 700; color: var(--text); }
.hiw-desc  { font-size: 14px; color: var(--text-bright); line-height: 1.7; }

@media (max-width: 600px) { .hiw-section { padding: 30px 20px; } }

/* ── Home Contacts Section ─────────────────────────────────────────────── */
.home-contacts-section {
    background-color: var(--background-darker);
    padding: 52px;
}
.home-contacts-header {
    margin-bottom: 30px;
}
.home-contacts-header h2 {
    font-size: 24px;
    font-weight: 800;
}
.home-contacts-header p {
    font-size: 15px;
    color: var(--text-bright);
    margin-top: 8px;
}
.home-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.home-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    padding: 16px;
}
.home-contact-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}
.home-contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.home-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.home-contact-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-contact-role {
    font-size: 12px;
    color: var(--text-bright);
    margin: 0 0 4px;
}
.home-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-contact-link:hover { color: var(--primary-darker); }
.home-contact-link .ct-icon { flex-shrink: 0; }
@media (max-width: 1250px) {
    .home-contacts-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 860px) {
    .home-contacts-grid {grid-template-columns: 1fr}
}
@media screen and (max-width: 480px) {
    .home-contacts-section {padding: 30px}
    .home-contact-card {flex-direction: column}
}
/* ANIMATIONS */
@keyframes fade-in {
    0% {opacity: 0}
    100% {opacity: 1}
}