/* Productkaart details en knop (consistent voor alle categorieën) */
.product-info {
  margin-bottom: 8px;
}
.product-title {
  font-size: 1.13em;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
}
.product-specs {
  font-size: 0.98em;
  color: #666;
  margin-bottom: 4px;
}
.product-btn {
  margin-top: 8px;
  background: linear-gradient(90deg, #d4af37 60%, #1b1b1b 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
  transition: background .18s, transform .18s;
}
.product-btn:hover {
  background: linear-gradient(90deg, #1b1b1b 40%, #d4af37 100%);
  transform: scale(1.04);
}
/* Luxe productkaart stijl */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.product-image {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11,23,35,0.08);
  border: 1.5px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: box-shadow .18s, transform .18s;
  overflow: hidden;
}
.product-image:hover {
  box-shadow: 0 24px 48px rgba(212,175,55,0.13), 0 0 0 4px rgba(212,175,55,0.10);
  transform: translateY(-6px) scale(1.03);
  border-color: var(--color-gold, #d4af37);
}
.product-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px 0 12px;
}
.product-media img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(16,24,40,0.08);
}
.product-footer {
  background: #faf9f6;
  border-top: 1px solid #ececec;
  border-radius: 0 0 18px 18px;
  padding: 12px 16px 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  color: #222;
  font-weight: 600;
  margin-bottom: 2px;
}
.tax {
  display: block;
  font-size: 0.92em;
  color: #666;
  font-weight: 400;
  margin-top: 2px;
}
/* Fade-in mist effect */
.fade-mist {
  opacity: 0;
  transform: translateY(40px) scale(1.02);
  filter: blur(12px);
  transition: opacity 1.6s cubic-bezier(.22,1,.36,1), filter 1.6s cubic-bezier(.22,1,.36,1), transform 1.6s cubic-bezier(.22,1,.36,1);
}
.fade-mist.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* --- Originele strakke, interactieve, luxe CSS --- */

@keyframes goldStripe {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100vw) rotate(25deg);
  }
}

@keyframes parallaxFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0px); /* Removed floating effect */
  }
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gold: #d4af37;
  --color-emerald: #2ecc71;
  --color-charcoal: #222c36;
  --muted: #6b7280;
  --card: #000;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(2,6,23,0.18);
  --gap: 18px;
  --font: 'Segoe UI', 'Arial', sans-serif;
}

body {
  background: var(--color-black);
  color: #fff;
  font-family: var(--font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 140, 20, 0.3) 35%,
    rgba(180, 140, 20, 0.4) 50%,
    rgba(180, 140, 20, 0.3) 65%,
    transparent 100%
  );
  filter: blur(15px);
  animation: goldStripe 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero {
  background: #111;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: parallaxFloat 5s ease-in-out infinite;
  color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.18);
  margin-top: 24px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 100;
  animation: parallaxFloat 4s ease-in-out infinite;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand h1 {
  font-size: 1.5em;
  color: #000;
  margin: 0;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(212,175,55,0.12);
  background: white;
}

.nav {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 101;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s, transform .12s;
}

.nav a:hover {
  color: #fff;
  background: var(--color-gold);
  box-shadow: 0 6px 18px rgba(212,175,55,0.12);
  transform: translateY(-2px);
}

.nav a:focus {
  outline: 3px solid rgba(212,175,55,0.18);
  outline-offset: 3px;
}

/* Dropdown menu styling */
.dropdown {
  position: relative;
  z-index: 101;
}

.drop-toggle {
  cursor: pointer;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: none;
  border: none;
  transition: background .18s, color .18s, transform .12s;
  display: inline-block;
  vertical-align: middle;
}

.drop-toggle:hover, .drop-toggle:focus {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(212,175,55,0.12);
  outline: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.18);
  min-width: 180px;
  z-index: 102;
  margin-top: 0;
  padding: 4px 0;
  pointer-events: auto;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background .18s, color .18s;
  position: relative;
  z-index: 103;
  pointer-events: auto;
  cursor: pointer;
}

.dropdown-menu a:hover {
  background: var(--color-gold);
  color: #000;
}

/* --- Hero --- */
.hero {
  background: #111;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: parallaxFloat 5s ease-in-out infinite;
  color: #fff;
}
.hero h2 {
  margin: 0;
  font-size: 28px;
  color: #fff;
}
.hero p {
  margin: 0;
  color: #bbb;
  font-size: 15px;
}

/* --- Category grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.category-card {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(11,23,35,0.06);
  border: 1px solid rgba(16,24,40,0.04);
  transition: transform .18s cubic-bezier(.4,1.4,.6,1), box-shadow .18s cubic-bezier(.4,1.4,.6,1), border-color .18s;
  will-change: transform, box-shadow;
  cursor: pointer;
  animation: parallaxFloat 6s ease-in-out infinite;
  background: #1a1a1a;
}
.category-card:hover, .category-card:focus {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 24px 48px rgba(212,175,55,0.13), 0 0 0 4px rgba(212,175,55,0.10);
  border-color: var(--color-gold);
  z-index: 2;
}
.category-card:active {
  transform: translateY(-2px) scale(0.98);
}
.category-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(4px) brightness(0.6);
  transform: scale(1.04);
}
.category-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 18px;
}
.category-overlay h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

/* --- Responsive --- */
@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 12px;
  }
  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
}


/* ===== FOOTER STYLING ===== */

.prolift-footer {
    background-color: #fff;
    color: #000;
    padding: 40px 20px 20px 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    animation: parallaxFloat 7s ease-in-out infinite;
}

.footer-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.prolift-footer h3 {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-contact {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color .18s;
    margin: 0 4px;
}

.footer-links a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #444;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Service Table Styling */
.service-table-section {
    margin: 32px 0;
}

.service-table-section h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2,6,23,0.18);
    margin-bottom: 24px;
}

.service-table thead {
    background: linear-gradient(90deg, #d4af37 0%, #1b1b1b 100%);
    color: #fff;
}

.service-table th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.service-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background .18s;
}

.service-table tbody tr:last-child {
    border-bottom: none;
}

.service-table tbody tr:hover {
    background: #faf9f6;
}

.service-table td {
    padding: 14px 18px;
    color: #222;
    font-size: 14px;
    line-height: 1.6;
}

.service-table td strong {
    color: #1b1b1b;
    font-weight: 700;
}

.service-info {
    margin-top: 32px;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
}

.service-info h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.service-info p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color .18s;
}

.service-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive table */
@media (max-width: 768px) {
    .service-table {
        font-size: 13px;
    }
    
    .service-table th,
    .service-table td {
        padding: 10px 12px;
    }
    
    .service-table th:first-child,
    .service-table td:first-child {
        min-width: 120px;
    }
}

/* About Us Video Styling */
.about-video-section {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background: #111;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.18);
    position: relative;
    overflow: hidden;
}

.about-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    display: block;
    background: #000;
    box-shadow: 0 4px 20px rgba(212,175,55,0.15);
    object-fit: contain;
}

.about-video::-webkit-media-controls-panel {
    background-color: rgba(27, 27, 27, 0.8);
}

.about-content {
    margin-top: 32px;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
}

.about-content p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-content a {
    color: #d4af37;
    text-decoration: none;
    transition: color .18s;
}

.about-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Override for back-home-link button in about-content */
.about-content .back-home-link {
    display: inline-block;
    background: linear-gradient(90deg, #d4af37 60%, #1b1b1b 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212,175,55,0.3);
    transition: background .18s, transform .18s;
    margin-top: 8px;
}

.about-content .back-home-link:hover {
    background: linear-gradient(90deg, #1b1b1b 40%, #d4af37 100%) !important;
    transform: scale(1.04);
    color: #fff !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .video-wrapper {
        padding: 12px;
    }
    
    .about-video-section {
        margin: 24px 0;
    }
}

/* Contact Page Styling */
.contact-info {
    margin-top: 24px;
}

.contact-info p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.contact-details {
    margin: 32px 0;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
}

.contact-details h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-details p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-details strong {
    color: #d4af37;
    font-weight: 600;
}

.contact-details a {
    color: #d4af37;
    text-decoration: none;
    transition: color .18s;
}

.contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-message {
    margin: 32px 0;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
}

.contact-message h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-message p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-map {
    margin: 32px 0;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
}

.contact-map h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212,175,55,0.15);
    position: relative;
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    pointer-events: none;
}

.map-link:hover .map-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.map-click-text {
    color: #fff;
    background: rgba(27, 27, 27, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s;
    border: 2px solid #d4af37;
    pointer-events: none;
}

.map-link:hover .map-click-text {
    opacity: 1;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Back to Home Link Styling */
.product-meta a[href*="index.html"],
.back-home-link {
    display: inline-block;
    background: linear-gradient(90deg, #d4af37 60%, #1b1b1b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212,175,55,0.08);
    transition: background .18s, transform .18s;
    margin-top: 8px;
}

.product-meta a[href*="index.html"]:hover,
.back-home-link:hover {
    background: linear-gradient(90deg, #1b1b1b 40%, #d4af37 100%);
    transform: scale(1.04);
    color: #fff;
    text-decoration: none;
}

/* Legal Content Styling */
.legal-content {
    margin: 32px 0;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    color: #fff;
    line-height: 1.7;
}

.legal-content h2 {
    color: #fff;
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #d4af37;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: #bbb;
    margin-bottom: 16px;
}

.legal-content ul {
    color: #bbb;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #d4af37;
    text-decoration: none;
    transition: color .18s;
}

.legal-content a:hover {
    color: #fff;
    text-decoration: underline;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}


