/* ============================================
   INDUSTRY LANDING PAGE STYLES (Clean, Integrated Design)
   Gebaseerd op brand_clean.css maar aangepast voor industrie pagina's
   ============================================ */

/* Global Industry Page Settings */
main[data-industry] {
  background-color: white;
}

/* Prevent font-size conflicts with global header styles */
main[data-industry] .top-nav a {
  font-size: inherit !important;
}

.section-clean {
  padding: var(--space-16) 0;
  position: relative;
}

.section-white {
  background-color: white;
}

.section-gray {
  background-color: #F9FAFB;
}

/* Typography Overrides */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================================
   HERO SECTION
   ============================================ */
.industry-hero-clean {
  background: white;
  padding: var(--space-8) 0;
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.industry-hero-content {
  padding-right: var(--space-8);
}

.industry-hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  height: 400px;
}

.industry-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.industry-hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.industry-breadcrumbs {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

.industry-breadcrumbs a {
  color: var(--color-gray-500);
  text-decoration: none;
}

.industry-breadcrumbs a:hover {
  color: var(--color-primary);
}

.industry-title-large {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.industry-description {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-gray-600);
  max-width: 540px;
}

.industry-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.industry-hero-icon {
  width: 120px;
  height: 120px;
  color: var(--color-primary);
  opacity: 0.8;
}

@media (max-width: 992px) {
  .industry-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .industry-hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .industry-description {
    margin: 0 auto;
  }
  
  .industry-breadcrumbs {
    justify-content: center;
    display: flex;
  }
  
  .industry-hero-image-wrapper {
    height: 300px;
  }
  
  .industry-hero-icon-wrapper {
    display: none;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.brand-cta-banner,
.industry-cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-16) 0;
  margin: var(--space-8) 0;
}

.brand-cta-content,
.industry-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.brand-cta-text-wrapper,
.industry-cta-text {
  flex: 1;
}

.brand-cta-banner-title,
.industry-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.brand-cta-banner-subtitle,
.industry-cta-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.brand-cta-button-wrapper,
.industry-cta-button {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .brand-cta-content,
  .industry-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   MODEL SELECTOR SECTION (Tonnage Cards)
   ============================================ */
.model-selector-section {
  padding: var(--space-16) 0;
  background: white;
}

.model-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.model-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.model-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.model-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.model-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: var(--space-6);
}

.model-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.model-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.model-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.model-btn.active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   TONNAGE FILTER SECTION
   ============================================ */
.tonnage-filter-section {
  padding: var(--space-16) 0;
}

.tonnage-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.tonnage-filter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.tonnage-filter-clear {
  background: white;
  border: 1px solid var(--color-gray-200);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tonnage-filter-clear:hover {
  border-color: #dc2626; /* Rood voor 'wissen' actie */
  color: #dc2626;
  background: #FEF2F2;
}

.tonnage-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.tonnage-filter {
  position: relative;
}

.tonnage-filter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tonnage-filter label {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 16px 20px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  height: 100%;
}

.tonnage-filter label:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.tonnage-filter input:checked + label {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tonnage-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-gray-300);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  background: white;
}

.tonnage-filter input:checked + label .tonnage-checkbox {
  background: white;
  border-color: white;
}

.tonnage-filter input:checked + label .tonnage-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.tonnage-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tonnage-range {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.tonnage-count {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.tonnage-filter input:checked + label .tonnage-range,
.tonnage-filter input:checked + label .tonnage-count {
  color: white;
}

/* ============================================
   BUCKET TYPE FILTER SECTION
   ============================================ */
.bucket-type-filter-section {
  padding: var(--space-8) 0;
  background: white;
  border-bottom: 1px solid var(--color-gray-100);
}

.bucket-type-filter-header {
  margin-bottom: var(--space-6);
  text-align: center;
}

.bucket-type-filter-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bucket-type-filter-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.bucket-type-filter {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.bucket-type-filter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bucket-type-filter label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-gray-700);
  user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  transition: all 0.2s ease;
}

.bucket-type-filter label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gray-300);
  border-radius: 50%;
  background: white;
  transition: all 0.2s ease;
}

.bucket-type-filter label::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: transform 0.2s ease;
}

.bucket-type-filter:hover label::before {
  border-color: var(--color-primary);
}

.bucket-type-filter input:checked + label::before {
  border-color: var(--color-primary);
  border-width: 2px;
}

.bucket-type-filter input:checked + label::after {
  transform: translateY(-50%) scale(1);
}

.bucket-type-filter input:checked + label {
  color: var(--color-gray-900);
  font-weight: 600;
}

.bucket-type-filter input:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(35, 103, 115, 0.2);
  outline: none;
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.category-tabs-section {
  padding: var(--space-8) 0;
  background: white;
}

.category-tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 2px solid var(--color-gray-100);
}

.category-tab {
  padding: var(--space-4) var(--space-6);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  bottom: -2px;
}

.category-tab:hover {
  color: var(--color-primary);
}

.category-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.category-tab-count {
  display: inline-block;
  margin-left: var(--space-2);
  padding: 2px 8px;
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.category-tab.active .category-tab-count {
  background: var(--color-primary);
  color: white;
}

@media (max-width: 768px) {
  .category-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .category-tab {
    white-space: nowrap;
  }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.industry-products-section {
  padding: 0 0 var(--space-16) 0; /* No top padding - connects directly to filters */
  background: white;
}

.category-intro {
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.category-intro-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.category-intro-text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-600);
}

.industry-products-header {
  margin-bottom: var(--space-8);
}

.industry-products-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.industry-products-count {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
}

.industry-products-list,
.industry-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
  .industry-products-list,
  .industry-products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .industry-products-list,
  .industry-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .industry-products-list,
  .industry-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PRODUCT CARDS (Clean Design - Matching Homepage)
   ============================================ */
.industry-products-grid .product-card,
.industry-products-list .product-card {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  transform: none !important;
  border-radius: 0;
}

.industry-products-grid .product-card:hover,
.industry-products-list .product-card:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.industry-products-grid .product-card-image-wrapper,
.industry-products-list .product-card-image-wrapper {
  height: 180px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 20px;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
}

.industry-products-grid .product-card-image-wrapper img,
.industry-products-list .product-card-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.2));
}

.industry-products-grid .product-card-image-wrapper:hover img,
.industry-products-list .product-card-image-wrapper:hover img {
  transform: scale(1.05);
  filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.3));
}

.industry-products-grid .product-card-divider,
.industry-products-list .product-card-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
  margin-bottom: 16px;
}

.industry-products-grid .product-card-content,
.industry-products-list .product-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.industry-products-grid .product-card-category,
.industry-products-list .product-card-category {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.industry-products-grid .product-card-title,
.industry-products-list .product-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.industry-products-grid .product-card-title a,
.industry-products-list .product-card-title a {
  color: var(--color-gray-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

.industry-products-grid .product-card-title a:hover,
.industry-products-list .product-card-title a:hover {
  color: var(--color-primary);
}

.industry-products-grid .product-card-description,
.industry-products-list .product-card-description {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.industry-products-grid .product-card-actions,
.industry-products-list .product-card-actions {
  margin-top: auto;
  display: flex;
  gap: var(--space-2);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.industry-benefits {
  padding: var(--space-16) 0;
  background: var(--color-gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.benefit-card {
  text-align: center;
  padding: var(--space-6);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
  stroke-width: 1.5;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  white-space: nowrap;
}

.benefit-text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-600);
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
.industry-seo-content {
  padding: var(--space-16) 0;
  background: white;
}

.industry-seo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
}

.industry-seo-main h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.industry-seo-main h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.industry-seo-main p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

.industry-seo-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.industry-contact-card,
.industry-related-card {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
}

.industry-contact-card h4,
.industry-related-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.industry-contact-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

.industry-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.industry-contact-info a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.industry-contact-info a:hover {
  color: var(--color-primary-dark);
}

.industry-related-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.industry-related-links a {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.industry-related-links a:hover {
  background: white;
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .industry-seo-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA SECTION (Footer)
   ============================================ */
.industry-cta-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cta-text {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .tonnage-filter-grid {
    grid-template-columns: 1fr;
  }
  
  .bucket-type-filter-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .industry-products-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA BOX (About Section Style)
   ============================================ */
.cta-box {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Add extra bottom padding for industry pages */
.industry-page .cta-box,
.cta-box {
  margin-bottom: calc(var(--space-16) + var(--space-12));
}


.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  color: white;
  font-size: var(--text-4xl);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-box .btn-split {
  color: var(--color-primary);
  display: inline-flex;
  margin-top: var(--space-4);
}

.cta-box .btn-split:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cta-box {
    padding: var(--space-10);
  }
}

@media (max-width: 768px) {
  .cta-box {
    padding: var(--space-6) var(--space-4);
  }
}

/* ============================================
   PRODUCT CARDS (Identiek aan homepage/brand)
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Clean Product Card Design */
.product-card.clean-card {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  transform: none !important;
  border-radius: 0;
}

.product-card.clean-card:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.products-grid .product-card-image {
  height: 180px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 12px;
  background: transparent;
  border-radius: 0;
}

.products-grid .product-card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.2));
}

.products-grid .product-card-image:hover img {
  transform: scale(1.05);
  filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.3));
}

.products-grid .product-card-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
  margin-bottom: 16px;
}

.products-grid .product-card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.products-grid .product-header {
  margin-bottom: 8px;
}

.products-grid .product-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.products-grid .product-card-title a {
  color: var(--color-gray-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

.products-grid .product-card-title a:hover {
  color: var(--color-primary);
}

.products-grid .product-card-specs {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-bottom: 12px;
}

.products-grid .product-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.products-grid .product-price-label {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  font-weight: 500;
  padding: 8px 0;
}

.products-grid .product-price-row {
  padding: 8px 0;
}

.products-grid .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.products-grid .product-vat {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  font-weight: 400;
}

.products-grid .stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.products-grid .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.products-grid .status-in-stock .status-dot { background-color: #22c55e; }
.products-grid .status-low-stock .status-dot { background-color: #f59e0b; }
.products-grid .status-out-stock .status-dot { background-color: #9ca3af; }

.products-grid .status-in-stock { color: #22c55e; }
.products-grid .status-low-stock { color: #f59e0b; }
.products-grid .status-out-stock { color: #6b7280; }

/* ============================================
   CATEGORIE DOORLINK SECTIE - TYPOGRAFIE STIJL
   Clean, zonder afbeeldingen
   ============================================ */
.brand-categories-section {
  padding: var(--space-16) 0 var(--space-12);
  margin-top: var(--space-8);
}

.brand-categories-section .section-title {
  text-align: center;
  margin-bottom: var(--space-3);
  color: var(--color-gray-900);
}

.brand-categories-section .section-subtitle {
  text-align: center;
  color: var(--color-gray-500);
  font-size: 1rem;
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.brand-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .brand-category-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

/* Category Link Card - No Image */
.cat-link-card {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  background: white;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
  transition: all 0.25s ease;
  position: relative;
}

.cat-link-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px -4px rgba(35, 103, 115, 0.12);
  transform: translateY(-2px);
}

.cat-link-card-body {
  flex: 1;
  min-width: 0;
}

.cat-link-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}

.cat-link-card-tags {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin: 0;
}

.cat-link-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0.4;
  transition: all 0.25s ease;
  margin-left: var(--space-4);
}

.cat-link-card:hover .cat-link-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   EXPERT BOX
   ============================================ */
.expert-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.expert-avatar {
  width: 56px;
  height: 56px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expert-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-info strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

.expert-info span {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.expert-text {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.expert-phone,
.expert-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  color: #236773;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.expert-phone:hover,
.expert-email:hover {
  background: #236773;
  color: white;
}

.expert-phone svg,
.expert-email svg {
  flex-shrink: 0;
}
