/* Global Responsive Padding */
@media (max-width: 1250px) {
  html {
    font-size: 90%;
  }

  .header__menu {
    gap: 2rem;
  }

  .offerte-form__recaptcha {
    top: 34rem;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 80%;
  }

  .action-banner {
    padding: 0.25rem 0;
    width: 70%;
    right: 0;
    top: calc(100% + 0.5rem);
  }

  .action-banner__text {
    font-size: 0.85rem;
    gap: 0;
  }

  .header {
    padding: 0.5rem 0.2rem 0.5rem 3rem;
    top: 0; /* Terug naar originele positie */
  }

  .header__container {
    padding: 0 0.5rem 0 1.5rem;
    gap: 6rem;
  }

  .header__menu {
    gap: 6rem;
  }

  .header__dropdown {
    min-width: 250px;
  }

  /* Cart Page Responsive - alleen voor mobile */
  @media (max-width: 768px) {
    /* Mobile cart layout: producten eerst, dan samenvatting */
    .cart-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      display: flex;
      flex-direction: column;
    }

    /* Producten bovenaan op mobiel */
    .cart-items {
      order: 1;
    }

    /* Samenvatting onder producten */
    .cart-summary {
      order: 2;
      position: static;
      padding: 1.5rem;
    }

    /* Verberg bovenste checkout knop op mobiel */
    #checkout-form-top {
      display: none !important;
    }

    /* Verberg afbeeldingen op mobiel */
    .cart-item__image {
      display: none !important;
    }

    /* Header zonder afbeelding kolom */
    .cart-header {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      padding: 0.75rem;
      font-size: 0.9rem;
    }

    .cart-header__article {
      grid-column: 1;
    }

    /* Cart item zonder afbeelding kolom */
    .cart-item {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      padding: 0.75rem;
    }

    .cart-item__info-grid {
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 12px;
    }

    .cart-item__info-label {
      font-size: 0.8rem;
      color: #999;
      margin-bottom: 4px;
    }

    .cart-item__product-link {
      font-size: 1rem;
    }

    .cart-item__price {
      font-size: 1rem;
    }

    .cart-item__quantity {
      min-width: 60px;
      text-align: center;
    }

    .cart-item__quantity input {
      width: 50px;
      padding: 0.4rem;
      font-size: 0.8rem;
    }

    .cart-item__size {
      min-width: 60px;
      font-size: 0.8rem;
      text-align: center;
    }

    .cart-item__subtotal {
      font-size: 1.1rem;
      min-width: 70px;
      text-align: center;
    }

    .cart-item__remove {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }

    /* Mobiele styling voor bewerkbare cart secties - Horizontale layout */
    .cart-item__hang-sluitwerk-info,
    .cart-item__sluiting-container,
    .cart-item__palen-info {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: rgba(207, 188, 156, 0.08);
      border-radius: 8px;
      border-left: 3px solid #cfbc9c;
      margin: 8px 0;
    }

    /* Titel (links) */
    .cart-item__hang-sluitwerk-label,
    .cart-item__palen-label {
      font-weight: 600;
      color: #fff;
      font-size: 0.9rem;
      margin: 0;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Optie naam (midden) */
    .cart-item__hang-sluitwerk-name,
    .cart-item__palen-name {
      color: #cfbc9c;
      font-size: 0.9rem;
      font-weight: 500;
      flex: 1;
      margin: 0;
    }

    /* Prijs (rechts van optie) */
    .cart-item__hang-sluitwerk-price,
    .cart-item__palen-price {
      color: #cfbc9c;
      font-weight: 600;
      font-size: 0.85rem;
      margin: 0;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Quantity styling */
    .cart-item__palen-quantity {
      color: #bbb;
      font-size: 0.8rem;
      font-weight: 500;
      margin-left: 4px;
    }

    /* Edit knop styling - helemaal rechts */
    .cart-item__edit-btn {
      background: rgba(207, 188, 156, 0.2);
      border: 1px solid rgba(207, 188, 156, 0.4);
      border-radius: 6px;
      padding: 6px;
      color: #cfbc9c;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .cart-item__edit-btn:hover {
      background: rgba(207, 188, 156, 0.3);
      border-color: #cfbc9c;
    }

    .cart-item__edit-btn svg {
      width: 14px;
      height: 14px;
    }

    /* Sluiting notice styling op mobiel */
    .cart-item__sluiting-notice-content {
      font-size: 0.8rem;
      padding: 8px 12px;
      margin-top: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      border-left: 3px solid #cfbc9c;
      color: #ddd;
    }

    /* Palen quantity input styling op mobiel */
    .palen-quantity {
      margin-left: 0;
      margin-top: 8px;
      width: 100%;
    }

    .palen-quantity .edit-input {
      width: 80px;
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(207, 188, 156, 0.3);
      color: #fff;
      border-radius: 6px;
      padding: 6px 8px;
    }

    /* Edit formulieren op mobiel */
    .edit-form {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      border: 1px solid rgba(207, 188, 156, 0.2);
    }

    .edit-select,
    .edit-input {
      width: 100%;
      min-width: auto;
      font-size: 0.9rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(207, 188, 156, 0.3);
      color: #fff;
      border-radius: 6px;
      padding: 10px 12px;
    }

    .edit-select:focus,
    .edit-input:focus {
      outline: none;
      border-color: #cfbc9c;
      box-shadow: 0 0 0 2px rgba(207, 188, 156, 0.2);
    }

    .edit-submit {
      width: 100%;
      padding: 12px 16px;
      font-size: 0.9rem;
      background: #cfbc9c;
      color: #111;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .edit-submit:hover {
      background: #b8a68a;
      transform: translateY(-1px);
    }

    .cart-item__edit-form {
      margin-top: 12px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      border: 1px solid rgba(207, 188, 156, 0.2);
    }

    /* Cart summary mobile styling */
    .cart-summary__delivery {
      padding: 1rem;
    }

    .cart-summary__delivery h4 {
      font-size: 1.1rem;
    }

    .cart-summary__delivery-option {
      font-size: 0.9rem;
      gap: 0.5rem;
      padding: 0.5rem;
    }

    .cart-summary__delivery-radio {
      width: 16px;
      height: 16px;
    }

    .cart-summary__delivery-info i {
      font-size: 1rem;
    }

    .cart-summary__delivery-tooltip {
      width: 180px;
      padding: 0.4rem;
      font-size: 0.7rem;
      right: 0;
      left: auto;
      max-width: calc(100vw - 40px);
    }

    .cart-summary__delivery-tooltip::after {
      right: 10px;
      top: -6px;
    }

    .delivery-info-tooltip {
      width: 180px;
      padding: 0.4rem;
      font-size: 0.7rem;
      right: 0;
      left: auto;
      max-width: calc(100vw - 40px);
    }

    .delivery-info-tooltip::after {
      left: 10px;
      transform: none;
      top: -6px;
    }

    .cart-summary__poles-tooltip::after,
    .cart-summary__poles-protection-tooltip::after {
      right: 10px;
      top: -6px;
    }

    .cart-summary__delivery-warning {
      font-size: 0.8rem;
      padding: 0.75rem;
    }

    .cart-summary__poles {
      padding: 1rem;
    }

    .cart-summary__poles h4 {
      font-size: 1.1rem;
    }

    .cart-summary__poles-label {
      font-size: 0.9rem;
      gap: 0.5rem;
      padding: 0.5rem;
    }

    .cart-summary__poles-checkbox {
      width: 16px;
      height: 16px;
    }

    .cart-summary__poles-info i {
      font-size: 1rem;
    }

    .cart-summary__poles-tooltip {
      width: 180px;
      padding: 0.4rem;
      font-size: 0.7rem;
      right: 0;
      left: auto;
      max-width: calc(100vw - 40px);
    }

    .cart-summary__poles-preview {
      width: 160px;
      height: 120px;
    }

    .cart-summary__poles-quantity {
      padding: 0.75rem;
    }

    .cart-summary__poles-quantity-label {
      font-size: 0.9rem;
      gap: 0.75rem;
    }

    .cart-summary__poles-quantity-input {
      width: 70px;
      font-size: 0.9rem;
    }

    .cart-summary__poles-advice {
      font-size: 0.8rem;
    }

    .cart-summary__poles-subtotal {
      font-size: 1rem;
    }
  }

  .remove-button svg {
    width: 1rem;
    height: 1rem;
  }

  .products,
  .process,
  .offerte-section,
  .about-content,
  .about-values,
  .footer {
    padding: 3rem;
  }

  .header__menu {
    gap: 4rem;
  }

  .hero__grid {
    gap: 15rem;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .product-card__image-container {
    height: 280px;
  }

  .product-card__title {
    font-size: 1rem;
    padding: 1rem 1rem 0.75rem;
  }

  .product-card__image-container {
    height: 200px;
  }

  .product-card__footer {
    padding: 0.75rem 1rem;
  }

  .product-card__price {
    font-size: 0.9rem;
  }

  .product-card__arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .process__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }

  .process-card__image-container {
    width: 15rem;
    height: 15rem;
  }

  .process-card__text {
    max-width: 90%;
  }

  .process-card__text h3 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .process-card__text p {
    text-align: left;
    font-size: 1rem;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-content h2 {
    font-size: 1.75rem;
  }

  .about-hero::before {
    width: 70%;
  }

  .about-hero__text {
    max-width: 35rem;
  }

  .about-content__container {
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    gap: 3rem;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 70%;
  }

  .offerte-form__recaptcha {
    top: 35rem;
  }

  .g-recaptcha {
    transform: scale(0.8);
  }

  /* Voeg deze nieuwe stijlen toe voor het header logo */
  .header__logo-container {
    width: 100px;
    height: 100px;
  }

  .hero__grid {
    gap: 10rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 65%;
  }

  .action-banner {
    padding: 0.2rem 0;
    width: 80%;
    right: 0;
    top: calc(100% + 0.5rem);
  }

  .action-banner__text {
    font-size: 0.75rem;
    /* CSS animatie verwijderd - JavaScript zorgt voor perfecte oneindige loop */
  }

  .header {
    padding: 0.5rem 0.2rem 0.5rem 2rem;
    top: 0; /* Terug naar originele positie */
  }

  .header__container {
    padding: 0 0.3rem 0 1rem;
    gap: 3rem;
  }

  .header__social {
    gap: 0.8rem;
  }

  .header__actions {
    gap: 0.5rem;
  }

  .header__social-link,
  .header__cart-icon {
    font-size: 1.1rem;
    padding: 0.4rem;
  }

  .cart-count {
    width: 14px;
    height: 14px;
    font-size: 0.6rem;
    top: -5px;
    right: -5px;
  }

  .products,
  .process,
  .about-content,
  .footer {
    padding: 2rem;
  }

  .about-values,
  .offerte-section {
    padding: 2rem 2rem 6rem 2rem;
  }
  .product-section {
    padding: 6rem 2rem 6rem 2rem;
  }

  .hero {
    width: 100vw;
    height: 65vw; /* Verhoogd van 56.25vw naar 65vw voor meer zichtbare afbeelding */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: var(--color-brown-light);
    position: relative;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .hero__slideshow {
    height: 100%;
  }

  .hero__slideshow .hero__slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: opacity 0.8s ease-in-out !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: flex !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
  }

  .hero__slideshow .hero__slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
  }

  .hero__slide-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  .hero__slide-overlay {
    padding: 0.75rem 1rem;
  }

  .hero__slide-title {
    font-size: 0.9rem;
  }

  .hero__dots {
    bottom: 1rem;
  }

  @media (max-width: 480px) {
    .hero__dots {
      bottom: 0.5rem;
      gap: 0.25rem;
    }

    .hero__dot {
      width: 8px;
      height: 8px;
    }
  }

  .hero__logo {
    top: 4rem;
  }

  .hero__grid {
    gap: 2rem;
    padding: 1rem;

    align-items: center;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__title-background-color {
    padding: 1rem 1rem;
  }

  .hero__content {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
  }

  .header__nav {
    background-color: rgba(146, 156, 166, 0.97);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .header__dropdown {
    display: none;
  }

  /* Uitschakelen van hover effecten op mobiel voor Assortiment dropdown */
  .header__menu-item--dropdown:hover .header__dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .cart-item__image img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .product-actions {
    flex-direction: column;
    align-items: center;
  }

  .add-to-cart-btn,
  .product-cta {
    width: 100%;
    max-width: 300px;
  }

  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail__gallery {
    position: relative;
  }

  .product-detail__gallery .gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .product-detail__gallery .gallery-prev {
    left: 0.5rem;
  }

  .product-detail__gallery .gallery-next {
    right: 0.5rem;
  }

  .product-detail__gallery .gallery-nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  @media (max-width: 480px) {
    .product-detail__gallery .gallery-nav {
      width: 2rem;
      height: 2rem;
    }

    .product-detail__gallery .gallery-prev {
      left: 0.25rem;
    }

    .product-detail__gallery .gallery-next {
      right: 0.25rem;
    }

    .product-detail__gallery .gallery-nav svg {
      width: 1rem;
      height: 1rem;
    }
  }

  .product-detail__thumbnails {
    justify-content: center;
  }

  .product-related__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .variation-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  /* Variation toggle button responsive */
  .variation-price-container {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .variation-toggle-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .variation-toggle-icon {
    width: 1rem;
    height: 1rem;
  }

  .variation-toggle-arrow {
    width: 0.875rem;
    height: 0.875rem;
  }

  .variation-btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .spec-value {
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .header__logo-container {
    top: calc(100% + 1.2rem);
  }
  /* Stijl voor de mobiele menu social icons */
  .header__nav-social {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .header__nav-social .header__social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .header__nav-social .header__social-link:hover {
    color: #cfbc9c;
  }

  /* Winkelwagen styling in mobiele menu */
  .header__nav-social .header__cart-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .header__nav-social .header__cart-icon:hover {
    color: #cfbc9c;
  }

  .header__nav-social .cart-count {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    top: -6px;
    right: -6px;
  }

  /* Dropdown toggle button */
  .header__dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header__dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }

  .header__dropdown-arrow {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s ease;
  }

  .header__dropdown-toggle.active .header__dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Producten menu item styling */
  .header__menu li:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Mobiele dropdown stijlen */
  .header__mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0 2rem 0;
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__mobile-dropdown-item {
    display: block;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header__mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }

  .header__mobile-dropdown-content h4 {
    color: #734e38;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }

  .header__mobile-dropdown-content p {
    color: #fff;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
  }

  .header__nav-cta {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }

  .header__menu-toggle {
    display: block;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .product-section h1 {
    font-size: 2rem;
  }

  .product-content p {
    font-size: 1rem;
  }

  .gallery-nav {
    width: 2rem;
    height: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .about-hero {
    height: auto;
    min-height: 60vh;
    padding: 4rem 0;
  }

  .about-hero__text {
    max-width: 25rem;
  }

  .about-content__container,
  .about-founder__container {
    flex-direction: column;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile Menu Styles */
  .header__menu-toggle {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .header__nav {
    background-color: rgba(146, 156, 166, 0.97);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .header__menu {
    flex-direction: column;
    gap: 2rem;
  }

  .header__menu a {
    font-size: 1.8rem;
  }

  /* Nav Open State */
  .header.nav-open .header__nav {
    transform: translateX(0);
  }

  .header.nav-open .header__close-icon {
    display: block;
  }

  .header.nav-open .header__menu-icon {
    display: none;
  }

  /* Verberg action banner wanneer mobiele navigatie open is */
  .header.nav-open .action-banner {
    display: none !important;
  }

  /* Verplaats de products description */
  .products {
    display: flex;
    flex-direction: column;
  }

  .products__title {
    order: -1; /* Titel komt als eerste */
  }

  .products__description {
    order: 0; /* Beschrijving komt na de titel */
    margin: 0 auto 3rem;
    max-width: 600px;
  }

  .products__grid {
    order: 1; /* Grid met producten komt als laatste */
  }

  .process__grid {
    grid-template-columns: 1fr;

    margin: 0 auto;
    gap: 3rem;
  }

  .process__header {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem 1rem;
  }

  .process__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  .process__call-button {
    transform: translateX(-50%);
  }

  .process-card__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .process-card__image-container {
    width: 25rem;
    height: 25rem;
    flex-shrink: 0;
  }

  .process-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .process-card__text h3 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .process-card__text p {
    text-align: left;
    font-size: 0.95rem;
  }

  .process__values {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .process__title {
    font-size: 2rem;
    margin: 0;
  }

  .process__call-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .process__grid {
    grid-template-columns: 1fr;

    margin: 0 auto;
    gap: 2rem;
  }

  .process-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-card__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .process-card__image-container {
    flex-shrink: 0;
  }

  .process-card__text {
    flex: 1;
  }

  .process__values {
    margin-top: 3rem;
  }

  .process-card__text h3 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .process-card__text p {
    text-align: left;
    font-size: 0.95rem;
  }

  .header__logo-container {
    width: 100px;
    height: 100px;
  }

  .footer__social {
    margin-left: 0;
  }
  .offerte-form__recaptcha {
    top: 36rem;
  }
  .g-recaptcha {
    transform: scale(0.8);
  }

  .products__hide {
    opacity: 0;
    transform: translateY(50px); /* Beginpositie: 50px naar beneden */
    transition: opacity 3s ease-in-out, transform 3s ease-in-out; /* Animatie bij laden */
  }

  .products__fade-in {
    opacity: 1;
    transform: translateY(0); /* Eindpositie: Geen vertaling */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Snellere transitie bij scrollen/swipen */
  }

  /* Mobile variation modal styling - zelfde als maatwerk modal (alleen variation modal aanpassen) */
  .modal-hang-sluitwerk-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-hang-sluitwerk-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
    flex: none;
    gap: 0.5rem;
  }

  .modal-hang-sluitwerk-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
  }

  .modal-hang-sluitwerk-image-tooltip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }

  .modal-hang-sluitwerk-name {
    margin-bottom: 0;
    text-align: left;
  }

  .modal-hang-sluitwerk-price {
    text-align: right;
    font-weight: bold;
  }

  .modal-hang-sluitwerk-info {
    position: static;
    margin-left: 0.5rem;
  }

  /* Mobile palen prijs styling - gebruik alleen HTML + (alleen variation modal) */
  .modal-variation-details .modal-palen-price {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    color: var(--color-brown-medium) !important;
    font-weight: bold !important;
  }

  /* Mobile advies styling (alleen variation modal) */
  .modal-palen-advice::before {
    content: "Advies";
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .modal-palen-advice p {
    font-size: 0.8rem;
    margin-top: 0;
  }
}

@media (max-width: 668px) {
  html {
    font-size: 65%;
  }
  .hero__content {
    margin-left: 0;
  }

  .hero__title {
    font-size: 1.2rem;
    max-width: 20rem;
  }
}
@media (max-width: 568px) {
  html {
    font-size: 65%;
  }

  .hero__cta-button {
    margin-top: 1rem;
  }

  .about-hero__text {
    max-width: 20rem;
  }

  .about-hero h1 {
    margin-top: 4rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 62%;
  }

  .action-banner {
    padding: 0.15rem 0;
    width: 90%;
    right: 0;
    top: calc(100% + 1.5rem);
  }

  .action-banner__text {
    font-size: 0.65rem;
    /* CSS animatie verwijderd - JavaScript zorgt voor perfecte oneindige loop */
  }

  .header {
    padding: 0.5rem 0.1rem 0.5rem 1rem;
    top: 0; /* Terug naar originele positie */
  }

  .header__container {
    padding: 0 0.2rem 0 0.5rem;
    gap: 1.5rem;
  }

  .header__menu {
    gap: 1.2rem;
  }

  .header__social {
    gap: 0.6rem;
  }

  .header__social-link,
  .header__cart-icon {
    font-size: 1.6rem;
    padding: 0.3rem;
  }

  .header__cta-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .cart-count {
    width: 6px;
    height: 20px;
    font-size: 1rem;
    top: -12px;
    right: -9px;
  }

  .header,
  .products,
  .process,
  .about-content,
  .footer {
    padding: 1.5rem;
  }

  .about-values,
  .offerte-section {
    padding: 1.5rem 1.5rem 5rem 1.5rem;
  }

  /* Voeg deze nieuwe stijlen toe voor het header logo */
  .header__logo-container {
    top: calc(100% + 0.5rem);
    width: 80px;
    height: 80px;
  }

  /* Mobiele dropdown aanpassingen voor kleinere schermen */
  .header__mobile-dropdown {
    max-width: 250px;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .header__mobile-dropdown-item {
    padding: 0.5rem;
  }

  .header__mobile-dropdown-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .header__mobile-dropdown-content p {
    font-size: 0.7rem;
  }

  .header__nav-social {
    gap: 1.5rem;
  }

  .header__nav-social .header__social-link {
    font-size: 2rem;
  }

  /* Winkelwagen styling voor kleinere schermen */
  .header__nav-social .header__cart-icon {
    font-size: 2rem;
  }

  .header__nav-social .cart-count {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
    top: -5px;
    right: -5px;
  }

  /* Dropdown toggle aanpassingen voor kleinere schermen */
  .header__dropdown-toggle {
    padding: 0.4rem;
    margin-left: 0.3rem;
  }

  .header__dropdown-arrow {
    width: 1rem;
    height: 1rem;
  }

  .header__cta-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }

  /* .hero {
    background-image: url("../img/p3/p1.webp");
  } */

  /* Verwijderd: vaste background-image voor hero op mobiel - slideshow moet werken */

  .products {
    padding-top: 4rem;
  }

  .hero__title {
    font-size: 1.2rem;
  }
  .hero__grid {
    gap: 0.5rem;
  }
  .hero__title-background-color {
    padding: 0.5rem 1.5rem;
  }

  .header__logo-container {
    top: calc(100% + 1.7rem);
  }

  .products__title {
    font-size: 2rem;
  }

  .product-section h1 {
    font-size: 1.75rem;
  }

  .product-content h2 {
    font-size: 1.5rem;
  }

  .about-hero h1,
  .about-content__text h2,
  .about-founder__text h2 {
    font-size: 1.75rem;
  }

  .about-hero__text p,
  .about-content__text p,
  .about-founder__text p {
    font-size: 1rem;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }

  .process__title {
    font-size: 1.75rem;
  }

  .process-card__image-container {
    width: 14rem;
    height: 14rem;
    margin-bottom: 1rem;
  }

  .process-card__text {
    width: 100%;
  }

  .process-card__text h3 {
    text-align: center;
  }

  .process-card__text p {
    text-align: center;
    font-size: 0.9rem;
  }

  .process-card__content {
    flex-direction: column;
    align-items: center;
  }

  .process-card__image-container {
    width: 14rem;
    height: 14rem;
    margin-bottom: 1rem;
  }

  .process-card__text {
    width: 100%;
  }

  .process-card__text h3 {
    text-align: center;
  }

  .process-card__text p {
    text-align: center;
    font-size: 0.9rem;
  }

  .process-card__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .process-card__image-container {
    width: 15rem;
    height: 15rem;
    flex-shrink: 0;
  }

  .process-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .process-card__text h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .process-card__text p {
    text-align: left;
    font-size: 0.9rem;
  }

  .process__call-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;

    margin-top: 2rem;
  }

  .header__logo-container {
    width: 80px;
    height: 80px;
  }

  /* .hero {
    height: 100%;
    padding: 6rem 0 2rem;
  }

  .hero {
    aspect-ratio: 16/9;
  } */

  .about-hero__text {
    max-width: 16rem;
  }

  .about-hero h1 {
    margin-top: 8rem;
  }

  /* Product page mobile verder verfijnen voor 480px */
  .product-detail__header {
    padding-top: 3rem; /* Nog meer padding top voor zeer kleine schermen */
    margin-bottom: 1.5rem;
  }

  .product-detail__header h1 {
    font-size: 1.75rem;
  }

  .product-detail__header .product-detail__price {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }

  .product-detail__main-row {
    gap: 0.75rem;
  }

  .product-detail__image-text-container {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .product-detail__description {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 400px) {
  .hero__logo {
    top: 6rem;
  }

  .header__cta-button {
    padding: 0.6rem 0.6rem;

    font-size: 0.7rem;
  }
}

@media (max-width: 370px) {
  html {
    font-size: 58%;
  }

  .header__cta-button {
    padding: 0.6rem 0.6rem;

    font-size: 0.7rem;
  }

  /* Dropdown toggle aanpassingen voor zeer kleine schermen */
  .header__dropdown-toggle {
    padding: 0.3rem;
    margin-left: 0.2rem;
  }

  .header__dropdown-arrow {
    width: 0.9rem;
    height: 0.9rem;
  }

  /* Mobiele dropdown aanpassingen voor zeer kleine schermen */
  .header__mobile-dropdown {
    max-width: 200px;
    gap: 0.4rem;
    padding: 0.5rem;
  }

  .header__mobile-dropdown-item {
    padding: 0.4rem;
  }

  .header__mobile-dropdown-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
  }

  .header__mobile-dropdown-content p {
    font-size: 0.6rem;
  }

  .header__nav-social {
    gap: 1rem;
  }

  .header__nav-social .header__social-link {
    font-size: 1.1rem;
  }

  /* Winkelwagen styling voor zeer kleine schermen */
  .header__nav-social .header__cart-icon {
    font-size: 1.1rem;
  }

  .header__nav-social .cart-count {
    width: 14px;
    height: 14px;
    font-size: 0.6rem;
    top: -4px;
    right: -4px;
  }

  /* Dropdown toggle aanpassingen voor zeer kleine schermen */
  .header__dropdown-toggle {
    padding: 0.3rem;
    margin-left: 0.2rem;
  }

  .header__dropdown-arrow {
    width: 0.9rem;
    height: 0.9rem;
  }

  .header__cta-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }

  /* .hero {
    height: 100%;
    padding: 6rem 0 2rem;
  }

  .hero {
    aspect-ratio: 16/9;
  } */

  .about-hero__text {
    max-width: 16rem;
  }

  .about-hero h1 {
    margin-top: 8rem;
  }
}

@media (max-width: 346px) {
  html {
    font-size: 55%;
  }

  .about-hero__text {
    max-width: 14rem;
  }

  .about-hero h1 {
    margin-top: 4rem;
  }
}

/* =============================================================================
   DESKTOP STYLES - Hide mobile elements
   ============================================================================= */

@media (min-width: 769px) {
  /* Hide mobile elements on desktop */
  .filters-close {
    display: block !important;
  }

  /* Search and filter row layout */
  .search-filter-row {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .search-container {
    flex: 1;
  }

  .filter-toggle {
    flex-shrink: 0;
    min-width: 160px;
    background: var(--color-brown-light);
    border: 2px solid var(--color-brown-accent);
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-brown-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .filter-toggle:hover {
    background: var(--color-brown-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .filter-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  /* Filter toggle icons */
  .filter-toggle .filter-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .filter-toggle .filter-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  /* Show/hide arrows based on screen size */
  .filter-arrow-mobile {
    display: none;
  }

  .filter-arrow-desktop {
    display: block;
  }

  /* Desktop filter styles - Sidebar from left */
  .producten-layout {
    display: flex;
    position: relative;
  }

  .producten-main {
    flex: 1;
    transition: margin-left 0.4s ease;
  }

  .producten-filters {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 380px;
    background: var(--color-grey);
    border-right: 3px solid var(--color-brown-accent);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
  }

  .producten-filters.filters-visible {
    transform: translateX(0);
  }

  body.filters-open .producten-main {
    margin-left: 380px;
  }

  .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--color-brown-accent);
    background: var(--color-grey);
    position: sticky;
    top: 0;
    z-index: 1001;
    flex-shrink: 0;
  }

  .filters-header h3 {
    color: var(--color-brown-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }

  .filters-close {
    display: block;
    background: var(--color-brown-accent);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filters-close:hover {
    background: var(--color-brown-dark);
    transform: rotate(90deg);
  }

  .filters-close svg {
    width: 20px;
    height: 20px;
  }

  .filters-content {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: none;
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }

  /* Overlay voor achtergrond */
  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .filter-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  /* Active filters styling */
  .producten-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .results-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .active-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: var(--color-brown-light);
    border: 1px solid var(--color-brown-accent);
    border-radius: 8px;
  }

  .active-filters-label {
    font-weight: 600;
    color: var(--color-brown-dark);
    font-size: 14px;
  }

  .active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
  }

  .active-filter-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-brown-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
  }

  .active-filter-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }

  .active-filter-remove:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .active-filter-remove svg {
    width: 14px;
    height: 14px;
  }

  .clear-all-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-brown-dark);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .clear-all-filters:hover {
    background: #8b4513;
    transform: translateY(-1px);
  }

  .clear-all-filters svg {
    width: 16px;
    height: 16px;
  }
}

/* =============================================================================
   PRODUCTEN PAGINA RESPONSIVE
   ============================================================================= */

@media (max-width: 768px) {
  /* Prevent background scrolling when mobile filter is open */
  body.mobile-filter-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .producten-page {
    margin-top: 100px;
  }

  .producten-hero {
    padding: 3rem 0;
  }

  .producten-hero h1 {
    font-size: 2.5rem;
  }

  .producten-hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .producten-list {
    padding: 2rem 0;
  }

  .producten-container {
    padding: 0 1rem;
    gap: 3rem;
  }

  /* Responsive layout for producten page */
  .producten-layout {
    flex-direction: column;
    gap: 0;
  }

  .producten-main {
    order: 1;
    width: 100%;
  }

  .producten-filters {
    order: 2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    height: 100vh;
    overflow: hidden;
  }

  .producten-filters.filters-visible {
    transform: translateY(0);
  }

  .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    border-bottom: 1px solid rgba(207, 188, 156, 0.3);
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001;
    flex-shrink: 0;
  }

  /* Mobile filters content - scrollable */
  .filters-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    height: 0; /* Force flexbox to respect overflow */
    min-height: 0; /* Allow shrinking */
  }

  /* Mobile search layout */
  .search-filter-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-brown-light);
    border: 2px solid var(--color-brown-accent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .search-container {
    flex: 1;
  }

  .filter-toggle:hover {
    background: var(--color-brown-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  /* Mobile filter toggle icons */
  .filter-toggle .filter-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .filter-toggle .filter-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  /* Show/hide arrows based on screen size */
  .filter-arrow-desktop {
    display: none;
  }

  .filter-arrow-mobile {
    display: block;
  }

  /* Mobile filters close button styling */
  .filters-close {
    display: block;
    background: var(--color-brown-accent);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filters-close:hover {
    background: var(--color-brown-dark);
    transform: rotate(90deg) scale(1.1);
  }

  .filters-close svg {
    width: 22px;
    height: 22px;
  }

  /* Mobile filters content - scrollable */
  .filters-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    height: 0; /* Force flexbox to respect overflow */
    min-height: 0; /* Allow shrinking */
  }

  /* Mobile active filters - override desktop styles for mobile layout */
  .producten-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
  }

  .results-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 12px;
    background: var(--color-brown-light);
    border: 1px solid var(--color-brown-accent);
    border-radius: 6px;
  }

  .active-filters-label {
    font-weight: 600;
    color: var(--color-brown-dark);
    font-size: 12px;
    white-space: nowrap;
  }

  .active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
  }

  .active-filter-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-brown-accent);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
  }

  .active-filter-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }

  .active-filter-remove:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .active-filter-remove svg {
    width: 12px;
    height: 12px;
  }

  .clear-all-filters {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-brown-dark);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .clear-all-filters:hover {
    background: #8b4513;
    transform: translateY(-1px);
  }

  .clear-all-filters svg {
    width: 12px;
    height: 12px;
  }

  /* Product grid responsive */
  .producten-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    max-width: none;
  }

  /* Product detail responsive */
  .product-page {
    padding-top: 4rem; /* Minder top padding voor mobiel */
  }

  .product-detail__header {
    margin-left: 0; /* Verwijder left margin op mobiel */
    padding-top: 4rem; /* Veel meer padding top voor de titel */
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-detail__header h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .product-detail__header .product-detail__price {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }

  .product-detail__main-row {
    display: flex !important; /* Overschrijf grid van style.css */
    flex-direction: column;
    gap: 1rem; /* Minder gap tussen elementen */
    grid-template-columns: none; /* Reset grid eigenschappen */
  }

  /* Gewenste volgorde: afbeelding → tekst → uitvoeringen → garanties → specificaties */
  .product-detail__image-text-container {
    order: 1; /* Afbeelding en tekst eerst */
    width: 100%;
  }

  .product-detail__variations {
    order: 2; /* Uitvoeringen tweede */
    width: 100%; /* Volle breedte op mobiel */
  }

  .product-detail__features {
    order: 3; /* Garanties derde */
    width: 100%;
  }

  .product-detail__specifications {
    order: 4; /* Specificaties laatste */
    width: 100%; /* Volle breedte op mobiel */
  }

  /* Modal is actief - alleen op mobiel */
  body.variation-active .product-detail__main-row {
    gap: 0.5rem !important; /* Verkleinde gap */
  }

  body.variation-active .product-detail__image-text-container {
    gap: 0.25rem !important; /* Minder ruimte tussen afbeelding en tekst */
    margin-bottom: 0.25rem !important;
  }

  .product-detail__image-text-container {
    flex-direction: column;
    gap: 0.75rem; /* Minder ruimte tussen afbeelding en tekst */
    margin-bottom: 1rem;
  }

  .product-detail__description {
    margin-bottom: 0.5rem; /* Minder ruimte na beschrijving */
  }

  .product-detail__gallery {
    margin-bottom: 0; /* Geen extra margin onder gallery */
  }

  /* Modal responsiveness */
  .modal-variation-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .modal-variation-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-variation-details {
    padding: 15px 10px;
  }

  /* Variation modal full width op mobiel */
  .variation-modal {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  .variation-modal__content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-height: 100vh !important;
    overflow-y: auto;
    transform: none !important;
    display: flex;
    flex-direction: column;
  }

  /* Sticky header voor variation modal op mobiel */
  .variation-modal__header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background-color: var(--color-grey) !important;
    padding: 1rem !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-shrink: 0;
  }

  /* Body content van variation modal */
  .variation-modal__body {
    flex: 1;
    padding: 1rem !important;
    overflow-y: auto;
  }

  /* Als er geen body wrapper is, padding voor directe content */
  .variation-modal__content > :not(.variation-modal__header) {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .variation-modal__content > :not(.variation-modal__header):first-of-type {
    padding-top: 1rem;
  }

  .variation-modal__content > :not(.variation-modal__header):last-of-type {
    padding-bottom: 1rem;
  }

  /* Maatwerk modal full width op mobiel */
  .maatwerk-modal {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .maatwerk-modal__content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
    max-height: 100vh !important;
    overflow-y: auto;
    border-radius: 0 !important;
  }

  .maatwerk-modal__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .maatwerk-modal__header-content {
    width: 100%;
  }

  .maatwerk-modal__inputs {
    flex-direction: column;
    gap: 20px;
  }

  .maatwerk-modal__input-group {
    width: 100%;
  }

  .product-gallery__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-gallery__cart-btn,
  .product-gallery__details-btn {
    padding: 0.6rem 1.2rem;
    min-width: 120px;
    font-size: 0.9rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .product-action-btn {
    padding: 0.6rem 1.2rem;
    min-width: 120px;
    font-size: 0.9rem;
  }

  .product-highlights {
    margin: 1rem 0;
    gap: 0.5rem;
  }

  .product-highlight {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .product-highlight svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .producten-hero {
    padding: 2rem 0;
  }

  .producten-hero h1 {
    font-size: 2rem;
  }

  .producten-hero p {
    font-size: 1rem;
  }

  .producten-list {
    padding: 1.5rem 0;
  }

  .producten-container {
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .product-gallery__actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .product-gallery__cart-btn,
  .product-gallery__details-btn {
    padding: 0.5rem 1rem;
    min-width: 100px;
    font-size: 0.85rem;
  }

  .product-action-btn {
    padding: 0.5rem 1rem;
    min-width: 100px;
    font-size: 0.85rem;
  }

  .product-highlight {
    font-size: 0.85rem;
  }

  .product-highlight svg {
    width: 16px;
    height: 16px;
  }
}

/* Cart-gerelateerde styling verplaatst naar mobiele media query */

/* Checkout Page Responsive Styles */
@media (max-width: 1024px) {
  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .checkout-container h1 {
    font-size: 2rem;
  }

  .checkout-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row--small {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }

  .checkout-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .checkout-back,
  .checkout-submit {
    width: 100%;
    text-align: center;
  }

  .delivery-option,
  .poles-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .delivery-info,
  .poles-info,
  .poles-image {
    margin-left: 0;
    align-self: flex-end;
  }

  .delivery-tooltip,
  .poles-tooltip {
    width: 250px;
  }

  .poles-preview {
    width: 150px;
    right: -25px;
  }
}

@media (max-width: 480px) {
  .checkout-container h1 {
    font-size: 1.75rem;
  }

  .checkout-form {
    padding: 1rem;
  }

  .checkout-summary {
    padding: 1.5rem;
  }

  .form-row--small {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .checkout-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .checkout-item__image {
    width: 100%;
    height: 120px;
  }

  .delivery-tooltip,
  .poles-tooltip {
    width: 200px;
  }

  .poles-preview {
    width: 120px;
    right: -50px;
  }
}

/* =============================================================================
   BUSINESS PAGINA RESPONSIVE
   ============================================================================= */

@media (max-width: 1024px) {
  .business-why__grid,
  .business-services__grid,
  .business-partners__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .business-hero h1 {
    font-size: 2.5rem;
  }

  .business-hero__text p {
    font-size: 1.1rem;
  }

  .business-why h2,
  .business-services h2,
  .business-partners h2,
  .business-process h2,
  .business-cta h2 {
    font-size: 2rem;
  }

  .business-process__step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .business-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .business-cta__button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .business-hero h1 {
    font-size: 2rem;
  }

  .business-hero__text p {
    font-size: 1rem;
  }

  .business-why h2,
  .business-services h2,
  .business-partners h2,
  .business-process h2,
  .business-cta h2 {
    font-size: 1.8rem;
  }

  .business-why__card,
  .business-services__card,
  .business-partners__card {
    padding: 1.5rem;
  }

  .business-process__step {
    padding: 1.5rem;
  }

  .business-cta__button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
