/** Shopify CDN: Minification failed

Line 213:1 Expected "}" to go with "{"

**/
/* =============================================
   bijLEF Footer Styles
   Import in Shopify: Assets > bijlef-footer.css
   Usage: {{ 'bijlef-footer.css' | asset_url | stylesheet_tag }}
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- Footer wrapper --- */
.bijlef-footer {
  background-color:#47060a;
  color: #f2c4c4;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  padding: 60px 80px 0;
}

/* --- Top grid (brand + 3 columns) --- */
.bijlef-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* --- Logo / Brand --- */
.bijlef-footer__logo {
  margin-bottom: 20px;
  line-height: 1;
}

.bijlef-footer__logo-bij {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #f2c4c4;
  display: block;
  margin-bottom: -4px;
}

.bijlef-footer__logo-lef {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 700;
  color: #f2c4c4;
  letter-spacing: -1px;
  line-height: 1;
}

.bijlef-footer__logo-dot {
  color: #f2c4c4;
}

/* --- Tagline --- */
.bijlef-footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: #c49090;
  max-width: 280px;
  margin-bottom: 24px;
}

/* --- Social buttons --- */
.bijlef-footer__socials {
  display: flex;
  gap: 10px;
}

.bijlef-footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #7a3a3a;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f2c4c4;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bijlef-footer__social-btn:hover {
  border-color: #f2c4c4;
  background: rgba(242, 196, 196, 0.08);
}

.bijlef-footer__social-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #f2c4c4;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Column headings --- */
.bijlef-footer__col-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #f2c4c4;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

/* --- Nav links --- */
.bijlef-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bijlef-footer__nav a {
  text-decoration: none;
  font-size: 13.5px;
  color: #c49090;
  display: inline-block;
  transition: color 0.2s ease;
}

.bijlef-footer__nav a:hover {
  color: #f2c4c4;
}

/* --- Divider --- */
.bijlef-footer__divider {
  border: none;
  border-top: 1px solid #5a2020;
  margin: 0;
}

/* --- Bottom bar --- */
.bijlef-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 12.5px;
  color: #8a4a4a;
}

.bijlef-footer__bottom-made {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bijlef-footer__bottom-heart {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #c49090;
}

/* --- Responsive: tablet --- */
@media (max-width: 900px) {
  .bijlef-footer {
    padding: 40px 40px 0;
  }

  .bijlef-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bijlef-footer__brand {
    grid-column: 1 / -1;
  }
}

/* --- Responsive: mobile --- */
@media (max-width: 560px) {
  .bijlef-footer {
    padding: 32px 24px 0;
  }

  .bijlef-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bijlef-footer__logo-lef {
    font-size: 48px;
  }

  .bijlef-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
 /* Shop hier knop kleur */
.button--secondary {
  background-color: #F7F1E8 !important;
  color: #47060a !important;
  border-color: #F7F1E8 !important;
}

.button--secondary:hover {
  background-color: #e8e2d8 !important;
  border-color: #e8e2d8 !important;
  color: #47060a !important;
}