/* Mirrors: navigation/nv-g-mini-cart/clientlibs/site */
.cookie-banner { position: fixed; left: 20px; bottom: 20px; z-index: 170; width: min(360px, calc(100% - 40px)); padding: 25px; color: #fff; background: #171717; box-shadow: 0 5px 24px rgba(0,0,0,.24); }
.cookie-banner > button:first-child { position: absolute; right: 12px; top: 10px; border: 0; color: #fff; background: transparent; font-size: 22px; cursor: pointer; }
.cookie-banner h2 { margin: 0 0 13px; font-size: 15px; }.cookie-banner p { font-size: 12px; }.cookie-banner a { font-size: 11px; text-decoration: underline; }
.accept-cookie { display: block; min-width: 100px; height: 40px; margin: 15px 0 0 auto; border: 0; border-radius: 22px; color: #fff; background: var(--blue); font-weight: 700; cursor: pointer; }
.cookie-banner.hidden { display: none; }
.mini-cart { position: fixed; inset: 0 0 0 auto; z-index: 150; width: min(430px, 94vw); padding: 30px; transform: translateX(103%); background: #fff; box-shadow: -5px 0 20px rgba(0,0,0,.12); transition: transform .25s ease; }
.mini-cart.open { transform: translateX(0); }.mini-cart > div { display: flex; justify-content: space-between; align-items: center; }
.mini-cart h2 { margin: 0; }.mini-cart > div button { border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.mini-cart article { display: grid; grid-template-columns: 100px 1fr; gap: 15px; margin-top: 25px; padding-top: 20px; border-top: 1px solid #ddd; }
.mini-cart article img { width: 100px; height: 100px; object-fit: contain; }.mini-cart article div { display: grid; align-content: center; }
.modal-layer { position: fixed; inset: 0; z-index: 180; display: grid; place-items: center; padding: 18px; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.modal-layer.open { opacity: 1; pointer-events: auto; }.modal-layer > section { position: relative; width: min(620px, 100%); max-height: 85vh; padding: 36px; overflow-y: auto; border-radius: 18px; background: #fff; }
.modal-layer > section > button { position: absolute; right: 15px; top: 10px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.modal-layer h2 { margin-top: 0; font-size: 28px; }.modal-layer p { color: #555; }
.gallery-layer { position: fixed; inset: 0; z-index: 190; display: grid; place-items: center; padding: 55px; background: rgba(255,255,255,.98); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.gallery-layer.open { opacity: 1; pointer-events: auto; }.gallery-layer img { width: 100%; height: 100%; object-fit: contain; }
.gallery-layer button { position: absolute; right: 22px; top: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #eee; font-size: 28px; cursor: pointer; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 220; max-width: calc(100% - 32px); padding: 12px 20px; transform: translate(-50%, 20px); border-radius: 3px; color: #fff; background: rgba(20,20,20,.95); opacity: 0; pointer-events: none; transition: .2s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 600px) {
  .cookie-banner { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .modal-layer > section { padding: 30px 22px; }.gallery-layer { padding: 45px 8px; }
}

