/* =========================================================
   Mini printable — style.css (Gray + Orange brand like sample)
   Base gray: RGB(44,49,53) = #2C3135
   HOME uses: /public/assets/images/home.png
   ========================================================= */

/* ---------- Theme tokens ---------- */
:root{
  /* Brand orange (zoals logo) */
  --primary: #f08c24;
  --primary-600: #d97a1f;
  --primary-soft: rgba(240, 140, 36, .16);

  /* Exact jouw grijs: RGB(44,49,53) */
  --bg: #2C3135;

  /* UI surfaces: net iets lichter/donkerder dan bg */
  --surface: rgba(60, 65, 70, .70);
  --surface-2: rgba(70, 75, 80, .78);

  --text: #f3f4f6;
  --muted: rgba(243,244,246,.74);
  --border: rgba(255,255,255,.10);

  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 14px;
}

/* Prevent horizontal scroll when using full-bleed hero */
body{ overflow-x: hidden; }

/* ---------- Base reset ---------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;

  /* ✅ Achtergrond voor ALLE pagina’s: links donker (#2C3135) -> rechts lichter */
 background: linear-gradient(90deg,
  rgb(36,40,44) 0%,
  rgb(56,61,65) 25%,
  rgb(78,83,87) 50%,
  rgb(56,61,65) 75%,
  rgb(36,40,44) 100%
);


  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.5;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }

/* Accessible skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: rgba(42,44,49,.92);
  border:1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index:9999;
}

/* =========================================================
   TOPBAR / NAVIGATION (grijs zoals voorbeeld)
   ========================================================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(62,64,69,.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.35);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0; /* iets compacter zodat groter logo past */
  gap: 16px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  min-width: 240px;
}
.brand__link{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Logo: borderless + 1.6x groter */
.brand__logo{
  height: 58px;     /* 36px * 1.6 ≈ 58px */
  width: 58px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* Brand name “MINIPrintable” like example */
.brand__name{
  display:flex;
  align-items:baseline;
  gap: 0; /* geen spatie -> MINIPrintable */
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 20px;
}
.brand__name .brand-mini{
  color: var(--primary);
  letter-spacing: .5px;
}
.brand__name .brand-printable{
  color: rgba(243,244,246,.92);
}

/* Navigation links */
.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav__link{
  color: rgba(243,244,246,.84);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav__link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(243,244,246,.96);
}

.nav__link--active{
  color: var(--primary);
}

/* Right side in topbar (language + cart icon) */
.topbar__right{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Language switch (pill) */
.lang-switch{
  display:flex;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 4px;
}

.lang-switch__btn{
  border: 0;
  background: transparent;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  color: rgba(243,244,246,.80);
}

.lang-switch__btn[aria-pressed="true"]{
  background: var(--primary-soft);
  color: var(--primary);
}

/* Cart icon button (zoals voorbeeld) */
.nav__icon{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(243,244,246,.92);
}

.nav__icon:hover{
  background: rgba(255,255,255,.10);
}

/* Badge bovenop icoon */
.cart-badge{
  position:absolute;
  top: 6px;
  right: 6px;

  min-width: 18px;
  height: 18px;
  padding: 0 6px;

  border-radius: 999px;
  display:grid;
  place-items:center;

  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  border: 1px solid rgba(0,0,0,.25);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  user-select:none;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(240,140,36,.22);
}

.btn--primary:hover{
  background: var(--primary-600);
}

.btn--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(243,244,246,.92);
}

.btn--ghost:hover{
  background: rgba(255,255,255,.12);
}

/* =========================================================
   BADGE / TRUST ROW (HOME)
   ========================================================= */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(40,42,46,.55);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  font-weight: 900;
  color: rgba(243,244,246,.92);
}

.trust-row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-row__item{
  display:flex;
  gap: 8px;
  align-items:center;
  color: rgba(243,244,246,.82);
  font-weight: 700;
}

.trust-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(240,140,36,.12);
}

/* =========================================================
   HERO BASE
   ========================================================= */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 44px 0 12px;
  align-items: start;
}

.hero__title{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 12px 0 12px;
  letter-spacing: -0.4px;
}

.hero__subtitle{
  color: rgba(243,244,246,.78);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 62ch;
}

.hero__cta{
  display:flex;
  gap: 12px;
  margin-top: 10px;
}

/* Rechter content (niet op HOME, maar kan elders) */
.hero__media{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
}

/* =========================================================
   HOME HERO (full-bleed + smooth gradient zoals voorbeeld)
   ========================================================= */
/* =========================================================
   HOME HERO (strak en netjes)
   ========================================================= */
.hero--home{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;

  min-height: clamp(540px, 72vh, 860px);
  padding-top: 90px;
  padding-bottom: 70px;

  /* content blijft gecentreerd zoals container */
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));

  /* nette hero-afbeelding */
  background-color: #2C3135;
  background-image: url("../images/home.png");
  background-size: cover;              /* mooier/netter op alle schermen */
  background-position: center center;  /* centraal */
  background-repeat: no-repeat;

  grid-template-columns: 1fr;
  align-items: center;

  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

/* zachte donkere overlay voor leesbare tekst */
.hero--home::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(24,27,30,.74) 0%,
    rgba(24,27,30,.46) 28%,
    rgba(24,27,30,.24) 50%,
    rgba(24,27,30,.46) 72%,
    rgba(24,27,30,.74) 100%
  );
  z-index: 0;
}

/* oude extra glow uit */
.hero--home::after{
  display: none;
}

/* content boven overlay */
.hero--home .hero__content{
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* media-card op home verborgen */
.hero--home .hero__media{
  display: none;
}

/* klein beetje extra leesbaarheid */
.hero--home .hero__title,
.hero--home .hero__subtitle,
.hero--home .badge,
.hero--home .trust-row{
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* responsive */
@media (max-width: 900px){
  .hero--home{
    min-height: 560px;
    padding-top: 72px;
    padding-bottom: 44px;
    background-position: center center;
  }
}

@media (max-width: 640px){
  .hero--home{
    min-height: 580px;
    padding-top: 56px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__cta{
    flex-wrap: wrap;
  }
}


/* =========================================================
   SECTIONS / CARDS
   ========================================================= */
.section{
  padding: 34px 0;
}

.section__header h2{
  margin:0;
  font-size: 24px;
}

.section__header p{
  margin: 8px 0 0;
  color: rgba(243,244,246,.75);
  max-width: 70ch;
}

.grid{
  display:grid;
  gap: 14px;
  margin-top: 18px;
}

.grid--3{
  grid-template-columns: repeat(3, 1fr);
}

/* ✅ Card iets consistenter tegen de nieuwe achtergrond */
.card{
  background: rgba(52,56,60,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}

.card__title{ margin: 0 0 8px; font-size: 18px; }
.card__text{ margin: 0; color: rgba(243,244,246,.74); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 26px;
  background: rgba(58,60,66,.45);
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 22px 0;
}

.footer__brand{ font-weight: 900; margin-bottom: 6px; }

.footer__title{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(243,244,246,.85);
}

.footer__text{
  margin: 0;
  color: rgba(243,244,246,.74);
  max-width: 55ch;
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(243,244,246,.74);
}

.footer__list a{
  color: rgba(243,244,246,.74);
  font-weight: 800;
}

.footer__list a:hover{ color: rgba(243,244,246,.96); }

.footer__bottom{
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* =========================================================
   Inputs (voor later)
   ========================================================= */
input, select, textarea{
  color: var(--text);
  outline: none;
}

/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.product-page{
  padding-top: 32px;
  padding-bottom: 50px;
}

.product-view{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:start;
  margin-bottom: 28px;
}

.product-gallery{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.product-gallery__main{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.product-gallery__main img{
  width:100%;
  display:block;
  object-fit:cover;
  max-height: 620px;
}

.product-gallery__thumbs{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.product-thumb{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow:hidden;
  padding:0;
  background: rgba(255,255,255,.04);
  cursor:pointer;
}

.product-thumb img{
  width:100%;
  height:100px;
  object-fit:cover;
  display:block;
}

.product-thumb.is-active{
  outline: 2px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(240,140,36,.18);
}

.product-summary{
  padding: 22px;
  position:relative;
}

.product-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.product-chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(243,244,246,.88);
}

.product-title{
  font-size: clamp(28px, 3vw, 42px);
  line-height:1.08;
  margin: 0 0 10px;
}

.product-meta{
  color: rgba(243,244,246,.72);
  margin: 0 0 14px;
}

.product-description{
  color: rgba(243,244,246,.85);
  margin: 0 0 20px;
  line-height:1.7;
}

.product-price-box{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:18px;
  margin-top:18px;
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}

.product-price-box__price{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:14px;
}

.product-price-box__price strong{
  font-size:36px;
  color: var(--primary);
}

.product-price-box__old{
  color: rgba(243,244,246,.52);
  text-decoration: line-through;
  font-size:18px;
}

.product-buy-form{
  margin:0;
}

.product-buy-btn{
  width:100%;
  min-height:54px;
  font-size:18px;
}

.product-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.product-action-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:800;
  cursor:pointer;
}

.product-action-btn:hover{
  background: rgba(255,255,255,.10);
}

.product-action-btn.is-liked{
  border-color: rgba(240,140,36,.45);
  background: rgba(240,140,36,.10);
}

.product-action-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:26px;
  height:26px;
  padding:0 8px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  font-size:13px;
}

.product-share{
  position:relative;
}

.share-menu{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width:190px;
  display:none;
  flex-direction:column;
  padding:10px;
  border-radius:14px;
  background: #23272b;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 35px rgba(0,0,0,.34);
  z-index:40;
}

.share-menu.is-open{
  display:flex;
}

.share-menu__item{
  display:flex;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  color: rgba(243,244,246,.92);
  text-decoration:none;
  font-weight:700;
  background: transparent;
  border:0;
  cursor:pointer;
  text-align:left;
}

.share-menu__item:hover{
  background: rgba(255,255,255,.06);
}

.share-menu__button{
  width:100%;
}

.product-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 22px;
  padding-bottom: 8px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.product-tabs__link{
  padding:10px 14px;
  border-radius:10px;
  font-weight:800;
  color: rgba(243,244,246,.82);
}

.product-tabs__link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(243,244,246,.98);
}

.product-section{
  margin-bottom:22px;
}

.product-section h2{
  margin-top:0;
  margin-bottom:14px;
  font-size:30px;
}

.product-section h3{
  margin-top:24px;
  margin-bottom:10px;
}

.product-list{
  margin: 0;
  padding-left: 22px;
  line-height: 1.8;
}

.product-related-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.product-related-card{
  padding:0;
  overflow:hidden;
}

.product-related-card__image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.product-related-card__body{
  padding:16px;
}

.product-related-card__body h3{
  margin:0 0 10px;
  font-size:20px;
}

.product-related-card__price{
  margin:0 0 14px;
  font-weight:900;
  color: var(--primary);
}

/* product cards in shop */
.product-card__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.product-card__cart-form{
  margin:0;
}

/* Responsive */
@media (max-width: 1024px){
  .product-view{
    grid-template-columns: 1fr;
  }

  .product-related-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .product-gallery__thumbs{
    grid-template-columns: repeat(2, 1fr);
  }

  .product-related-grid{
    grid-template-columns: 1fr;
  }

  .product-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .product-action-btn{
    width:100%;
    justify-content:center;
  }

  .share-menu{
    right:auto;
    left:0;
    width:100%;
  }
}

/* =========================================================
   SHOP — FIX: productfoto's in nette 16:9 box (zoals jouw 2e foto)
   ========================================================= */

/* Zorg dat images nooit hun eigen hoogte pushen */
.product-card img,
.product-card__image img,
.product-card__media img{
  max-width: 100%;
  height: auto;
}

/* Shop grid (werkt voor .product-grid of .products-grid) */
.product-grid,
.products-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1100px){
  .product-grid,
  .products-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px){
  .product-grid,
  .products-grid{
    grid-template-columns: 1fr;
  }
}

/* Product card: geen padding op hele kaart (anders wordt image box raar) */
.product-card.card{
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

/* De foto-wrapper bovenaan (16:9) */
/* We ondersteunen beide classnamen: .product-card__image of .product-card__media */
.product-card__image,
.product-card__media{
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;           /* zoals je voorbeeld */
  background: #f0f0f0;            /* wit/grijs zoals marketplace */
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Image vult de box netjes */
.product-card__image img,
.product-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;            /* ✅ hele afbeelding zichtbaar */
  object-position: center;
  display: block;
}

/* Als jij liever “voller” zonder witte randen wilt:
   vervang object-fit: contain; door object-fit: cover;
*/

/* Body padding terug netjes */
.product-card__body{
  padding: 16px 18px 18px;
}

/* Title/price (netter) */
.product-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.product-card__price{
  font-size: 18px;
  font-weight: 900;
}

.product-card__price-old{
  margin-left: 10px;
  opacity: .65;
  text-decoration: line-through;
  font-weight: 800;
}

/* Buttons row */
.product-card__actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
@media (max-width: 700px){
  .product-card__actions{ flex-direction: column; }
  .product-card__actions .btn{ width: 100%; }
}

/* Sale badge (als je .sale-badge gebruikt) */
.sale-badge,
.product-card__badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(15, 27, 51, .92);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}
/* ===== Login form: typed text should be black ===== */
.login-form .input,
.login-form input,
.login-form textarea,
.login-form select{
  color: #111 !important;
}

.login-form .input::placeholder,
.login-form input::placeholder{
  color: rgba(0,0,0,.45) !important;
}

/* Admin/forms: labels altijd wit en goed leesbaar */
.label{
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

/* Extra: placeholder iets zachter */
.input::placeholder,
textarea.input::placeholder{
  color: rgba(0,0,0,.45);
}
/* Input tekst (wat je typt) zwart */
.input,
input.input,
textarea.input,
select.select{
  color: #111 !important;
}

/* Placeholder iets grijs */
.input::placeholder,
textarea.input::placeholder{
  color: rgba(0,0,0,.45) !important;
}

/* Select-option tekst ook zwart */
select.select option{
  color: #111;
}

/* Checkout payment methods */
.pay-methods{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.pay-method{
  display:block;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px;
  cursor:pointer;
}
.pay-method:hover{
  background: rgba(255,255,255,.09);
}
.pay-method input{
  margin-right:10px;
  transform: translateY(1px);
}
.pay-method__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.pay-method__title{
  font-weight:900;
  font-size:16px;
}
.pay-method__logos{
  font-weight:900;
  opacity:.85;
}
/* ===== Forms (labels wit, input text zwart) ===== */
.label{
  display:block;
  font-weight: 800;
  color: rgba(243,244,246,.92);
  margin-bottom: 6px;
}

.input, .select, textarea.input{
  width: 100%;
  background: #ffffff;
  color: #111111;                 /* typed text BLACK */
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 12px 14px;
}

.input::placeholder{
  color: rgba(0,0,0,.45);
}

.input:focus, .select:focus, textarea.input:focus{
  outline: none;
  border-color: rgba(240,140,36,.85);
  box-shadow: 0 0 0 4px rgba(240,140,36,.18);
}

/* Admin form grid helper */
.admin-grid{
  display:grid;
  gap:14px;
  grid-template-columns: 1fr 1fr;
}
.admin-span-2{ grid-column: 1 / -1; }

@media (max-width: 900px){
  .admin-grid{ grid-template-columns: 1fr; }
  .admin-span-2{ grid-column: auto; }
}

/* ===== Upload progress (admin) ===== */
.upload-progress{
  margin-top: 14px;
  display:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px;
}

.upload-progress.is-visible{ display:block; }

.progress-bar{
  width:100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}

.progress-fill{
  height:100%;
  width:0%;
  border-radius: 999px;
  background: var(--primary);
  transition: width .15s ease;
}

.upload-meta{
  margin-top: 10px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  font-weight: 800;
  color: rgba(243,244,246,.90);
}

.upload-meta small{
  font-weight:700;
  color: rgba(243,244,246,.70);
}

.upload-status{
  margin-top: 10px;
  color: rgba(243,244,246,.80);
}

.upload-error{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,80,80,.12);
  border: 1px solid rgba(255,80,80,.25);
}