/* Evoltek Trading - Exact replica of Bluedrops design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --bs-primary: #1D243C;
  --bs-primary-rgb: 29, 36, 60;
  --bs-secondary: #5DA9DD;
  --bs-secondary-rgb: 93, 169, 221;
  --bs-light: #f8f9fa;
  --bs-dark: #1D243C;
  --bs-body-font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  --bs-body-color: #1D243C;
  --bs-link-color: #1D243C;
  --bs-link-hover-color: #5DA9DD;
  --site-gutter: clamp(1.25rem, 4vw, 3.75rem);
}

body {
  font-family: var(--bs-body-font-family);
  font-weight: 300;
  color: var(--bs-body-color);
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

/* ===== HEADER ===== */
header.sticky-top {
  box-shadow: rgba(0, 0, 0, 0.15) 4px 4px 4px;
  z-index: 1030;
}

header {
  background-color: #1D243C;
  color: white;
}

header a {
  color: white !important;
  text-decoration: none;
}

header a:hover {
  color: rgba(255,255,255,0.85) !important;
}

/* ===== SEARCH FIELD ===== */
.search-modal {
  width: 100%;
  min-width: 260px;
}

.search-modal .suggest-form {
  position: relative;
}

.search-modal .search-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  pointer-events: none;
}

.search-modal .search-icon svg {
  width: 1rem;
  height: 1rem;
  fill: rgba(255, 255, 255, 0.7);
}

.search-modal .form-control,
.search-pill-input {
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}

.search-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-modal .form-control:focus {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  box-shadow: none;
  outline: 0;
}

.search-modal .reset-search {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  z-index: 4;
  padding: 0 0.75rem;
  background: none;
  border: none;
}

.search-modal .reset-search svg {
  width: 1rem;
  height: 1rem;
  fill: rgba(255, 255, 255, 0.7);
}

/* ===== NAV BAR BOTTOM ===== */
.nav-bar-bottom {
  padding-bottom: 0.75rem;
}

.nav-bar-bottom .nav {
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.nav-bar-bottom .nav-link {
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem !important;
  color: white !important;
  white-space: nowrap;
}

.nav-bar-bottom .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== NAVIGATION ===== */
.nav-link {
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem !important;
  color: white !important;
}

.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dropdown-menu {
  background-color: #1D243C;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dropdown-menu .dropdown-item {
  color: white !important;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.5rem;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(255,255,255,0.1);
  text-decoration: underline;
}

.dropdown-toggle::after {
  border-top-color: white;
  margin-left: 0.3em;
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: 0 !important;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #1D243C;
  color: white;
  border: 1px solid #1D243C;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: transparent;
  color: #1D243C;
  border-color: #1D243C;
}

.btn-outline-primary {
  background-color: transparent;
  color: #1D243C;
  border: 1px solid #1D243C;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #1D243C;
  color: white;
}

.btn-dark {
  background-color: #333;
  color: white;
  border: 1px solid #333;
}

.btn-dark:hover {
  background-color: #000;
  border-color: #000;
}

/* ===== FORM CONTROLS ===== */
.form-control {
  border-radius: 0 !important;
  border-color: #ddd;
}

.form-control:focus {
  border-color: #1D243C;
  box-shadow: none;
}

/* ===== HERO / POSTER SECTIONS ===== */
.poster-section {
  position: relative;
  min-height: 550px;
  display: grid;
  align-content: center;
  color: white;
  overflow: hidden;
}

.poster-section .poster-figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 0;
}

.poster-section .poster-figure .poster-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster-section .poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 36, 60, 0.55);
  z-index: 1;
}

.poster-section .poster-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 700px;
  margin-left: auto;
}

.poster-section .poster-content .dw-h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.poster-section .poster-content .dw-paragraph {
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.poster-section .btn-primary,
.poster-section .btn-outline-primary {
  padding: 0.45rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px !important;
}

.poster-section .btn-primary {
  background-color: white;
  color: #1D243C;
  border-color: white;
}

.poster-section .btn-primary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.poster-section .btn-outline-primary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.poster-section .btn-outline-primary:hover {
  background-color: white;
  color: #1D243C;
  border-color: white;
}

.poster-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.poster-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* ===== HERO / CATALOG POSTER SECTIONS ===== */
.poster-section-catalog {
  position: relative;
  min-height: 580px;
  display: grid;
  align-content: end;
  color: white;
  overflow: hidden;
}

.poster-section-catalog .poster-figure-catalog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 0;
}

.poster-section-catalog .poster-figure-catalog .poster-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.poster-section-catalog .poster-overlay-catalog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 36, 60, 0.55);
  z-index: 1;
}

.poster-section-catalog .poster-content-catalog {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 700px;
}

.poster-section-catalog .poster-content-catalog .dw-h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  
}

.poster-section-catalog .poster-content-catalog .dw-paragraph {
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.95;
}



/* ===== SECTION SPACING ===== */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-padding-sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6, .dw-h1, .dw-h2, .dw-h3, .dw-h4, .dw-h5, .dw-h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.dw-h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1D243C;
}

.dw-h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.dw-paragraph {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dw-paragraph-0 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

/* ===== LIGHT GREY BACKGROUND ===== */
.bg-lightgrey {
  background-color: #f6f6f6;
}

.bg-primary-custom {
  background-color: #1D243C;
  color: white;
}

.bg-primary-custom .dw-h2,
.bg-primary-custom .dw-h6,
.bg-primary-custom h2,
.bg-primary-custom h3 {
  color: white;
}

/* ===== ACCORDION ===== */
.accordion-custom {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #1D243C;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1rem;
}

.accordion-custom .accordion-item {
  border-bottom: 1px solid #dee2e6;
}

.accordion-custom .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-left: 0;
  color: #1D243C;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #1D243C;
}

.accordion-custom .accordion-body {
  padding-left: 2rem;
  padding-top: 0;
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%231D243C' d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%231D243C' d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

/* ===== FEATURE BLOCKS ===== */
.feature-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  color: #1D243C;
}

/* ===== FOOTER ===== */
footer {
  background-color: #1D243C;
  color: white;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

footer a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer h2, footer h3, footer .dw-h6 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

footer p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FOOTER ENHANCED ===== */
.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-main .footer-logo { width: 200px; margin-bottom: 1rem; opacity: 0.95; }
.footer-main .footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-top: 0.75rem; max-width: 260px; }
.footer-main .footer-heading { color: white; font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; padding-bottom: 0.6rem; border-bottom: 2px solid rgba(255,255,255,0.15); display: inline-block; }
.footer-main .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-main .footer-links li { margin-bottom: 0.6rem; }
.footer-main .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-main .footer-links a:hover { color: white; text-decoration: none; padding-left: 4px; }
.footer-main .footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; }
.footer-main .footer-contact-item svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); flex-shrink: 0; margin-top: 3px; }
.footer-main .footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-main .footer-contact-item a:hover { color: white; }
.footer-main .footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-main .footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); transition: all 0.25s ease; text-decoration: none; }
.footer-main .footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-main .footer-social a:hover { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white; transform: translateY(-2px); }
.footer-main .footer-supported { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-main .footer-supported p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.footer-main .footer-supported img { width: 180px; opacity: 0.7; transition: opacity 0.2s; }
.footer-main .footer-supported img:hover { opacity: 1; }
.footer-bottom-bar { background-color: #151a2e; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-bar p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-bar a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom-bar a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom-bar .footer-bottom-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-bottom-bar .footer-bottom-social { display: flex; gap: 1rem; justify-content: flex-end; }
.footer-bottom-bar .footer-bottom-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s; }
.footer-bottom-bar .footer-bottom-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.5); }
.footer-bottom-bar .footer-bottom-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.footer-bottom-bar .footer-bottom-social a:hover svg { fill: rgba(255,255,255,0.9); }

@media (max-width: 767px) {
  .footer-main { padding: 2.5rem 0 2rem; }
  .footer-main .footer-heading { font-size: 0.75rem; }
  .footer-main .footer-tagline { text-align: center; max-width: 100%; }
  .footer-main .footer-logo { display: block; margin-left: auto; margin-right: auto; }
  .footer-main .footer-social { justify-content: center; }
  .footer-main .footer-contact-item { justify-content: center; text-align: center; }
  .footer-main .footer-contact-item span { text-align: center; }
  .footer-main .footer-contact-item svg { display: none; }
  .footer-main .footer-supported { text-align: center; }
  .footer-main .footer-supported img { display: block; margin: 0 auto; }
  .footer-bottom-bar .footer-bottom-links { justify-content: center; margin-bottom: 0.5rem; }
  .footer-bottom-bar .footer-bottom-social { justify-content: center; }
  .footer-bottom-bar .row .col-md-4:first-child { text-align: center; }
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  border: none;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 12px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.19);
}

.product-card img {
  object-fit: contain;
  max-height: 180px;
  width: auto;
  max-width: 90%;
}

/* ===== CATALOG CARDS ===== */
.catalog-card {
  border: none;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 12px;
  overflow: hidden;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.19);
}

.catalog-card img {
  object-fit: contain;
  max-height: 180px;
  width: auto;
  max-width: 90%;
}

/* ===== CATALOG FORM ===== */
.catalog-form-section {
  background-color: white;
  padding-top: clamp(3.5rem, 5vw, 5.25rem);
  padding-bottom: clamp(3.5rem, 5vw, 5.25rem);
}

.catalog-form {
  width: 100%;
}

.catalog-form-field {
  margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

.catalog-form .form-control {
  min-height: 5.45rem;
  border: 1px solid #d9dbe2;
  border-radius: 8px !important;
  background-color: white;
  color: #1D243C;
  font-size: clamp(1rem, 1.15vw, 1.32rem);
  font-weight: 300;
  padding: 1.2rem 1.35rem;
}

.catalog-form .form-control::placeholder {
  color: #485066;
  opacity: 1;
}

.catalog-form .form-control:focus {
  border-color: #1D243C;
  box-shadow: 0 0 0 0.15rem rgba(29, 36, 60, 0.08);
}

.catalog-submit-btn {
  min-width: 6.55rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 8px !important;
  background-color: #1D243C;
  border-color: #1D243C;
  color: white;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.catalog-submit-btn:hover {
  background-color: #12182b;
  border-color: #12182b;
  color: white;
}

@media (max-width: 767px) {
  .catalog-form-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .catalog-form-field {
    margin-bottom: 1.5rem;
  }

  .catalog-form .form-control {
    min-height: 4rem;
    font-size: 1rem;
  }
}

/* ===== LOGO ===== */
.logo-img {
  max-width: 280px;
  height: auto;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  order: -1;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D243C;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header img {
  width: 140px;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-search {
  padding: 1rem 1.25rem;
}

.mobile-menu-search .suggest-form {
  position: relative;
}

.mobile-menu-search .search-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  pointer-events: none;
}

.mobile-menu-search .search-icon svg {
  width: 1rem;
  height: 1rem;
  fill: rgba(255, 255, 255, 0.7);
}

.mobile-search-input {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 999px !important;
  padding: 0.6rem 2.5rem !important;
  font-size: 0.95rem;
  width: 100%;
}

.mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-search-input:focus {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: none;
  outline: 0;
}

.mobile-menu-nav {
  padding: 0.5rem 0;
  flex: 1;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu-link:hover {
  background-color: rgba(255,255,255,0.05);
  color: white !important;
}

.mobile-menu-link svg {
  transition: transform 0.3s ease;
}

.mobile-menu-link.sub-open svg {
  transform: rotate(45deg);
}

.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: rgba(0,0,0,0.15);
}

.mobile-sub-menu.open {
  max-height: 500px;
}

.mobile-sub-link {
  display: block;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.mobile-sub-link:hover {
  color: white !important;
  background-color: rgba(255,255,255,0.05);
}

.mobile-menu-actions {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 1.5rem;
}

.mobile-menu-action-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
}

.mobile-menu-action-link:hover {
  color: rgba(255,255,255,0.85) !important;
}

.mobile-menu-action-link svg {
  fill: white;
}

/* ===== COUNTRY SELECTOR ===== */
.country-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: white !important;
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}

.belgium-flag {
  display: inline-flex;
  flex-direction: row;
  width: 18px;
  height: 13px;
  overflow: hidden;
  border-radius: 2px;
}

.belgium-flag span:nth-child(1) { background: #000; width: 33.33%; height: 100%; }
.belgium-flag span:nth-child(2) { background: #FAE042; width: 33.33%; height: 100%; }
.belgium-flag span:nth-child(3) { background: #ED2939; width: 33.33%; height: 100%; }

/* ===== UTILITY ===== */
.text-decoration-underline-hover:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.icon-2 {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-3 {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-4 {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .poster-section {
    min-height: 400px;
  }
  
  .poster-section h2 {
    font-size: 1.75rem;
  }
  
  .poster-section-catalog {
    min-height: 420px;
  }
  
  .poster-section-catalog .poster-content-catalog .dw-h2 {
    font-size: 1.75rem;
  }
  
  .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem !important;
  }
  
  .search-modal {
    min-width: 200px;
  }
  
  .header-flex-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 0.5rem var(--site-gutter);
  }
  
  .header-logo img {
    width: 160px !important;
  }
  
  .header-search {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 767px) {
  .poster-section {
    min-height: 350px;
  }
  
  .poster-section h2 {
    font-size: 1.5rem;
  }
  
  .poster-section .poster-content {
    padding: 2rem 1rem;
    margin-left: 0;
    max-width: 100%;
  }
  
  .poster-section-catalog {
    min-height: 350px;
  }
  
  .poster-section-catalog .poster-content-catalog {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .poster-section-catalog .poster-content-catalog .dw-h2 {
    font-size: 1.5rem;
  }
  
  .poster-section-catalog .poster-content-catalog .dw-paragraph {
    font-size: 0.8rem;
  }
  
  .section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .logo-img {
    max-width: 200px;
  }
  
  .header-flex-row {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0.5rem var(--site-gutter);
  }
  
  .header-logo img {
    width: 140px !important;
  }
  
  .header-search {
    order: 3;
    flex-basis: 100%;
  }
  
  .header-actions .nav-link span:not(.icon-3):not(.cart-badge) {
    display: none;
  }

  header .col-lg-3 .nav-link span:not(.icon-3):not(.cart-badge),
  .country-selector > span:last-child {
    display: none;
  }

  .header-actions > .d-flex,
  header .col-lg-3 .d-flex.justify-content-end {
    gap: 1rem !important;
  }
  
  footer img[style*="width:200px"],
  footer img[style*="width:250px"] {
    max-width: 160px !important;
    width: auto !important;
  }

  /* Footer mobile: stacked, centered columns */
  footer .row .col-12 {
    text-align: center;
  }

  footer .row .col-12 a.d-inline-block {
    display: flex !important;
    justify-content: center;
  }

  footer .row .col-12 h3 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .poster-section-catalog {
    min-height: 300px;
  }
  
  .poster-section-catalog .poster-content-catalog {
    padding: 1.5rem 0.75rem;
  }
  
  .poster-section-catalog .poster-content-catalog .dw-h2 {
    font-size: 1.3rem;
  }

  .poster-section-catalog .poster-content-catalog .dw-paragraph {
    font-size: 0.75rem;
  }
  
  .header-logo img {
    width: 120px !important;
  }
  
  .nav-bar-bottom .nav {
    gap: 0.25rem;
  }
  
  .nav-bar-bottom .nav-link {
    font-size: 0.65rem;
    padding: 0.3rem 0.4rem !important;
  }

  /* Map section extra small */
  .map-section {
    min-height: 300px !important;
  }

  .map-section .map-content {
    padding: 1.5rem 0.75rem;
  }

  .map-section .map-content h2 {
    font-size: 1.3rem;
  }

  /* Carousel controls extra small */
  #bestsellerCarousel .carousel-control-prev,
  #bestsellerCarousel .carousel-control-next {
    width: 28px;
    height: 28px;
  }

  #bestsellerCarousel .carousel-control-prev-icon,
  #bestsellerCarousel .carousel-control-next-icon {
    width: 12px;
    height: 12px;
  }

  /* Poster section extra small */
  .poster-section {
    min-height: 280px;
  }

  .poster-section h2 {
    font-size: 1.25rem;
  }

  .poster-section .poster-content .dw-paragraph {
    font-size: 0.8rem;
  }

  /* Footer images extra small */
  footer img[style*="width:200px"],
  footer img[style*="width:250px"] {
    max-width: 140px !important;
  }
}

/* ===== FORM CONTROLS ===== */
.form-control:focus {
  box-shadow: none;
  border-color: #1D243C;
}

/* ===== LINKS ===== */
a {
  color: #1D243C;
}

a:hover {
  color: #5DA9DD;
}

/* ===== IMAGE HOVER ===== */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.3s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* ===== MAP SECTION ===== */
.map-section {
  position: relative;
  min-height: 400px;
}

.map-section .map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.map-section .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,36,60,0.92) 0%, rgba(29,36,60,0.65) 50%, rgba(29,36,60,0.35) 100%);
  z-index: 1;
}

.map-section .map-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 600px;
}

/* ===== BRAND SHOWCASE ===== */
.brand-showcase-section {
  background-color: white;
  padding-top: clamp(4.5rem, 7vw, 7.5rem);
  padding-bottom: clamp(5rem, 8vw, 8.5rem);
}

.brand-showcase-intro {
  max-width: 760px;
  margin-bottom: clamp(4rem, 6vw, 6.5rem);
}

.brand-showcase-intro h2 {
  color: #1D243C;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.brand-showcase-intro p {
  max-width: 720px;
  color: #485066;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.brand-showcase-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(8rem, 11vw, 13rem);
  margin: 0;
  background-color: transparent;
  overflow: visible;
  transition: transform 0.2s ease;
}

.brand-showcase-card:hover {
  transform: translateY(-2px);
}

.brand-logo {
  width: 100%;
  max-width: 360px;
  max-height: 130px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.brand-showcase-card:hover .brand-logo {
  opacity: 0.82;
}

.brand-logo-stay {
  max-width: 390px;
}

@media (max-width: 991px) {
  .brand-showcase-section {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .brand-showcase-intro {
    margin-bottom: 3rem;
  }

  .brand-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-showcase-card {
    min-height: 7rem;
  }

  .brand-logo {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .brand-showcase-intro h2 {
    font-size: 2.4rem;
  }

  .brand-showcase-intro p {
    font-size: 1rem;
  }

  .brand-logo {
    max-width: 250px;
  }
}

/* ===== PROMO MOSAIC ===== */
.promo-mosaic-section {
  overflow: hidden;
}

.promo-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.promo-tile-water,
.promo-tile-liners {
  grid-column: span 4;
}

.promo-tile-heating,
.promo-tile-smart {
  grid-column: span 8;
}

.promo-banner {
  position: relative;
  min-height: clamp(360px, 25vw, 480px);
  height: 100%;
  display: grid;
  align-content: center;
  color: white;
  overflow: hidden;
}

.promo-banner .promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promo-tile-water .promo-bg,
.promo-tile-heating .promo-bg,
.promo-tile-liners .promo-bg {
  object-position: center;
}

.promo-tile-smart .promo-bg {
  object-position: center right;
}

.promo-banner .promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,36,60,0.88) 0%, rgba(29,36,60,0.5) 60%, rgba(29,36,60,0.2) 100%);
  z-index: 1;
}

.promo-banner .promo-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 3.5vw, 4.25rem);
  max-width: min(620px, 90%);
}

.promo-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.promo-banner p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.promo-banner .btn {
  align-self: flex-start;
  white-space: normal;
  text-align: center;
}

.promo-banner .btn-primary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.promo-banner .btn-outline-primary:hover {
  background-color: white;
  color: #1D243C;
  border-color: white;
}

@media (max-width: 1199px) {
  .promo-banner {
    min-height: 390px;
  }

  .promo-banner .promo-content {
    max-width: min(560px, 92%);
  }
}

@media (max-width: 991px) {
  .promo-mosaic-grid {
    grid-template-columns: 1fr;
  }

  .promo-tile-water,
  .promo-tile-liners,
  .promo-tile-heating,
  .promo-tile-smart {
    grid-column: auto;
  }

  .promo-banner {
    min-height: auto;
  }

  .promo-banner .promo-content {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
  }
}

@media (max-width: 575px) {
  .promo-banner .promo-content {
    min-height: 420px;
    max-width: 100%;
    padding: 2rem var(--site-gutter);
  }

  .promo-banner h2 {
    font-size: 1.65rem;
  }

  .promo-banner p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* ===== CART BADGE ===== */
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  background-color: white;
  color: #1D243C;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
}

/* ===== MINI CART ===== */
.mini-cart-quantity {
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== Z-INDEX ===== */
.z-1 {
  z-index: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb a {
  color: #1D243C;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #e63946;
}

/* ===== CONTAINER WIDTH (Webshop Pages) ===== */
@media (min-width: 992px) {
  main .container {
    max-width: 1550px;
  }
}

/* ===== PRODUCT GRID (Webshop/Outlet) ===== */
.product-grid-item {
  background: white;
  border-radius: 16px;
  padding: 32px 20px 20px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  box-shadow: 0 6px 24px rgba(29, 36, 60, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-grid-item:hover {
  box-shadow: 0 16px 48px rgba(29, 36, 60, 0.15),
              0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: rgba(29, 36, 60, 0.08);
}

.product-grid-item .stretched-link::after {
  border-radius: 16px;
}

/* Hide SKU, price, and Add to Cart button on product cards */
.product-grid-item .product-sku,
.product-grid-item .product-price,
.product-grid-item .product-actions {
  display: none !important;
}

/* Move title to top of card */
.product-info {
  order: -1;
  padding: 0 0.25rem 0.5rem;
  border-bottom: none;
  text-align: center;
  margin-top: 0 !important;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #1D243C;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-image-wrapper {
  order: 0;
  margin: auto 0;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.product-image-wrapper .ratio {
  background-color: transparent;
}

.product-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-grid-item:hover .product-image {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #e63946;
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  border-radius: 4px;
}

/* Sidebar Styling */
.sidebar-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #333;
  margin-bottom: 1.5rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
}

.form-check-input {
  border-radius: 0;
  border-color: #ccc;
}

.product-actions .btn:hover {
  opacity: 0.9;
}

/* Sidebar form-check */
.form-check-input:checked {
  background-color: #1D243C;
  border-color: #1D243C;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 36, 60, 0.25);
}

/* ===== CATEGORY BANNER ===== */
.category-banner {
  position: relative;
  overflow: hidden;
}

.category-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,36,60,0.92) 0%, rgba(29,36,60,0.65) 50%, rgba(29,36,60,0.3) 100%);
}

.category-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 3.5vw, 3rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .category-banner-title {
    font-size: clamp(0.75rem, 4.5vw, 2rem);
    padding: 1.5rem 0;
  }
}

@media (max-width: 575px) {
  .category-banner-title {
    font-size: clamp(0.65rem, 4vw, 1.5rem);
    padding: 1rem 0;
  }
}

/* ===== CONTAINER WIDTH OVERRIDE ===== */
@media (min-width: 992px) {
  .container {
    max-width: 1550px;
  }
}

/* ===== HEADER FLEX ROW ===== */
.header-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0.75rem var(--site-gutter);
}

.header-logo {
  flex-shrink: 0;
}

.header-search {
  flex: 1;
  width: 100%;
}

.header-search .form-control {
  border-radius: 999px !important;
}

.header-actions {
  flex-shrink: 0;
}

.header-actions > .d-flex,
header .col-lg-3 .d-flex.justify-content-end {
  gap: 1.35rem !important;
}

.header-actions .nav-link,
header .col-lg-3 .nav-link,
.country-selector {
  color: white !important;
  font-size: 1.08rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  padding: 0.35rem 0 !important;
}

.header-actions .nav-link:hover,
header .col-lg-3 .nav-link:hover,
.country-selector:hover {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
}

.header-actions .icon-3,
header .col-lg-3 .icon-3 {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.header-actions .icon-3 svg,
header .col-lg-3 .icon-3 svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header-actions a.position-relative,
header .col-lg-3 a.position-relative {
  min-width: 1.9rem;
  justify-content: center;
}

.header-actions .cart-badge,
header .col-lg-3 .cart-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.5rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  background-color: white;
  color: #1D243C;
  font-size: 0.78rem;
  font-weight: 700;
}

.country-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.belgium-flag {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.belgium-flag span {
  flex: 1;
}

.belgium-flag span:nth-child(1) {
  background: #101010;
}

.belgium-flag span:nth-child(2) {
  background: #ffd90c;
}

.belgium-flag span:nth-child(3) {
  background: #ef233c;
}

/* ===== SUBCATEGORY PILLS ===== */
.subcategory-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  color: #1D243C;
  border: 1px solid #1D243C;
  border-radius: 5.6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.subcategory-pill:hover {
  background-color: #1D243C;
  color: white;
}

/* ===== LOGIN PROMPT ===== */
.btn-outline-primary {
  background-color: transparent;
  color: #1D243C;
  border: 1px solid #1D243C;
  border-radius: 5.6px;
  font-weight: 400;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.btn-outline-primary:hover {
  background-color: #1D243C;
  color: white;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-image-wrapper {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-detail-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.product-detail-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1D243C;
}

.product-detail-old-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
}

.product-specs .table td {
  padding: 0.5rem 0;
}

.product-specs .table td:first-child {
  width: 120px;
}

.add-to-cart-btn {
  border-radius: 5.6px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.75rem 2rem;
}

/* ===== TOAST ===== */
.toast-container {
  z-index: 1060;
}

#cartToast {
  background-color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
}

#cartToast .toast-header {
  background-color: #1D243C;
  color: white;
  border-radius: 12px 12px 0 0;
}

#cartToast .btn-close {
  filter: invert(1);
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(29,36,60,0.92) 0%, rgba(29,36,60,0.75) 50%, rgba(29,36,60,0.55) 100%);
  z-index: 1;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  border-radius: 8px !important;
}

.contact-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: none;
}

.contact-form-card .form-select option {
  background-color: #1D243C;
  color: white;
}

@media (max-width: 767px) {
  .contact-hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* ===== BESTSELLER CAROUSEL ===== */
#bestsellerCarousel .carousel-control-prev,
#bestsellerCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #1D243C;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#bestsellerCarousel .carousel-control-prev {
  left: -20px;
}

#bestsellerCarousel .carousel-control-next {
  right: -20px;
}

#bestsellerCarousel .carousel-control-prev-icon,
#bestsellerCarousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  #bestsellerCarousel .carousel-control-prev {
    left: 0;
  }
  #bestsellerCarousel .carousel-control-next {
    right: 0;
  }
}

/* ===== HAMBURGER MENU (Mobile Overlay) ===== */

/* Hamburger button - hidden on desktop, visible on mobile */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
  transition: border-color 0.3s;
}
.hamburger-btn:hover {
  border-color: rgba(255,255,255,0.7);
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D243C;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* Mobile menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mobile-menu-close:hover {
  opacity: 1;
}

/* Mobile menu search */
.mobile-menu-search {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-search-input {
  background-color: rgba(255,255,255,0.1) !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 999px !important;
  padding-left: 2.5rem !important;
}
.mobile-search-input::placeholder {
  color: rgba(255,255,255,0.6) !important;
}
.mobile-search-input:focus {
  background-color: transparent !important;
  border-color: rgba(255,255,255,0.5) !important;
  box-shadow: none !important;
}

/* Mobile menu nav */
.mobile-menu-nav {
  flex: 1;
  padding: 0.5rem 0;
}
.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: white !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.mobile-menu-link:hover {
  background: rgba(255,255,255,0.05);
  color: white !important;
}
.mobile-menu-link svg {
  transition: transform 0.3s;
}
.mobile-menu-link.sub-open svg {
  transform: rotate(45deg);
}

/* Mobile sub-menu */
.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.15);
}
.mobile-sub-menu.open {
  max-height: 500px;
}
.mobile-sub-link {
  display: block;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.mobile-sub-link:hover {
  background: rgba(255,255,255,0.05);
  color: white !important;
}

/* Mobile menu actions (login/cart) */
.mobile-menu-actions {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}
.mobile-menu-action-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.mobile-menu-action-link:hover {
  background: rgba(255,255,255,0.08);
  color: white !important;
}
.mobile-menu-action-link:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* ===== Mobile Header & Hamburger (all pages) ===== */
@media (max-width: 991px) {
  .hamburger-btn {
    display: flex;
    order: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .header-flex-row {
    position: relative;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--site-gutter);
    gap: 4px !important;
  }

  /* Mobile header order: hamburger | logo | country-selector */
  .header-logo {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .header-logo a {
    display: flex;
    justify-content: center;
  }

  .header-logo .hamburger-btn {
    display: none; /* hamburger is now outside logo div */
  }

  .header-search {
    display: none;
  }

  .header-actions {
    order: 2;
    flex-shrink: 0;
  }

  .header-actions .nav-item.dropdown {
    display: none;
  }

  .header-actions a.position-relative .icon-3 {
    display: none;
  }

  .header-actions .cart-badge {
    display: none;
  }

  /* Show only country-selector in header-actions on mobile */
  .header-actions > .d-flex {
    gap: 0 !important;
  }

  .country-selector {
    font-size: 0 !important;
  }

  .country-selector > span:last-child {
    display: none;
  }

  .belgium-flag {
    width: 2rem !important;
    height: 2rem !important;
  }

  .nav-bar-bottom {
    display: none;
  }

  /* Map section tablet */
  .map-section {
    min-height: 350px !important;
  }

  .map-section .map-content {
    padding: 2rem 1rem;
    max-width: 100%;
  }

  .map-section .map-content h2 {
    font-size: 1.5rem;
  }

  .map-section .map-content p {
    font-size: 0.875rem;
  }

  .map-section .map-overlay {
    background: linear-gradient(90deg, rgba(29,36,60,0.92) 0%, rgba(29,36,60,0.85) 100%);
  }

  /* Footer bottom bar centering on mobile */
  .footer-bottom .row > [class*="col-"] {
    text-align: center !important;
  }

  .footer-bottom .row > [class*="col-"] .d-flex {
    justify-content: center !important;
  }

  .footer-bottom .nav {
    justify-content: center !important;
  }

  /* Feature blocks spacing */
  .feature-block {
    gap: 1rem;
  }

  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Carousel mobile sizing */
  #bestsellerCarousel .carousel-control-prev,
  #bestsellerCarousel .carousel-control-next {
    width: 32px;
    height: 32px;
  }

  #bestsellerCarousel .carousel-control-prev {
    left: -8px;
  }

  #bestsellerCarousel .carousel-control-next {
    right: -8px;
  }

  /* Product grid items mobile */
  .product-grid-item {
    padding: 20px 12px 16px;
  }

  .product-image-wrapper {
    padding: 1.5rem 1rem;
  }

  .product-name {
    font-size: 0.78rem;
  }
}

/* ===== FOOTER BOTTOM BAR — iPad Pro / small desktop (992px–1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-bottom-bar .footer-bottom-links {
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .footer-bottom-bar .footer-bottom-links a {
    font-size: 0.72rem;
  }
  .footer-bottom-bar p {
    font-size: 0.72rem;
  }
  .footer-bottom-bar .footer-bottom-social {
    gap: 0.6rem;
  }
  .footer-bottom-bar .footer-bottom-social a {
    width: 28px;
    height: 28px;
  }
  .footer-bottom-bar .footer-bottom-social a svg {
    width: 12px;
    height: 12px;
  }
}

/* ===== FOOTER TABLET FIX (768px–991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
  .footer-main {
    padding: 3rem 0 2rem;
  }
  .footer-main .row .col-md-6 {
    margin-bottom: 2rem;
  }
  .footer-main .row .col-md-6:last-child {
    margin-bottom: 0;
  }
  .footer-main .footer-logo {
    width: 160px;
    margin-bottom: 0.75rem;
  }
  .footer-main .footer-tagline {
    max-width: 100%;
    font-size: 0.8rem;
  }
  .footer-main .footer-heading {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .footer-main .footer-links a {
    font-size: 0.82rem;
  }
  .footer-main .footer-contact-item {
    font-size: 0.82rem;
    gap: 0.5rem;
  }
  .footer-main .footer-supported img {
    width: 150px;
  }
  /* Bottom bar: stack line-by-line on tablet */
  .footer-bottom-bar {
    padding: 1rem 0;
  }
  .footer-bottom-bar .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 0.5rem;
  }
  .footer-bottom-bar .row > div:last-child {
    margin-bottom: 0;
  }
  .footer-bottom-bar .footer-bottom-links {
    justify-content: center !important;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-bottom-bar .footer-bottom-social {
    justify-content: center !important;
  }
  .footer-bottom-bar p {
    margin-bottom: 0;
  }
}

/* ===== ENHANCED RESPONSIVE — INDEX PAGE ===== */

/* --- Small tablets / large phones (max-width: 767px) --- */
@media (max-width: 767px) {
  .poster-section .poster-content .dw-h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  .poster-section .poster-content .dw-paragraph {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .section-padding .row.align-items-center .col-lg-4 {
    text-align: center;
    margin-bottom: 2rem;
  }
  .section-padding .row.align-items-center .col-lg-4 .dw-h2 {
    font-size: 1.75rem;
  }
  .accordion-custom .accordion-button {
    font-size: 0.9rem;
    gap: 0.5rem;
    padding-right: 2rem;
    white-space: normal;
    word-break: break-word;
  }
  .accordion-custom .accordion-button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .accordion-custom .accordion-body {
    padding-left: 1rem;
  }
  .feature-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.75rem;
  }
  .feature-icon {
    width: 3rem;
    height: 3rem;
  }
  .promo-banner .promo-content {
    padding: 2rem 1.5rem;
  }
  .promo-banner .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .brand-showcase-intro h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  .brand-showcase-intro p {
    font-size: 0.95rem;
    text-align: center;
  }
  .footer-bottom-bar .row > div {
    text-align: center !important;
  }
  .footer-bottom-bar .footer-bottom-social {
    justify-content: center !important;
  }
  .footer-bottom-bar .footer-bottom-links {
    justify-content: center !important;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-bottom-bar p {
    margin-bottom: 0.5rem;
  }
  #bestsellerCarousel .carousel-control-prev {
    left: -4px;
  }
  #bestsellerCarousel .carousel-control-next {
    right: -4px;
  }
}

/* --- Extra small phones (max-width: 575px) --- */
@media (max-width: 575px) {
  .poster-section .poster-content .dw-h2 {
    font-size: 1.5rem;
  }
  .poster-section .poster-content .dw-paragraph {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .poster-section .poster-content .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .section-padding .row.align-items-center .col-lg-4 .dw-h2 {
    font-size: 1.5rem;
  }
  .section-padding .row.align-items-center .col-lg-4 .dw-paragraph {
    font-size: 0.9rem;
  }
  .map-section .map-content h2 {
    font-size: 1.35rem;
  }
  .map-section .map-content p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .map-section .map-content .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .accordion-custom .accordion-button {
    font-size: 0.85rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .promo-banner .promo-content {
    min-height: 320px;
    padding: 1.5rem 1rem;
  }
  .promo-banner h2 {
    font-size: 1.55rem;
  }
  .promo-banner p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .brand-showcase-intro h2 {
    font-size: 1.8rem;
  }
  .brand-showcase-intro p {
    font-size: 0.9rem;
  }
  .brand-logo {
    max-width: 200px;
  }
  .feature-block .dw-h6 {
    font-size: 0.85rem;
  }
  .feature-block .dw-paragraph-0 {
    font-size: 0.9rem;
  }
  .product-grid-item {
    padding: 16px 8px 12px;
  }
  .product-image-wrapper {
    padding: 1rem 0.5rem;
  }
  .product-name {
    font-size: 0.8rem;
  }
  .footer-bottom-bar .footer-bottom-links {
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-bottom-bar .footer-bottom-links a {
    font-size: 0.8rem;
  }
}

/* --- Very small phones (max-width: 375px) --- */
@media (max-width: 375px) {
  :root {
    --site-gutter: 1rem;
  }
  .header-logo img {
    width: 100px !important;
  }
  .poster-section {
    min-height: 220px;
  }
  .poster-section .poster-content .dw-h2 {
    font-size: 1.35rem;
  }
  .poster-section .poster-content .dw-paragraph {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .poster-section .poster-content .btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
  }
  .map-section .map-content h2 {
    font-size: 1.2rem;
  }
  .map-section .map-content p {
    font-size: 0.85rem;
  }
  .accordion-custom .accordion-button {
    font-size: 0.8rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .accordion-custom .accordion-button svg {
    width: 12px;
    height: 12px;
  }
  .promo-banner .promo-content {
    min-height: 280px;
    padding: 1.25rem 0.75rem;
  }
  .promo-banner h2 {
    font-size: 1.4rem;
  }
  .promo-banner p {
    font-size: 0.85rem;
  }
  .brand-showcase-intro h2 {
    font-size: 1.6rem;
  }
  .brand-logo {
    max-width: 160px;
  }
  .feature-icon {
    width: 2rem;
    height: 2rem;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .feature-block .dw-h6 {
    font-size: 0.8rem;
  }
  .feature-block .dw-paragraph-0 {
    font-size: 0.82rem;
  }
  .footer-main .footer-logo {
    max-width: 140px;
  }
  .footer-bottom-bar p {
    font-size: 0.78rem;
  }
  .product-name {
    font-size: 0.8rem;
  }
  .product-grid-item {
    padding: 12px 6px 10px;
  }
}

/* --- Touch target enhancement --- */
@media (max-width: 991px) and (pointer: coarse) {
  .accordion-custom .accordion-button {
    min-height: 44px;
  }
  .poster-section .btn,
  .promo-banner .btn,
  .map-section .btn {
    min-height: auto;
    min-width: 44px;
  }
  .footer-main .footer-social a {
    width: 44px;
    height: 44px;
  }
  .footer-bottom-bar .footer-bottom-social a {
    width: 40px;
    height: 40px;
  }
  .mobile-menu-link {
    min-height: 48px;
  }
  .mobile-sub-link {
    min-height: 44px;
  }
}
