/* ============================================
   BRAND LANDING PAGE STYLES (Clean, Integrated Design)
   ============================================ */

/* Link Arrow Button - Global Styling */
.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  transition: gap 0.2s ease;
  line-height: 1;
}

.btn-link-arrow:hover {
  gap: 12px;
}

.btn-link-arrow svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  display: block;
}

.btn-link-arrow:hover svg {
  transform: translateX(4px);
}

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

/* Hide spinners after 5 seconds as fallback if JS fails */
main[data-brand] .loading,
main[data-brand] .spinner {
  animation: fadeOutSpinner 0.5s ease-out 5s forwards;
}

@keyframes fadeOutSpinner {
  to {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

/* Products fallback styling */
.products-fallback {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.products-fallback p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-600);
}

/* Products Grid Layout (same as home page featured products) */
.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);
  }
}

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

/* Clean Product Card Design - Identiek aan homepage */
.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; }

/* View All Products Button */
.view-all-products-wrapper {
  margin-top: var(--space-8);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid #e0e0e0;
}

.view-all-products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

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

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


/* Brand products section spacing */
.section-gray.brand-products-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.brand-products-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-featured.brand-products-section {
  padding: var(--space-12) 0;
}

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

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

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

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

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

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

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

.brand-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;
}

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

.brand-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;
}

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  line-height: 1.6;
}

.model-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.model-card {
  background: white;
  border-radius: 16px; /* Zachtere corners */
  padding: var(--space-8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02); /* Zeer subtiele shadow */
  border: 1px solid rgba(0,0,0,0.03); /* Bijna onzichtbare border */
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered content */
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.model-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary); /* Structon Petrol */
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
}

.model-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: var(--space-8);
  font-weight: 500;
  text-align: center;
  background: #F3F4F6;
  padding: 4px 12px;
  border-radius: 9999px;
  display: inline-block;
}

.model-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.model-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px; /* Slightly rounded */
  color: var(--color-gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 90px;
  cursor: pointer;
}

.model-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.model-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

@media (max-width: 992px) {
  .model-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .model-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CATEGORY FILTER BAR
   ============================================ */
.category-bar-wrapper {
  background: white;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
  z-index: 90;
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.category-pill {
  padding: var(--space-2) var(--space-5);
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  color: var(--color-gray-700);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.category-pill:hover {
  background: var(--color-gray-200);
}

.category-pill.active {
  background: var(--color-primary-dark); /* #1a4f59 - Donkerder petrol */
  color: white;
}

.pill-count {
  background: rgba(0,0,0,0.1);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-size: 11px;
}

.category-pill.active .pill-count {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-container {
  margin: 0 auto;
  padding: 2rem;
}

.category-description-box {
  background: white;
  border: 1px solid var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.category-description-title {
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.category-description-text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  margin: 0;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Empty State */
.no-results {
  text-align: center;
  padding: var(--space-16) 0;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-gray-300);
}

.no-results-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-400);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.no-results-text {
  color: var(--color-gray-500);
}

.btn-clear-filters {
  margin-top: var(--space-4);
  background: none;
  border: 1px solid var(--color-gray-300);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-gray-600);
}

.btn-clear-filters:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

/* ============================================
   SEO / INFO GRID
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.info-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  /* border: 1px solid var(--color-gray-100); - Removed border for cleaner look */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Lichte shadow */
}

.info-title {
  font-size: var(--text-md);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--color-gray-900);
}

.info-content {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.6;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.info-table th {
  text-align: left;
  padding: var(--space-2);
  border-bottom: 2px solid var(--color-gray-100);
  color: var(--color-gray-900);
}

.info-table td {
  padding: var(--space-2);
  border-bottom: 1px solid var(--color-gray-50);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
  position: relative;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

/* ============================================
   CTA BANNER (After Hero)
   ============================================ */
.brand-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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

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

.brand-cta-banner-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 {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

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

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.brand-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;
}

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

/* ============================================
   SEO CONTENT (2-Column Layout with Sidebar)
   ============================================ */
.brand-seo-content {
  padding: var(--space-16) 0;
  background: white;
}

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

.brand-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;
}

.brand-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;
}

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

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

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

.brand-contact-card h4,
.brand-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;
}

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

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

.brand-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);
}

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

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

.brand-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);
}

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

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

/* ============================================
   CTA FOOTER (Gradient)
   ============================================ */
.brand-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-16) 0;
  text-align: center;
  color: white;
}

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

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

.btn-white {
  background: white;
  color: var(--color-primary-dark);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: transform 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================================
   CTA SECTION (Matching About Page)
   ============================================ */
.about-section {
  padding: var(--space-16) 0 var(--space-16) 0;
}

.cta-box {
  background: var(--color-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}

.cta-title {
  color: white;
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cta-text {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xl);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

/* ============================================
   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;
  transform: translateY(-2px);
}

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

/* ============================================
   BRAND LINKS (Other Brands Section)
   ============================================ */
.brand-links-small {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.brand-links-small a {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.brand-links-small a:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

/* ============================================
   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);
}

