/*!
Theme Name: Sting
Theme URI: https://www.notion.so/luuk-arends/Sting-v1-0-1-2ae58397e72b8002af4ac6f01e333a49?source=copy_link
Author: Luuk Arends
Author URI: https://luukarends.nl
Description: Sting is a lightweight, flexible WordPress theme that cuts through the noise. Custom-built for speed and adaptability, every line of code serves a purpose. Clean, precise, and ready to shape around your vision.
Version: 1.0.1
Tested up to: 8.3
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sting
*/

/* Root */

:root {
  --teal: #009779;
  --lightteal: #e3f4f0;
  --orange: #ff6f31;
  --lightgrey: #f7f7f7;
  --darkgrey: #252525;
  --white: #ffffff;
  --black: #000000;
}

/* Fonts */

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-v4-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-v4-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-v4-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

b,
strong,
.fw-bold {
  font-weight: 600;
}

/* Body */

body {
  font-family:
    "Geist",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Anchors */

a {
  color: var(--orange);
  text-decoration: none;
  transition: all ease 0.6s;
}

/* Backgrounds */

.bg-teal {
  background-color: var(--teal);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-lightgrey {
  background-color: var(--lightgrey);
}

.bg-darkgrey {
  background-color: var(--darkgrey);
}

/* Tables */

.table > :not(caption) > * > * {
  font-weight: inherit;
}

/* Modals */

.modal-dialog {
  max-width: 768px;
}

#calcModal .modal-dialog {
  max-width: 420px;
}

/* Buttons */

.btn,
.button,
.wp-block-button__link {
  padding: 0.5rem 1rem;
  transition: all ease 0.6s;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary,
.button,
.wp-block-button__link {
  background-color: var(--teal);
  border-color: var(--teal);
}

.btn-secondary:hover,
.button:hover,
.wp-block-button__link:hover {
  transform: scale(1.05);
  background-color: var(--teal);
  border-color: var(--teal);
}

/* Headings */

h1,
h2,
h3 {
  font-weight: 600;
}

.title {
  font-size: 1.5rem;
}

.title-url {
  color: var(--teal);
  display: inline-flex;
  gap: 0.5rem;
}

.bg-teal .title {
  color: var(--white);
}

/* Slick */

@media (max-width: 1200px) {
  .slick-next {
    right: 1.5rem;
  }

  .slick-prev {
    left: 1.5rem;
  }
}

/* Search */

.search {
  padding: 0.75rem 1.25rem;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'><path d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/></svg>");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: 97.5% 50%;
  border-radius: 3rem;
}

.resultBox {
  width: 100%;
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  border-radius: 1.5rem 0 0 1.5rem;
}

.dropdown-text {
  color: var(--bs-secondary-color);
}

.search-img,
.search-img-placeholder {
  border-radius: 0.5rem;
  width: 60px;
  height: 60px;
}

.search-img-placeholder {
  background-color: var(--lightgrey);
}

.search-title {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--black);
}

.search-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--lightgrey);
  border-radius: 0.5rem;
  display: inline-block;
}

.resultBox .dropdown-item:active {
  background-color: var(--lightgrey);
}

/* Header */

.rank-math-breadcrumb {
  font-size: 0.925rem;
}

.rank-math-breadcrumb p {
  margin-bottom: 0.25rem;
}

.rank-math-breadcrumb a {
  color: var(--teal);
}

.meta-items .bi {
  color: var(--teal);
}

.header {
  box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
}

.header-top {
  color: var(--black);
  font-size: 0.925rem;
  padding: 0.5rem 0;
}

.header-top .bi {
  color: var(--teal);
}

.header-top a {
  color: var(--black);
}

.header-middle {
  padding: 1rem 0;
  background-color: var(--white);
}

.header-middle .row {
  align-items: center;
}

.header-middle .logo {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.header-actions {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.header-actions_left {
  justify-content: start;
}

.action-item {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--lightgrey);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.5rem;
  color: var(--black);
}

.action-cart {
  background-color: var(--teal);
  color: var(--white);
}

.action-count {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  border-radius: 50%;
  background-color: var(--orange);
  font-size: 0.85rem;
  display: flex;
  width: 24px;
  height: 24px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.header-bottom {
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 0;
}

.navbar-nav {
  flex-direction: row;
  gap: 2rem;
}

#offcanvasMenu .navbar-nav {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}

#offcanvasMenu .navbar-nav .nav-link {
  font-size: 1.125rem;
}

#offcanvasMenu .menu-mobile-container {
  margin: 1rem 0;
  padding: 1rem 0;
}

.menu-actions {
  display: grid;
  gap: 0.5rem;
}

.menu-actions a {
  color: inherit;
}

.nav-cta .nav-link {
  background-color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--white);
}

#navProducts {
  position: fixed;
  width: 100%;
  z-index: 100;
}

@media (min-width: 1200px) {
  body.scrolled #navProducts {
    top: 220px;
  }
}

.navProducts .nav-link::after {
  content: "";
  width: 20px;
  height: 12px;
  display: inline-block;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/></svg>");
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}

.mm-layout {
  background-color: var(--white);
  border-radius: 1.5rem;
  display: flex;
  box-shadow: var(--bs-box-shadow);
}

.mm-nav {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 2px solid var(--lightgrey);
  min-width: 320px;
}

.mm-nav_item {
  background-color: transparent;
  border: 0;
  color: var(--black);
  font-size: 1.125rem;
  text-align: left;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.mm-nav_item .bi {
  display: none;
}

.mm-nav_item:hover,
.mm-nav_item[aria-expanded="true"] {
  color: var(--teal);
}

.mm-nav_item[aria-expanded="true"] .bi {
  display: block;
}

.mm-results {
  padding: 3rem;
  width: 100%;
}

.mm-title {
  font-size: 1.125rem;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}

.mm-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mm-item {
  color: var(--black);
}

.mm-item:hover {
  color: var(--teal);
}

/* Cart */

@media (max-width: 768px) {
  .shop_table_responsive .product-thumbnail::before,
  .shop_table_responsive .product-name::before,
  .shop_table_responsive .product-price,
  .shop_table_responsive .product-price::before,
  .shop_table_responsive .product-quantity::before,
  .shop_table_responsive .product-subtotal::before {
    display: none !important;
  }

  .shop_table_responsive tr {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  .shop_table_responsive td {
    display: block !important;
    width: auto;
    padding: 4px !important;
    border: none !important;
  }

  .cart_totals .shop_table_responsive tr {
    display: block !important;
  }
}

.woocommerce-cart .shop_table_responsive .product-name {
  text-align: left !important;
}

.shop_table_responsive .product-quantity .quantity .qty {
  height: 40px;
  background-color: var(--lightgrey);
  border-radius: 0.375rem;
}

.woocommerce-cart .shop_table_responsive .product-thumbnail,
.woocommerce-cart .shop_table_responsive .attachment-woocommerce_thumbnail {
  min-width: 50px !important;
  width: 50px;
  height: 50px;
}

.shop_table_responsive a {
  color: inherit;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  font-weight: 600;
}

ul.cart_list {
  padding: 0 !important;
  margin-bottom: 1rem !important;
}

ul.cart_list .remove {
  color: var(--red);
  justify-content: center;
}

ul.cart_list li,
.woocommerce ul.product_list_widget li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}

ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  object-fit: cover;
  float: none;
  border-radius: 50%;
}

.offcanvas-title {
  font-size: 1rem;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  float: none;
}

.woocommerce-mini-cart__buttons {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.free-shipping-bar {
  text-align: center;
  font-size: 0.925rem;
  color: var(--teal);
}

.shipping-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.shipping-message .bi {
  font-size: 1.25rem;
}

#offcanvasCart .woocommerce-mini-cart__buttons .button {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--teal);
  color: var(--white);
  font-weight: normal;
}

#offcanvasCart .woocommerce-mini-cart__buttons .button.checkout {
  background-color: var(--orange);
}

#offcanvasCart .woocommerce-mini-cart__buttons .cart-link {
  color: var(--teal);
  font-size: 0.925rem;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0;
}

/* USP's */

.usp-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  gap: 1rem;
}

.usp-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  height: 100%;
  justify-content: start;
  padding: 1rem;
  border: 2px solid var(--lightgrey);
  border-radius: 1rem;
}

.usp-item .bi {
  font-size: 2rem;
  color: var(--teal);
}

.usp-title {
  font-size: 1rem;
  font-weight: 600;
}

.usp-descr {
  font-size: 0.925rem;
}

.differences .usp-item {
  flex-direction: column;
  align-items: start;
}

/* Hero */

.hero-inner {
  position: relative;
  padding: 6rem;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .hero-inner {
    padding: 3rem;
  }
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  position: relative;
  z-index: 10;
  color: var(--white);
}

.hero-title {
  font-size: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 75%;
  z-index: 0;
}

/* Categories */

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  color: var(--teal);
}

.cat-item {
  padding: 1rem;
  color: var(--black);
  border: 1px solid var(--white);
  display: flex;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  background-color: var(--white);
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  text-align: center;
}

.cat-item:hover {
  color: var(--teal);
  border: 1px solid var(--teal);
}

.cat-item .bi {
  color: var(--teal);
  font-size: 1.125rem;
}

/* Products */

.slickProducts .slick-track {
  display: flex !important;
}

.slickProducts .slick-slide {
  height: inherit !important;
  margin: 0 0.5rem;
}

.slickProducts .slick-list {
  margin: 0 -0.5rem;
}

.product-item {
  height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1rem;
  color: inherit;
  border: 1px solid var(--lightgrey);
  background-color: var(--lightgrey);
  position: relative;
}

.product-item:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(var(--bs-body-color-rgb), 0.075);
  background-color: var(--lightgrey);
  border: 1px solid var(--teal);
}

.product-label {
  position: absolute;
  top: 1rem;
  right: -0.25rem;
  z-index: 10;
  font-size: 0.85rem;
  padding: 0.25rem 1rem;
  border-radius: 0.375rem 0 0 0.375rem;
  background-color: var(--teal);
  color: var(--white);
  z-index: 5;
}

.product-media {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.product-media img {
  min-width: 100%;
  width: 272px;
  height: 272px;
  object-fit: contain;
}

.product-content {
  margin-bottom: 1rem;
}

.product-rating {
  color: var(--orange);
  font-size: 1.25rem;
}

.product-title {
  font-size: 1.125rem;
}

.product-descr {
  font-size: 0.925rem;
}

.product-info {
  margin: 1rem 0;
  font-size: 0.925rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
}

.info-label {
  font-weight: 600;
}

.product-price {
  display: flex;
  align-items: end;
  gap: 0.25rem;
  margin-top: auto;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .product-media img {
    width: 100%;
    height: 150px;
  }

  .product-price {
    font-size: 1rem;
  }
}

.woocommerce-price-suffix {
  font-size: 0.925rem;
  opacity: 0.5;
}

.price-text {
  font-size: 0.925rem;
}

.tax-text {
  font-size: 0.925rem;
  opacity: 0.5;
}

.product-item .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.in-stock {
  color: var(--teal);
}

.out-of-stock {
  color: var(--orange);
}

.woocommerce div.product p.stock {
  display: none;
}

/* Archive Product */

.archive-intro {
  margin-bottom: 1.5rem;
}

.archive-intro a {
  color: var(--teal);
}

.archive-related {
  margin-bottom: 1.5rem;
}

.related-item {
  padding: 0.25rem;
  margin: 0 0.25rem;
  border-radius: 1rem;
  border: 2px solid var(--lightgrey);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}

.woocommerce .woocommerce-result-count {
  font-size: 0.925rem;
  opacity: 0.5;
}

.archive-actions {
  display: flex;
  align-items: center;
}

.woocommerce-ordering {
  margin-left: auto !important;
}

.orderby {
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: var(--bs-border-width) solid var(--bs-border-color);
  font-size: 0.925rem;
  max-width: 200px;
}

.filter-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.archive-filter input[type="search"] {
  font-size: 0.925rem;
}

.archive-filter a {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.925rem;
}

.woocommerce-message {
  display: none;
}

.woocommerce-pagination {
  margin-top: 1rem;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.page-numbers .page-numbers {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.page-numbers .page-numbers:hover,
.page-numbers .page-numbers.current {
  background-color: var(--lightgrey) !important;
}

/* Single Product */

.single-product div.product div.summary {
  width: 100%;
  margin: 0;
  padding: 3rem;
  border-radius: 1rem;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  background-color: var(--white);
  float: none;
}

@media (max-width: 1200px) {
  .single-product div.product div.summary {
    padding: 1.5rem;
  }
}

.single-product .summary .product_title {
  font-size: 1.75rem;
}

.title-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.review-number {
  font-size: 1.25rem;
}

.review-stats {
  font-size: 0.925rem;
  opacity: 0.5;
}

.delivery-time {
  color: var(--teal);
}

.woocommerce div.product p.price {
  color: inherit;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  font-size: 0.925rem;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
  color: var(--orange);
  font-weight: 600;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  margin-bottom: 1rem;
  display: block;
  color: inherit;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 1rem 0 0;
}

.woocommerce div.product form.cart table.variations {
  flex: 1 0 100%;
  margin-bottom: 1rem;
}

.woocommerce div.product form.cart div.quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: 0.5rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 600;
}

.woocommerce div.product form.cart .variations select {
  padding: .5rem;
  border-radius: .5rem;
  min-width: 150px;
  max-width: 150px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 0;
  background-color: transparent;
  border: 0;
}

input.qty {
  text-align: center;
  width: 40px !important;
  border: 0;
}

.woocommerce div.product form.cart.variations_form {
  flex-wrap: wrap;
}

.woocommerce div.product form.cart .button {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--orange);
  border-bottom: 3px solid #b73d09;
  font-weight: 600;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.single-product_image {
  position: relative;
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: 1rem;
  background-color: var(--white);
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  float: none;
  width: 100%;
  margin: 0;
}

.woocommerce .pswp__bg {
  background-color: var(--white);
}

.woocommerce span.onsale {
  background-color: var(--orange);
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  font-weight: 400;
  min-height: auto;
  min-width: auto;
  line-height: inherit;
  top: 1rem;
  left: -0.5rem;
  right: auto;
}

.customer-service {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  background-color: var(--white);
}

.contact-service {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  background-color: var(--white);
  padding: 2rem;
}

.contact-service h2 {
  font-size: 1.5rem;
}

.content-block a.contact-item,
.contact-service a {
  color: var(--teal);
}

.cs-image {
  width: 100px;
  object-fit: cover;
}

.cs-content {
  padding: 1.5rem;
}

.cs-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.woocommerce-product-details__short-description p {
  margin-bottom: 0;
}

.woocommerce-product-details__short-description a {
  color: var(--teal);
  font-size: 0.925rem;
}

.btn-calc {
  width: 100%;
  background-color: #e3f4f0;
  color: var(--teal);
  border: 0;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.925rem;
}

.btn-colors {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-title {
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 600;
}

.option-value {
  color: var(--black);
  opacity: 0.5;
}

.option-selected {
  font-weight: 600;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
}

@media (max-width: 1200px) {
  .options {
    overflow-x: scroll;
  }

  .modal .options {
    overflow: hidden;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.options .option {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.chosen-options_info {
  font-size: 0.925rem;
}

.options-info {
  display: flex;
  gap: 1rem;
}

.info-title {
  min-width: 240px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .info-title {
    min-width: 120px;
  }
}

.info-stock {
  color: var(--teal);
}

.option-modal {
  color: var(--teal);
  font-size: 0.925rem;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: var(--bs-box-shadow-sm);
  transition: all ease 0.6s;
}

.color-circle:hover,
.color-circle.chosen {
  cursor: pointer;
  border: 2px solid var(--teal);
}

.chosen-options {
  padding: 1rem;
  background-color: var(--lightteal);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.option-descr {
  font-size: 0.925rem;
}

.variation-color {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid #ddd;
}

.variation-add {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.variation-add input {
  width: 70px;
}

.modal-header .modal-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.modal-header .modal-descr {
  font-weight: normal;
  font-size: 1rem;
}

.modal .alert {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.925rem;
  padding: 0;
  margin: 0 auto;
}

.modal .alert .bi-palette-fill {
  font-size: 1.5rem;
}

#calcModal .modal-body .btn {
  width: 100%;
  padding: 0.75rem;
}

#calc-result {
  padding: 1rem;
  background-color: var(--lightteal);
  border-radius: 0.375rem;
  margin-top: 1rem;
  color: var(--teal);
}

#calc-result .result {
  font-size: 1.25rem;
  color: var(--orange);
}

.tabs {
  padding: 0;
  display: flex;
  list-style: none;
  gap: 1rem;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  color: var(--teal);
  padding: 1rem;
}

.download-item .bi {
  font-size: 1.25rem;
}

.download-item:hover {
  opacity: 0.5;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 1200px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: start;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--white);
  font-weight: 600;
}

.benefit-item .bi {
  font-size: 1.25rem;
  color: var(--teal);
}

/* Reviews */

.slickReviews .slick-track {
  display: flex !important;
}

.slickReviews .slick-slide {
  height: inherit !important;
}

.review-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #66c1af;
  color: var(--white);
  background-color: #1aa186;
  margin: 0 0.5rem;
}

.review-rating {
  color: orange;
  font-size: 2rem;
}

.review-score {
  font-size: 3rem;
  font-weight: 600;
}

.review-featured .review-content {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.925rem;
  color: var(--white);
  opacity: 0.5;
}

.webwinkelkeur {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.wwk-icon img {
  border-radius: 0.5rem;
  object-fit: cover;
}

.wwk-text {
  opacity: 0.5;
}

/* Featured */

.featured-item {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.featured-b2b {
  background-color: var(--teal);
}

.applications .featured-item {
  height: 250px;
}

.featured-item:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.8;
  transition: all ease 0.6s;
}

.featured-item:hover {
  box-shadow: var(--bs-box-shadow);
}

.featured-item:hover:after {
  opacity: 0.25;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  position: relative;
  z-index: 10;
  padding: 3rem;
  color: var(--white);
}

.applications .featured-content {
  height: 100%;
  justify-content: end;
  padding: 1.5rem;
}

.featured-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-link {
  font-size: 1.25rem;
}

/* Content */

.content-block {
  padding: 3rem;
  border-radius: 1rem;
  background-color: var(--white);
}

@media (max-width: 1200px) {
  .content-block {
    padding: 1.5rem;
  }
}

.content-block h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0;
}

.content-block h2:first-of-type {
  margin-top: 0;
}

.content-block h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: var(--teal);
  margin-top: 0.5rem;
}

.content-block h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0;
}

.content-block img {
  width: 100%;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.content-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 1rem;
  overflow: hidden;
}

.content-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.list-usp {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

@media (min-width: 1200px) {
  .post-sidebar.sticky-top {
    top: 200px;
    z-index: 1000;
  }
}

/* Blog */

.slickBlog .slick-track {
  display: flex !important;
}

.slickBlog .slick-slide {
  height: inherit !important;
  margin: 0 0.5rem;
}

.slickBlog .slick-list {
  margin: 0 -0.5rem;
}

.blog-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  color: inherit;
  border: 1px solid var(--lightgrey);
}

.blog-item:hover {
  border: 1px solid var(--teal);
}

.blog-title {
  font-size: 1.125rem;
}

.blog-descr {
  font-size: 0.925rem;
}

.blog-image {
  width: 100%;
  border-radius: 0.5rem;
  height: 250px;
  object-fit: cover;
}

.blog-item .btn {
  margin-top: auto;
}

/* Newsletter */

.newsletter {
  color: var(--white);
}

.newsletter .content-form .gform_wrapper.gravity-theme input {
  padding: 1rem;
  font-size: 1rem;
  border: 0;
  border-radius: 3rem;
}

.newsletter .content-form .gform_wrapper.gravity-theme input[type="submit"] {
  color: var(--white);
  padding: 0.5rem 1rem;
  transition: all ease 0.6s;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--orange);
  border-color: var(--orange);
  font-weight: inherit;
}

.content-form .gform_wrapper.gravity-theme .gform_footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Forms */

.content-form .gform_wrapper .gform_heading {
  display: none;
}

.content-form .gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large {
  border-radius: 3rem;
  background-color: #f7f7f7;
  border: 0;
  padding: 0.75rem 1.5rem;
  height: auto;
}

.content-form .gform_wrapper.gravity-theme .gform_footer input {
  color: var(--white);
  border: 0;
}

.content-form .gform_wrapper.gravity-theme .gfield textarea {
  border-radius: 1rem;
  background-color: #f7f7f7;
  border: 0;
  padding: 0.75rem 1.5rem;
  height: auto;
}

/* Rank Math */

#rank-math-faq .rank-math-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1200px) {
  #rank-math-faq .rank-math-list {
    grid-template-columns: 1fr 1fr;
  }
}

#rank-math-faq .rank-math-list-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
}

#rank-math-faq .rank-math-list-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 !important;
}

@media (max-width: 768px) {
  #rank-math-faq .rank-math-list-item h3 {
    font-size: 1rem;
  }
}

.product-tabs #rank-math-faq .rank-math-list-item h3 {
  font-size: 1rem;
}

#rank-math-faq .rank-math-list-item p {
  margin-top: 1rem;
}

#rank-math-faq .rank-math-list-item .collapse:not(.show) {
  display: block;
}

.rank-math-question {
  cursor: pointer;
  position: relative;
  display: block;
  padding-right: 1em;
  margin-right: 1em;
  font-weight: 400;
  margin-top: 30px;
}

.rank-math-question:after {
  position: absolute;
  right: 5px;
  top: 0;
  content: "\2715";
  transform: rotate(-45deg);
  transition: all 150ms ease-in-out;
  color: var(--teal);
}

.rank-math-question.collapse:after {
  transform: rotate(0deg);
}

.rank-math-question:hover {
  opacity: 0.8;
}

/* Account */

.woocommerce-MyAccount-navigation {
  padding-right: 1rem;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.woocommerce-MyAccount-navigation ul li a {
  color: inherit;
  padding: .75rem 1rem;
  background-color: var(--lightgrey);
  border-radius: .5rem;
  display: block;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: var(--teal);
  color: var(--white);
}

.woocommerce-account .addresses .title .edit {
  font-size: 1rem;
  float: none;
}

.woocommerce-account address {
  font-size: .925rem;
}

.woocommerce-info {
  border-top-color: var(--teal);
  background-color: var(--lightgrey);
  font-size: .925rem;
}

.woocommerce-info::before {
  color: var(--teal);
}

.woocommerce .woocommerce-info .button,
.woocommerce-account .woocommerce form .button {
  font-weight: normal;
  border-radius: .5rem;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

#account_display_name_description,
.woocommerce-form .woocommerce-privacy-policy-text {
  font-size: .85rem;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block;
}

.alert-b2b a {
  color: inherit;
  text-decoration: underline;
}

/* Cart */

.shop_table .attachment-woocommerce_thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  border: 1px solid var(--lightgrey);
}

.shop_table .product-price {
  margin-bottom: 0;
  display: table-cell;
  font-size: 1rem;
}

.woocommerce-shipping-destination {
  font-size: 0.925rem;
  opacity: 0.5;
}

.cart_totals h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Checkout */

.return-link {
  color: var(--teal);
}

.form-label {
  font-size: 0.925rem;
}

.form-select {
  font-size: 0.925rem;
}

.choose-input {
  padding: 1rem;
  background-color: rgba(var(--bs-light-rgb));
  border-radius: 0.375rem;
  margin: 1rem 0;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group .form-floating {
  width: 100%;
}

.form-group .form-floating input {
  font-size: 0.925rem;
}

.form-check {
  font-size: 0.925rem;
}

.payment-method {
  padding: 0.5rem;
  border: 2px solid var(--bs-border-color);
  border-radius: 0.375rem;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#place_order,
body.page-template-cart-checkout .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--orange);
  border-radius: 0.5rem;
  font-weight: normal;
  font-size: 1rem;
}

body.page-template-cart-checkout
  .wc-proceed-to-checkout
  .checkout-button:hover {
  background-color: var(--orange);
}

.woocommerce-checkout .widget-title {
  margin-bottom: 1rem;
}

.woocommerce-billing-fields {
  margin-bottom: 1.5rem;
}

.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 0.5rem;
}

.page-template-cart-checkout.woocommerce-checkout
  .woocommerce-checkout
  .input-text {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-form-control-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0.375rem;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: auto;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce ul#shipping_method .amount {
  font-weight: 600;
}

.form-row {
  margin: 0;
}

.woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.button#place_order {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.woocommerce-checkout-review-order-table {
  font-size: 0.925rem;
}

.widget-title {
  font-size: 1.125rem;
}

.woocommerce-checkout #payment {
  background-color: var(--lightgrey);
}

/* Footer */

.footer {
  color: var(--white);
}

.footer h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.footer ul.wp-block-social-links {
  flex-direction: row;
}

.copyright {
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid var(--bs-secondary);
}

.copyright a {
  color: var(--teal);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-item .bi {
  font-size: 1.125rem;
  color: var(--teal);
}

.copy-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
