/*
Theme Name: Geloofstegels Header
Theme URI: https://geloofstegels.nl/
Author: Geloofstegels
Description: Custom WordPress theme met de Geloofstegels-header (USP-balk, logo, hoofdmenu, account & winkelmand). Bedoeld als startpunt voor de rest van de site.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: geloofstegels
*/

/* =========================================================
   Geloofstegels Header — CSS
   Alle regels zijn scoped onder .gt-header zodat ze niet met
   andere theme-styles conflicteren.
   ========================================================= */

:root {
  --gt-blue: #1E3A6E;
  --gt-blue-dark: #14264A;
  --gt-cream: #F7F2E9;
  --gt-border: #E5E2DA;
  --gt-ink: #1A1A1A;
  --gt-muted: #6B7280;
  --gt-white: #ffffff;
}

/* Reset binnen de header */
.gt-header, .gt-header * { box-sizing: border-box; }
.gt-header a { text-decoration: none; color: inherit; }
.gt-header button {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer;
}
.gt-header ul { list-style: none; margin: 0; padding: 0; }

.gt-header {
  position: sticky; top: 0; z-index: 100;
  width: 100%;
  background: var(--gt-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--gt-ink);
}

.gt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .gt-container { padding: 0 2rem; }
}

/* ---------- USP bar ---------- */
.gt-usp {
  display: none;
  background: var(--gt-cream);
  border-bottom: 1px solid var(--gt-border);
  color: var(--gt-ink);
  font-size: 0.875rem;
}
@media (min-width: 768px) { .gt-usp { display: block; } }

.gt-usp__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
}
.gt-usp__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.gt-usp__item:first-child { justify-content: flex-start; }
.gt-usp__item:last-child  { justify-content: flex-end; }
.gt-usp__icon { width: 1rem; height: 1rem; color: var(--gt-blue); flex: 0 0 auto; }

/* ---------- Main bar ---------- */
.gt-main { border-bottom: 1px solid var(--gt-border); }

.gt-main__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
@media (min-width: 768px) {
  .gt-main__row { gap: 2rem; padding: 1rem 0; }
}

/* Logo */
.gt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gt-blue);
  flex: 0 0 auto;
}
.gt-logo__img {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.gt-logo__text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gt-blue);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gt-logo__img { width: 52px; height: 52px; }
  .gt-logo__text { font-size: 1.5rem; }
}

/* Desktop menu */
.gt-nav { display: none; flex: 1 1 auto; }
@media (min-width: 1024px) { .gt-nav { display: block; } }

.gt-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.gt-nav__item { position: relative; }

.gt-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--gt-ink);
  transition: color .15s ease;
}
.gt-nav__link:hover,
.gt-nav__item:hover > .gt-nav__link,
.gt-nav__item:focus-within > .gt-nav__link { color: var(--gt-blue); }

.gt-nav__caret {
  width: 14px; height: 14px;
  transition: transform .2s ease;
}
.gt-nav__item:hover .gt-nav__caret,
.gt-nav__item:focus-within .gt-nav__caret { transform: rotate(180deg); }

/* Desktop submenu */
.gt-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--gt-white);
  border: 1px solid var(--gt-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 38, 74, .12);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 120;
}
.gt-nav__item:hover > .gt-submenu,
.gt-nav__item:focus-within > .gt-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gt-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.925rem;
  color: var(--gt-ink);
}
.gt-submenu a:hover { background: var(--gt-cream); color: var(--gt-blue); }

/* Right cluster */
.gt-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) { .gt-actions { gap: 1.5rem; } }

.gt-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gt-blue);
}
.gt-action:hover { color: var(--gt-blue-dark); }
.gt-action__label { display: none; font-size: 0.9rem; font-weight: 500; }
@media (min-width: 768px) { .gt-action__label { display: inline; } }
.gt-icon { width: 24px; height: 24px; display: block; }

.gt-cart { position: relative; }
.gt-cart__badge {
  position: absolute;
  top: -6px; right: -10px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gt-blue);
  color: var(--gt-white);
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.gt-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--gt-blue);
}
.gt-burger__label { font-size: 0.7rem; font-weight: 500; margin-top: 2px; }
@media (min-width: 1024px) { .gt-burger { display: none; } }

/* ---------- Mobile drawer ---------- */
.gt-drawer,
.gt-drawer-backdrop { display: none; }

.gt-drawer.is-open,
.gt-drawer-backdrop.is-open { display: block; }

.gt-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
}
.gt-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background: var(--gt-white);
  z-index: 200;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.gt-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gt-border);
}
.gt-drawer__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gt-blue);
}
.gt-drawer__close { color: var(--gt-blue); }

.gt-drawer__list { padding: 0.25rem 0.5rem; }
.gt-drawer__item { border-bottom: 1px solid var(--gt-border); }
.gt-drawer__item:last-child { border-bottom: 0; }

.gt-drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gt-ink);
  text-align: left;
}
.gt-drawer__toggle:hover { background: var(--gt-cream); }
.gt-drawer__toggle .gt-nav__caret { width: 18px; height: 18px; }
.gt-drawer__item.is-open .gt-drawer__toggle .gt-nav__caret { transform: rotate(180deg); }

.gt-drawer__sub { display: none; padding: 0 0 0.75rem 1rem; }
.gt-drawer__item.is-open .gt-drawer__sub { display: block; }
.gt-drawer__sub a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--gt-ink);
  font-size: 0.975rem;
}
.gt-drawer__sub a:hover { background: var(--gt-cream); color: var(--gt-blue); }

.gt-drawer__cta { padding: 1.5rem; }
.gt-drawer__cta a {
  display: block;
  padding: 0.85rem 1.25rem;
  background: var(--gt-blue);
  color: var(--gt-white);
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
}
.gt-drawer__cta a:hover { background: var(--gt-blue-dark); }

/* =========================================================
   Hero Banner
   ========================================================= */

.gt-hero {
  width: 100%;
}

.gt-hero__bg {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .gt-hero__bg { min-height: 620px; }
}

/* Donkere overlay links zodat tekst leesbaar is */
.gt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 38, 74, 0.65) 0%,
    rgba(20, 38, 74, 0.35) 50%,
    rgba(20, 38, 74, 0.0) 100%
  );
}

.gt-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gt-hero__text {
  max-width: 520px;
}

.gt-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gt-white);
  line-height: 1.2;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .gt-hero__title { font-size: 3.25rem; }
}

.gt-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .gt-hero__sub { font-size: 1.1rem; }
}

/* Knoppen */
.gt-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 0.975rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* Gevuld — beige/warm zoals in de screenshot */
.gt-btn--solid {
  background: var(--gt-cream);
  color: var(--gt-blue);
  border: 2px solid var(--gt-cream);
}
.gt-btn--solid:hover {
  background: #ede6d6;
  border-color: #ede6d6;
}

/* Outline — transparant met witte rand */
.gt-btn--outline {
  background: transparent;
  color: var(--gt-white);
  border: 2px solid var(--gt-white);
}
.gt-btn--outline:hover {
  background: rgba(255,255,255,0.12);
}
/* =========================================================
   USP Bar (Onder de hero)
   ========================================================= */

.gt-usp-bar {
  background: var(--gt-cream);
  border-bottom: 1px solid var(--gt-border);
  padding: 1.25rem 0;
}

.gt-usp-bar__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gt-usp-bar__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}

.gt-usp-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gt-blue);
}

.gt-usp-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--gt-blue);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .gt-usp-bar__item {
    justify-content: center;
  }
}

/* =========================================================
   Cards Grid — universeel herbruikbaar component
   ========================================================= */

.gt-cards {
    padding: 4rem 0;
}

.gt-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .gt-cards__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .gt-cards__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Kaart */
.gt-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--gt-ink);
    border-radius: 12px;
    overflow: hidden;
    background: var(--gt-white);
    border: 1px solid var(--gt-border);
    transition: box-shadow .25s ease, transform .25s ease;
}

.gt-card:hover {
    box-shadow: 0 8px 24px rgba(20, 38, 74, .10);
    transform: translateY(-3px);
}

/* Afbeelding */
.gt-card__image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gt-cream);
}

.gt-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.gt-card:hover .gt-card__image {
    transform: scale(1.06);
}

/* Content */
.gt-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gt-card__title {
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gt-blue);
    margin: 0 0 0.25rem;
}

.gt-card__subtitle {
    font-size: 0.85rem;
    color: var(--gt-muted);
    margin: 0;
    line-height: 1.4;
}
/* =========================================================
   Product Slider
   ========================================================= */

.gt-product-slider {
    padding: 4rem 0;
    background: var(--gt-cream);
}

/* Swiper override */
.gt-swiper {
    padding-bottom: 3rem !important;
    overflow: visible;
}

/* Productkaart */
.gt-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--gt-ink);
    border-radius: 12px;
    overflow: hidden;
    background: var(--gt-white);
    border: 1px solid var(--gt-border);
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.gt-product-card:hover {
    box-shadow: 0 8px 24px rgba(20, 38, 74, .10);
    transform: translateY(-3px);
}

/* Afbeelding */
.gt-product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gt-cream);
}

.gt-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.gt-product-card:hover .gt-product-card__image {
    transform: scale(1.06);
}

/* Badge */
.gt-product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gt-blue);
    color: var(--gt-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

/* Content */
.gt-product-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.gt-product-card__title {
    font-family: Georgia, serif;
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--gt-ink);
    margin: 0;
    line-height: 1.3;
}

.gt-product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gt-blue);
}

.gt-product-card__cta {
    font-size: 0.8rem;
    color: var(--gt-muted);
    margin-top: auto;
}

/* Navigatie pijlen */
.gt-swiper-prev,
.gt-swiper-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--gt-white);
    border: 1px solid var(--gt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background .2s ease;
}

.gt-swiper-prev:hover,
.gt-swiper-next:hover { background: var(--gt-cream); }

.gt-swiper-prev { left: -1.25rem; }
.gt-swiper-next { right: -1.25rem; }

.gt-swiper-prev svg,
.gt-swiper-next svg {
    width: 18px;
    height: 18px;
    color: var(--gt-blue);
}

/* Dots */
.gt-swiper-pagination {
    bottom: 0 !important;
}

.gt-swiper-pagination .swiper-pagination-bullet {
    background: var(--gt-blue);
    opacity: 0.3;
}

.gt-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
/* =========================================================
   Globale mobiele reset
   ========================================================= */

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

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gt-ink);
    background: var(--gt-white);
}

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

/* =========================================================
   Container — mobiel vriendelijk
   ========================================================= */

.gt-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .gt-container { padding: 0 2rem; }
}

/* =========================================================
   Section header
   ========================================================= */

.gt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.gt-section-title {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--gt-blue);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .gt-section-title { font-size: 1.75rem; }
}

.gt-section-link {
    color: var(--gt-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =========================================================
   Hero — mobiele aanpassingen
   ========================================================= */

.gt-hero__bg {
    min-height: 420px;
}

@media (min-width: 768px) {
    .gt-hero__bg { min-height: 620px; }
}

.gt-hero__title {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .gt-hero__title { font-size: 3.25rem; }
}

.gt-hero__sub {
    font-size: 0.95rem;
}

.gt-hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .gt-hero__buttons { flex-direction: row; }
}

.gt-btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 480px) {
    .gt-btn { width: auto; }
}

/* =========================================================
   USP Bar — mobiele aanpassingen
   ========================================================= */

.gt-usp-bar {
    padding: 1rem 0;
}

.gt-usp-bar__row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .gt-usp-bar__row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.gt-usp-bar__item {
    font-size: 0.85rem;
}

/* =========================================================
   Cards Grid — mobiele aanpassingen
   ========================================================= */

.gt-cards {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .gt-cards { padding: 4rem 0; }
}

.gt-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .gt-cards__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .gt-cards__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.gt-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gt-border);
    background: var(--gt-white);
    text-decoration: none;
    color: var(--gt-ink);
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}

.gt-card:hover {
    box-shadow: 0 8px 24px rgba(20, 38, 74, .10);
    transform: translateY(-3px);
}

.gt-card__image-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gt-cream);
}

.gt-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gt-card:hover .gt-card__image {
    transform: scale(1.06);
}

.gt-card__content {
    padding: 0.75rem;
}

@media (min-width: 768px) {
    .gt-card__content { padding: 1rem; }
}

.gt-card__title {
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gt-blue);
    margin: 0 0 0.2rem;
}

@media (min-width: 768px) {
    .gt-card__title { font-size: 1rem; }
}

.gt-card__subtitle {
    font-size: 0.8rem;
    color: var(--gt-muted);
    margin: 0;
    line-height: 1.4;
}

/* =========================================================
   Product Slider — mobiele aanpassingen
   ========================================================= */

.gt-product-slider {
    padding: 2.5rem 0;
    background: var(--gt-cream);
}

@media (min-width: 768px) {
    .gt-product-slider { padding: 4rem 0; }
}

.gt-slider-wrapper {
    position: relative;
}

.gt-swiper {
    overflow: hidden;
    padding-bottom: 2.5rem !important;
}

/* Productkaart */
.gt-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--gt-ink);
    border-radius: 10px;
    overflow: hidden;
    background: var(--gt-white);
    border: 1px solid var(--gt-border);
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.gt-product-card:hover {
    box-shadow: 0 8px 24px rgba(20, 38, 74, .10);
    transform: translateY(-3px);
}

.gt-product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gt-cream);
}

.gt-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.gt-product-card:hover .gt-product-card__image {
    transform: scale(1.06);
}

.gt-product-card__badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--gt-blue);
    color: var(--gt-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.gt-product-card__content {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

@media (min-width: 768px) {
    .gt-product-card__content { padding: 1rem; }
}

.gt-product-card__title {
    font-family: Georgia, serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gt-ink);
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .gt-product-card__title { font-size: 0.975rem; }
}

.gt-product-card__price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gt-blue);
}

.gt-product-card__cta {
    font-size: 0.78rem;
    color: var(--gt-muted);
    margin-top: auto;
    padding-top: 0.25rem;
}

/* Swiper navigatie */
.gt-swiper-prev,
.gt-swiper-next {
    color: var(--gt-blue) !important;
}

.gt-swiper-prev::after,
.gt-swiper-next::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}

@media (min-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
    }
}

/* Swiper dots */
.gt-swiper-pagination .swiper-pagination-bullet {
    background: var(--gt-blue);
    opacity: 0.3;
}

.gt-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}