/** Shopify CDN: Minification failed

Line 30:18 Expected identifier but found whitespace
Line 30:20 Unexpected "0.25s"

**/
/* =============================================================
   FassFactory — Light Foto  |  Salie Groen UI  v5
   Exacte shopkleur: #ABB9AD
   ============================================================= */

:root {
  --lf-ink:         #2a352b;          /* diepste donker — afgeleid van #ABB9AD   */
  --lf-surface:     #536855;          /* donker paneel                           */
  --lf-panel:       #6d8870;          /* modal achtergrond                       */
  --lf-border:      rgba(242,244,242,0.22);
  --lf-gold:        #d4860a;          /* warm amber CTA                          */
  --lf-gold-light:  #e8a030;
  --lf-gold-dim:    #a06008;
  --lf-blue:        #e8f0e9;          /* exacte shopkleur                        */
  --lf-blue-light:  #ffffff;          /* #ABB9AD + 15% lichter                  */
  --lf-blue-dim:    #abb9ad;          /* #ABB9AD + 30% donkerder                */
  --lf-warm:        #f2f4f2;
  --lf-muted:       rgba(242,244,242,0.6);
  --lf-radius:      4px;
  --lf-radius-lg:   12px;
  --lf-shadow:      0 32px 80px rgba(10,16,10,0.8), 0 8px 24px rgba(15,22,15,0.5);
  --lf-transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}
  --lf-transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================================
   KNOP — "Start met personaliseren"
   Kleur: diep blauw met gouden shimmer — vertrouwen + actie
   ============================================================= */

[data-lf] { text-align: center; }

.lf-open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 32px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2f4f2 !important;
  background: linear-gradient(135deg, #2e3d30 0%, #4a6b4d 50%, #2e3d30 100%);
  border: 1px solid rgba(74,133,200,0.5);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--lf-transition), transform var(--lf-transition),
              box-shadow var(--lf-transition), border-color var(--lf-transition);
  box-shadow: 0 4px 20px rgba(30,58,110,0.5), inset 0 1px 0 rgba(180,198,230,0.1);
}

/* Gouden shimmer bij hover */
.lf-open::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(193,154,107,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

/* Subtiele top-highlight */
.lf-open::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,198,230,0.3), transparent);
}

.lf-open:hover {
  background: linear-gradient(135deg, #263328 0%, #2e3d30 50%, #263328 100%);
  border-color: rgba(74,133,200,0.8);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(30,58,110,0.6), 0 0 20px rgba(74,133,200,0.2);
}
.lf-open:hover::before { transform: translateX(100%); }
.lf-open:active { transform: translateY(0); }

/* =============================================================
   FORMAAT KEUZE — kleiner, inactieve staat duidelijk zichtbaar
   ============================================================= */

.lf-size {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.lf-size__btn {
  flex: 1;
  min-width: 100px;
  border: 2px solid #2e3d30;
  border-radius: var(--lf-radius);
  padding: 8px 14px;
  background: #f2f4f2;
  color: #2e3d30;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--lf-transition);
  text-align: center;
}

.lf-size__btn span {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #4a6b4d;
  margin-top: 2px;
}

.lf-size__btn:hover {
  border-color: #4a6b4d;
  color: #1c261d;
  background: #d8e8d9;
}
.lf-size__btn:hover span { color: #1c261d; }

.lf-size__btn.is-active {
  border-color: #2e3d30;
  background: #2e3d30;
  color: #f2f4f2;
  box-shadow: 0 2px 12px rgba(30,58,110,0.35);
}
.lf-size__btn.is-active span { color: #c9d5cb; }

/* =============================================================
   MODAL OVERLAY
   ============================================================= */

.lf-modal { display: none; position: fixed; inset: 0; z-index: 9999; }
.lf-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lf-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,8,20,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =============================================================
   MODAL PANEL
   ============================================================= */

.lf-panel {
  position: relative;
  width: 100%; max-width: 900px; max-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--lf-panel);
  border: 1px solid var(--lf-border);
  border-radius: var(--lf-radius-lg);
  box-shadow: var(--lf-shadow);
  overflow: hidden;
  animation: lf-slide-up 0.38s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes lf-slide-up {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Navy-naar-goud gradientlijn bovenaan */
.lf-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--lf-blue-dim) 20%,
    var(--lf-gold) 50%,
    var(--lf-blue-dim) 80%,
    transparent 100%
  );
  z-index: 2;                  /* boven de header */
}

/* =============================================================
   MODAL HEADER — FIX: sluitknop altijd zichtbaar
   ============================================================= */

.lf-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;          /* iets compacter */
  border-bottom: 1px solid var(--lf-border);
  background: #2e3d30;
  flex-shrink: 0;
  position: relative;
  z-index: 10;                 /* ↑ FIX: altijd boven content */
}

.lf-head strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px; font-weight: 400;
  color: var(--lf-gold-light);
  letter-spacing: 0.06em;
}

/* FIX: sluitknop — hogere z-index, nooit weggedrukt */
.lf-close {
  position: relative;
  z-index: 11;                 /* ↑ altijd klikbaar */
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  background: rgba(7,9,15,0.6);
  border: 1px solid rgba(74,133,200,0.3);
  border-radius: 50%;
  color: var(--lf-blue-light);
  cursor: pointer;
  transition: all var(--lf-transition);
  flex-shrink: 0;
}
.lf-close:hover {
  border-color: var(--lf-blue);
  color: var(--lf-warm);
  background: rgba(74,133,200,0.15);
  box-shadow: 0 0 12px rgba(74,133,200,0.25);
}

/* =============================================================
   MODAL BODY
   ============================================================= */

.lf-body {
  flex: 1; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--lf-blue-dim) transparent;
}
.lf-body::-webkit-scrollbar { width: 4px; }
.lf-body::-webkit-scrollbar-thumb { background: var(--lf-blue-dim); border-radius: 2px; }

/* =============================================================
   GRID
   ============================================================= */

.lf-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .lf-grid { grid-template-columns: 1fr; } }

/* =============================================================
   CONTROLS (linker kolom)
   ============================================================= */

.lf-label {
  display: block; font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lf-muted); margin-bottom: 10px; text-align: left;
}

.lf-upload-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.lf-upload-btn {
  padding: 9px 14px;
  border: 1px solid var(--lf-border); border-radius: var(--lf-radius);
  background: transparent; color: var(--lf-blue-light);
  font-family: inherit; font-size: 11px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all var(--lf-transition); white-space: nowrap;
}
.lf-upload-btn:hover {
  background: rgba(74,133,200,0.1);
  border-color: var(--lf-blue); color: var(--lf-warm);
}

.lf-file-name { font-size: 14px; color: var(--lf-muted); word-break: break-word; flex: 1; }

.lf-input--hidden {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important; pointer-events: none !important;
}

.lf-hint { font-size: 11px; color: #d08060; margin-top: 6px; min-height: 16px; text-align: left; }

.lf-remove {
  margin-top: 10px; padding: 8px 14px;
  border: 1px solid rgba(180,198,230,0.15); border-radius: var(--lf-radius);
  background: transparent; color: var(--lf-muted);
  font-family: inherit; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; width: 100%; transition: all var(--lf-transition);
}
.lf-remove:hover {
  border-color: rgba(200,80,60,0.4); color: #d07060;
  background: rgba(200,80,60,0.06);
}

/* =============================================================
   IN WINKELWAGEN — warm wit op diep navy: actie + vertrouwen
   ============================================================= */

.lf-actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

.lf-actions .button {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 16px 26px;
  font-family: inherit; font-size: 16px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  /* Goud — conversiekleur, scheidt zich van de blauwe CTA */
  background: var(--lf-gold);
  color: #fff8f0 !important;   /* warm wit — leest beter op diep amber */
  border: none; border-radius: var(--lf-radius); cursor: pointer;
  transition: all var(--lf-transition);
  box-shadow: 0 4px 18px rgba(193,154,107,0.3);
  position: relative; overflow: hidden;
}
.lf-actions .button::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.lf-actions .button:hover {
  background: var(--lf-gold-light);
  box-shadow: 0 6px 28px rgba(193,154,107,0.4);
  transform: translateY(-1px);
}
.lf-actions .button:hover::after { transform: translateX(100%); }
.lf-actions .button:disabled {
  opacity: 0.28; cursor: not-allowed; transform: none; box-shadow: none;
}

.lf-note { font-size: 11px; color: var(--lf-muted); letter-spacing: 0.05em; }

/* =============================================================
   KLEURSWATCHES
   ============================================================= */

.lf-frame { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--lf-border); text-align: left; }

.lf-frame__label {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px;
  font-size: 20px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lf-muted);
}
.lf-frame__selected {
  font-size: 22px; color: var(--lf-gold-light);
  font-family: Georgia, serif; font-style: italic;
  text-transform: none; letter-spacing: 0.06em;
}

.lf-swatches { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.lf-swatch {
  position: relative; width: 30px; height: 30px;
  border-radius: 50%; border: 2px solid rgba(180,198,230,0.2);
  background: var(--sw); cursor: pointer;
  transition: transform var(--lf-transition), box-shadow var(--lf-transition), border-color var(--lf-transition);
}
.lf-swatch::after {
  content: attr(title);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--lf-surface); border: 1px solid var(--lf-border);
  color: var(--lf-gold-light); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap; padding: 4px 9px; border-radius: 3px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
}
.lf-swatch:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.lf-swatch:hover {
  transform: scale(1.15); border-color: rgba(74,133,200,0.6);
  box-shadow: 0 4px 14px rgba(0,0,0,0.6), 0 0 8px rgba(74,133,200,0.2);
}
.lf-swatch.is-active {
  border-color: var(--lf-blue); transform: scale(1.12);
  box-shadow: 0 0 0 3px rgba(74,133,200,0.22), 0 4px 12px rgba(0,0,0,0.5);
}
.lf-swatch[style*="--sw:#ffffff"] { border-color: rgba(180,198,230,0.45); }
.lf-swatch[style*="--sw:#ffffff"].is-active { border-color: var(--lf-blue); }

/* =============================================================
   PREVIEW — FIX fotolijst verhouding
   ============================================================= */

.lf-preview {
  display: flex; align-items: flex-start; justify-content: center; padding: 4px 0;
}

.lf-preview__box {
  width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.lf-preview__title {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lf-muted); width: 100%;
}

/* Fotolijst — originele inline-block stijl, gelijkmatige padding */
.lf-photo-frame {
  --frame: #000000;
  background: var(--frame);
  padding: 22px;               /* gelijkmatig rondom */
  border-radius: 18px;
  box-shadow:
    0 20px 50px rgba(4,8,20,0.75),
    0 0 0 1px rgba(74,133,200,0.1),
    inset 0 1px 0 rgba(180,198,230,0.07);
  display: inline-block;       /* origineel: past om de inhoud */
  max-width: 100%;
  position: relative;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.lf-photo-frame::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(180,198,230,0.05) 0%, transparent 45%);
  pointer-events: none;
}

/* Foto-venster: 3/4 verhouding, gelijkmatige padding fix */
.lf-photo-frame__inner {
  display: block;              /* geen line-height witruimte onderaan */
  width: min(520px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: #000 !important; /* zwart — voorkomt witte thema-achtergrond */
  border: none !important;
  line-height: 0;
}

.lf-photo-frame__inner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: none;
  border-radius: 0;
  vertical-align: top;
  border: none !important;
}

/* =============================================================
   INFO BLOKKEN
   ============================================================= */

.lf-info {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--lf-border); border-radius: var(--lf-radius);
  background: rgba(74,133,200,0.04);
  font-size: 12px; line-height: 1.6; color: var(--lf-muted); text-align: left;
}
.lf-info strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lf-blue); margin-bottom: 3px;
}

/* =============================================================
   MOBIEL
   ============================================================= */

@media (max-width: 700px) {
  .lf-panel { border-radius: 12px; max-height: 94vh; }
  .lf-body { padding: 14px; }
  .lf-head { padding: 12px 14px; }
  .lf-photo-frame { padding: 12px; max-width: 100%; }
  .lf-size__btn { padding: 7px 10px; font-size: 10px; }
  .lf-size__btn span { font-size: 13px; }
}
