/** Shopify CDN: Minification failed

Line 30:0 All "@import" rules must come first

**/
/* ==========================================================================
   Modava Warszawa — clovedale.com 1-op-1 nagebouwd
   Design tokens exact overgenomen uit clovedale (Dawn 15.2):
     body Inter · page-width 1600px · alle radius 0 · knop #bf7f04
   Dit thema is een Impulse-variant, dus alle stijlen staan hier zelfstandig
   en leunen niet op Dawn-klassen.
   ========================================================================== */

:root {
  --mdv-page-width: 1600px;
  --mdv-page-gutter: 15px;
  --mdv-font-body: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mdv-font-heading: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Lucida, Helvetica, Arial, sans-serif;
  --mdv-fg: 0, 0, 0;
  --mdv-bg: 255, 255, 255;
  --mdv-button: 191, 127, 4;
  --mdv-button-text: 255, 255, 255;
  --mdv-bg-alt: 243, 243, 243;
  --mdv-announcement-bg: #c80000;
  --mdv-radius: 0px;
  --mdv-border-width: 1px;
}

/* Inter meeladen zoals clovedale dat doet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.mdv-section {
  font-family: var(--mdv-font-body);
  color: rgb(var(--mdv-fg));
  background: rgb(var(--mdv-bg));
}

.mdv-page-width {
  max-width: var(--mdv-page-width);
  margin: 0 auto;
  padding-left: var(--mdv-page-gutter);
  padding-right: var(--mdv-page-gutter);
}

.mdv-section h2,
.mdv-section h3 {
  font-family: var(--mdv-font-heading);
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.mdv-section h2 { font-size: 26px; line-height: 1.2; }
.mdv-section h3 { font-size: 22px; line-height: 1.2; }

@media screen and (max-width: 749px) {
  .mdv-section h2 { font-size: 21px; }
  .mdv-section h3 { font-size: 19px; padding: 0 12px; }
}

/* --------------------------------------------------------------- announcement */
.mdv-announcement {
  background: var(--mdv-announcement-bg);
  width: 100%;
  padding: 9px 20px;
}
.mdv-announcement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mdv-announcement__text {
  font-family: var(--mdv-font-body);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
.mdv-announcement__text strong { font-weight: 700; }

/* --------------------------------------------------------------------- hero */
.mdv-hero { position: relative; display: block; }
.mdv-hero__media { position: relative; overflow: hidden; }
.mdv-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mdv-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.mdv-hero__box { max-width: 660px; }
.mdv-hero__heading {
  font-family: var(--mdv-font-heading);
  color: #fff;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.45);
}
.mdv-hero__sub {
  color: #fff;
  font-size: 20px;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.45);
}
.mdv-hero__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
/* clovedale beperkt deze knoppen expliciet in breedte */
.mdv-hero__buttons .mdv-btn {
  padding: 8px 16px;
  flex: 1 1 auto;
  max-width: 140px;
  min-width: 100px;
}
@media screen and (max-width: 749px) {
  .mdv-hero__heading { font-size: 28px; }
  .mdv-hero__sub { font-size: 15px; margin-bottom: 18px; }
}

/* ------------------------------------------------------------------ knoppen */
.mdv-btn {
  display: inline-block;
  border-radius: var(--mdv-radius);
  border: var(--mdv-border-width) solid rgb(var(--mdv-button));
  background: rgb(var(--mdv-button));
  color: rgb(var(--mdv-button-text));
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding: 11px 26px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-align: center;
}
.mdv-btn:hover { opacity: 0.86; }
.mdv-btn--outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.mdv-btn--outline:hover { background: #fff; color: #000; opacity: 1; }

/* ------------------------------------------------- grote categoriekaarten */
.mdv-gender-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .mdv-gender-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

.mdv-gcard {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0;
}
.mdv-gcard__inner { position: relative; overflow: hidden; }
.mdv-gcard__img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.mdv-gcard__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.mdv-gcard:hover .mdv-gcard__img { transform: scale(1.05); }
.mdv-gcard__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background 0.3s ease;
}
.mdv-gcard:hover .mdv-gcard__overlay { background: rgba(0, 0, 0, 0.35); }
.mdv-gcard__content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.mdv-gcard__title {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mdv-gcard__subtitle {
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}
.mdv-gcard__button {
  display: inline-block;
  padding: 10px 30px;
  margin-top: 5px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.mdv-gcard__button:hover { background: #fff; color: #000; }

@media screen and (min-width: 750px) {
  .mdv-gcard__title { font-size: 25px; }
  .mdv-gcard__subtitle { font-size: 17.5px; }
  .mdv-gcard__button { font-size: 15px; padding: 11.25px 35px; }
}
@media screen and (min-width: 990px) {
  .mdv-gcard__title { font-size: 35px; }
  .mdv-gcard__subtitle { font-size: 20px; }
}

/* -------------------------------------------------- collectietegels (4 op rij) */
.mdv-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .mdv-collection-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; }
}

.mdv-ccard {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0;
}
.mdv-ccard__inner { position: relative; overflow: hidden; }
.mdv-ccard__img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.mdv-ccard__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.mdv-ccard:hover .mdv-ccard__img { transform: scale(1.05); }
.mdv-ccard__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background 0.3s ease;
}
.mdv-ccard:hover .mdv-ccard__overlay { background: rgba(0, 0, 0, 0.35); }
/* wit label midden op de tegel, exact zoals clovedale */
.mdv-ccard__title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: auto;
  white-space: nowrap;
  color: #000;
  background: #fff;
  padding: 4px 8px;
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
  font-family: var(--mdv-font-heading);
}
@media screen and (min-width: 750px) {
  .mdv-ccard__title { font-size: 22px; padding: 6px 12px; }
}

/* --------------------------------------------------------- image with text */
.mdv-iwt { display: grid; grid-template-columns: 1fr; align-items: center; }
@media screen and (min-width: 750px) {
  .mdv-iwt { grid-template-columns: 1fr 1fr; }
}
.mdv-iwt__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mdv-iwt__text { padding: 36px 24px; text-align: center; }
.mdv-iwt__text h2 { margin-bottom: 16px; }
.mdv-iwt__text p { font-size: 16px; line-height: 1.7; margin: 0 0 24px; }

/* ------------------------------------------------------------- usp-kolommen */
.mdv-usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .mdv-usp-grid { grid-template-columns: repeat(3, 1fr); }
}
.mdv-usp { text-align: center; }
.mdv-usp__icon { max-width: 64px; margin: 0 auto 12px; }
.mdv-usp__icon img { display: block; width: 100%; height: auto; }
.mdv-usp__title {
  font-family: var(--mdv-font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.mdv-usp__text { font-size: 14px; line-height: 1.6; margin: 0; }

/* ------------------------------------------------------------------ footer */
.mdv-footer {
  background: rgb(var(--mdv-bg));
  color: rgb(var(--mdv-fg));
  border-top: 1px solid rgba(var(--mdv-fg), 0.08);
  font-family: var(--mdv-font-body);
  padding: 40px 0 20px;
}
.mdv-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 750px) {
  .mdv-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
}
.mdv-footer__title {
  font-family: var(--mdv-font-heading);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.mdv-footer__list { list-style: none; margin: 0; padding: 0; }
.mdv-footer__list li { margin-bottom: 7px; font-size: 14px; line-height: 1.6; }
.mdv-footer__list a { color: rgb(var(--mdv-fg)); text-decoration: none; }
.mdv-footer__list a:hover { text-decoration: underline; }
.mdv-footer__info { font-size: 13.5px; line-height: 1.75; }
.mdv-footer__info strong { font-weight: 600; }
.mdv-footer__bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--mdv-fg), 0.08);
  font-size: 13px;
  text-align: center;
}
