/*
 * Prematur Shop — Frontend CSS v1.7.0
 * Palette : #982979 · #460C34 · #F9F6F9
 * Fonts   : Marcellus · Be Vietnam Pro
 * All brand colours hardcoded with !important to override any theme styles
 */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Marcellus&display=swap');

/* ── Grid ───────────────────────────────────────────────────────────────── */
.pshop-wrap { font-family: 'Be Vietnam Pro', sans-serif !important; color: #1C0A18 !important; }
.pshop-section-title { font-family: 'Marcellus', Georgia, serif !important; font-weight: 400 !important; color: #460C34 !important; font-size: 1.5rem !important; margin-bottom: 18px !important; }
.pshop-no-products { color: #8A708A !important; font-style: italic !important; }

.pshop-grid { display: grid !important; gap: 10px !important; }
.pshop-cols-1 { grid-template-columns: 1fr !important; }
.pshop-cols-2 { grid-template-columns: repeat(2,1fr) !important; }
.pshop-cols-3 { grid-template-columns: repeat(3,1fr) !important; }
.pshop-cols-4 { grid-template-columns: repeat(4,1fr) !important; }
@media(max-width:900px){ .pshop-cols-3,.pshop-cols-4{ grid-template-columns: repeat(2,1fr) !important; } }
@media(max-width:540px){ .pshop-cols-2,.pshop-cols-3,.pshop-cols-4{ grid-template-columns: 1fr !important; } }

/* ── Card ───────────────────────────────────────────────────────────────── */
.pshop-card {
  background: #ffffff !important;
  border: 1px solid #E2D3DE !important;
  border-radius: 14px !important;
  box-shadow: 0 1px 6px rgba(70,12,52,.06), 0 4px 18px rgba(70,12,52,.06) !important;
  overflow: hidden !important;
  transition: box-shadow .15s ease, transform .15s ease !important;
}
.pshop-card:hover {
  box-shadow: 0 4px 22px rgba(70,12,52,.13) !important;
  transform: translateY(-1px) !important;
}
.pshop-card.pshop-out-of-stock { opacity: .65 !important; }

/* With thumbnail — horizontal layout */
.pshop-card--has-thumb {
  display: grid !important;
  grid-template-columns: 108px 1fr !important;
}

/* Thumbnail area — white bg, equal padding */
.pshop-thumb {
  padding: 12px !important;
  background: #ffffff !important;
  border-right: 1px solid #E2D3DE !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pshop-thumb img {
  width: 84px !important; height: 84px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
}

/* Badges */
.pshop-badge {
  display: inline-block !important;
  border-radius: 4px !important;
  padding: 2px 8px !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: 10px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: .07em !important;
}
.pshop-badge-sale { background: #982979 !important; color: #fff !important; }
.pshop-badge-out  { background: #999 !important;    color: #fff !important; }

/* Card body */
.pshop-body {
  padding: 14px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 8px !important;
  min-width: 0 !important;
}
.pshop-card:not(.pshop-card--has-thumb) .pshop-body { padding: 16px 20px !important; }

.pshop-top { display: flex !important; flex-direction: column !important; gap: 6px !important; }

/* Title — Marcellus */
.pshop-title {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: .98rem !important; font-weight: 400 !important;
  color: #460C34 !important; margin: 0 !important; line-height: 1.4 !important;
}

/* Description — always visible, no accordion */
.pshop-desc {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: .83rem !important;
  color: #8A708A !important;
  line-height: 1.6 !important;
}
.pshop-desc p { margin: 0 0 4px !important; }
.pshop-desc p:last-child { margin-bottom: 0 !important; }

/* ── Price row ──────────────────────────────────────────────────────────── */
.pshop-price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border-top: 1px dashed #EAE0E7 !important;
  padding-top: 10px !important;
  flex-wrap: wrap !important;
}
.pshop-price-left { display: flex !important; align-items: baseline !important; gap: 6px !important; flex-shrink: 0 !important; }

/* Price — Marcellus */
.pshop-price {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: 1.55rem !important; font-weight: 400 !important;
  color: #460C34 !important; line-height: 1 !important;
}
.pshop-orig {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: .82rem !important; color: #8A708A !important; text-decoration: line-through !important;
}

/* Controls row */
.pshop-controls { display: flex !important; align-items: center !important; gap: 8px !important; flex-shrink: 0 !important; }

/* Size dropdown */
.pshop-size {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  height: 38px !important; padding: 0 10px !important;
  background: #ffffff !important;
  color: #1C0A18 !important;
  border: 1.5px solid #E2D3DE !important;
  border-radius: 6px !important;
  font-size: .8rem !important;
  cursor: pointer !important;
}
.pshop-size:focus { border-color: #982979 !important; outline: none !important; box-shadow: 0 0 0 2px rgba(152,41,121,.12) !important; }

/* ── Qty — three joined outlined boxes, all magenta ─────────────────────── */
.pshop-qty { display: flex !important; align-items: center !important; }

.pshop-qty-btn {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  width: 38px !important; height: 38px !important;
  background: #ffffff !important;
  color: #982979 !important;
  border: 1.5px solid #982979 !important;
  font-size: 1rem !important; font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 0 !important; line-height: 1 !important;
  transition: background .15s ease, color .15s ease !important;
  text-transform: none !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.pshop-qty-btn:hover { background: #982979 !important; color: #ffffff !important; }
.pshop-qty-btn:focus { outline: none !important; }

.pshop-minus { border-radius: 6px 0 0 6px !important; border-right: none !important; }
.pshop-plus  { border-radius: 0 6px 6px 0 !important; border-left:  none !important; }

.pshop-qty-val {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  width: 42px !important; height: 38px !important;
  border-top: 1.5px solid #982979 !important;
  border-bottom: 1.5px solid #982979 !important;
  border-left: none !important; border-right: none !important;
  border-radius: 0 !important;
  text-align: center !important;
  font-size: .88rem !important; font-weight: 600 !important;
  color: #460C34 !important; background: #ffffff !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.pshop-qty-val::-webkit-inner-spin-button,
.pshop-qty-val::-webkit-outer-spin-button { appearance: none !important; -webkit-appearance: none !important; }
.pshop-qty-val:focus { outline: none !important; }

/* ── Kjøp button ────────────────────────────────────────────────────────── */
.pshop-buy {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  height: 38px !important; padding: 0 22px !important;
  background: #ffffff !important;
  color: #982979 !important;
  border: 1.5px solid #982979 !important;
  border-radius: 6px !important;
  font-size: .82rem !important; font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
  cursor: pointer !important; white-space: nowrap !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: background .15s ease, color .15s ease !important;
}
.pshop-buy:hover { background: #982979 !important; color: #ffffff !important; }
.pshop-buy:active { transform: scale(.97) !important; }
.pshop-buy:focus { outline: none !important; }

/* Utsolgt */
.pshop-soldout { color: #8A708A !important; font-size: .86rem !important; font-style: italic !important; margin: 0 !important; }

/* Free shipping badge */
.pshop-shipping { border-top: 1px dashed #EAE0E7 !important; padding-top: 9px !important; }
.pshop-free-badge {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  display: inline-block !important;
  background: #2B7A4B !important; color: #ffffff !important;
  border-radius: 4px !important;
  padding: 4px 11px !important; font-size: .73rem !important; font-weight: 700 !important;
}

/* Responsive */
@media(max-width:480px) {
  .pshop-card--has-thumb { grid-template-columns: 88px 1fr !important; }
  .pshop-thumb img { width: 68px !important; height: 68px !important; }
  .pshop-price { font-size: 1.35rem !important; }
  .pshop-buy { padding: 0 14px !important; }
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.pshop-overlay {
  position: fixed !important; inset: 0 !important;
  background: rgba(70,12,52,.48) !important;
  backdrop-filter: blur(5px) !important;
  z-index: 99999 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 16px !important;
  animation: psIn .15s ease !important;
}
.pshop-overlay[hidden] { display: none !important; }
@keyframes psIn { from{opacity:0} to{opacity:1} }

.pshop-modal {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  width: 100% !important; max-width: 560px !important; max-height: 94vh !important;
  overflow-y: auto !important;
  padding: 30px 30px 32px !important;
  position: relative !important;
  box-shadow: 0 24px 64px rgba(70,12,52,.22) !important;
  animation: psUp .18s ease !important;
}
@keyframes psUp { from{transform:translateY(12px);opacity:0} to{transform:translateY(0);opacity:1} }

/* Close button */
.pshop-close {
  position: absolute !important; top: 16px !important; right: 16px !important;
  background: #ffffff !important;
  border: 1.5px solid #E2D3DE !important;
  border-radius: 4px !important;
  width: 34px !important; height: 34px !important;
  font-size: .82rem !important; cursor: pointer !important;
  color: #8A708A !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  box-shadow: none !important;
  transition: border-color .15s ease, color .15s ease !important;
}
.pshop-close:hover { border-color: #982979 !important; color: #982979 !important; }

/* Modal headings — Marcellus */
.pshop-modal-ttl {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: 1.45rem !important; font-weight: 400 !important;
  color: #460C34 !important; margin: 0 0 20px !important;
  padding-right: 40px !important;
}
.pshop-modal-sub {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: 1.05rem !important; font-weight: 400 !important;
  color: #460C34 !important; margin: 22px 0 14px !important;
}

/* Cart table */
.pshop-cart-tbl {
  width: 100% !important; border-collapse: collapse !important;
  font-family: 'Be Vietnam Pro', sans-serif !important; font-size: .88rem !important;
  border: 1.5px solid #E2D3DE !important;
  border-radius: 8px !important; overflow: hidden !important;
}
.pshop-cart-tbl thead tr { background: #F9F6F9 !important; }
.pshop-cart-tbl th {
  padding: 9px 12px !important;
  font-size: .65rem !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: .09em !important;
  color: #8A708A !important;
  border-bottom: 1.5px solid #E2D3DE !important;
  text-align: left !important;
}
.pshop-cart-tbl th.col-qty   { text-align: center !important; width: 60px !important; }
.pshop-cart-tbl th.col-price { text-align: right  !important; width: 80px !important; }
.pshop-cart-tbl th.col-del   { width: 38px !important; }
.pshop-cart-tbl td {
  padding: 10px 12px !important;
  color: #1C0A18 !important;
  border-bottom: 1px solid #EAE0E7 !important;
  vertical-align: middle !important;
}
.pshop-cart-tbl td.col-qty   { text-align: center !important; color: #8A708A !important; }
.pshop-cart-tbl td.col-price { text-align: right  !important; font-weight: 700 !important; color: #460C34 !important; }
.pshop-cart-tbl td.col-del   { text-align: center !important; }

/* Delete row button */
.pshop-del-btn {
  background: none !important; border: none !important; cursor: pointer !important;
  color: #D0C0CC !important;
  font-size: .82rem !important; padding: 0 !important;
  border-radius: 4px !important;
  width: 26px !important; height: 26px !important; margin: 0 auto !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-family: 'Be Vietnam Pro', sans-serif !important;
  box-shadow: none !important;
  transition: color .15s ease, background .15s ease !important;
}
.pshop-del-btn:hover { color: #982979 !important; background: rgba(152,41,121,.07) !important; }

/* Total row */
.pshop-cart-tbl tfoot tr { background: #F9F6F9 !important; }
.pshop-cart-tbl tfoot td {
  padding: 11px 12px !important;
  border-top: 1.5px solid #E2D3DE !important;
  border-bottom: none !important;
  color: #460C34 !important; font-weight: 700 !important;
}
.pshop-cart-tbl tfoot td.col-price {
  font-family: 'Marcellus', Georgia, serif !important;
  font-size: 1.12rem !important; font-weight: 400 !important;
  text-align: right !important; color: #460C34 !important;
}

/* ── Form ───────────────────────────────────────────────────────────────── */
.pshop-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; margin-bottom: 10px !important; }
@media(max-width:460px){ .pshop-row{ grid-template-columns: 1fr !important; } }
.pshop-group { display: flex !important; flex-direction: column !important; gap: 5px !important; }
.pshop-full   { grid-column: 1 / -1 !important; }
.pshop-narrow { max-width: 120px !important; }

.pshop-group label {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  font-size: .67rem !important; font-weight: 700 !important;
  color: #1C0A18 !important;
  text-transform: uppercase !important; letter-spacing: .08em !important;
  display: block !important;
}
.pshop-req { color: #982979 !important; }

.pshop-group input,
.pshop-group textarea {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  border: 1.5px solid #E2D3DE !important;
  border-radius: 4px !important;
  padding: 9px 12px !important;
  font-size: .9rem !important; color: #1C0A18 !important;
  background: #ffffff !important;
  width: 100% !important; box-sizing: border-box !important;
  box-shadow: none !important;
  transition: border-color .15s ease, box-shadow .15s ease !important;
}
.pshop-group input::placeholder,
.pshop-group textarea::placeholder { color: #C8B0C4 !important; }
.pshop-group input:focus,
.pshop-group textarea:focus {
  outline: none !important;
  border-color: #982979 !important;
  box-shadow: 0 0 0 3px rgba(152,41,121,.10) !important;
}
.pshop-group input.ps-err { border-color: #982979 !important; }

/* Payment info */
.pshop-payment-box {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  background: #F9F6F9 !important;
  border-left: 3px solid #982979 !important;
  border-radius: 0 4px 4px 0 !important;
  padding: 12px 14px !important;
  font-size: .84rem !important; color: #1C0A18 !important;
  line-height: 1.7 !important; margin-bottom: 12px !important; white-space: pre-line !important;
}

/* Notices */
.pshop-actions { display: flex !important; flex-direction: column !important; gap: 8px !important; margin-top: 6px !important; }
.pshop-msg { font-family: 'Be Vietnam Pro', sans-serif !important; padding: 9px 13px !important; border-radius: 4px !important; font-size: .85rem !important; line-height: 1.5 !important; }
.pshop-msg[hidden] { display: none !important; }
.pshop-err { background: #FFF0F8 !important; border: 1px solid #E8B8D4 !important; color: #5C0030 !important; }
.pshop-ok  { background: #F0FAF5 !important; border: 1px solid #A8DFC0 !important; color: #1A5A30 !important; }

/* Submit button */
.pshop-submit {
  font-family: 'Be Vietnam Pro', sans-serif !important;
  background: #ffffff !important; color: #982979 !important;
  border: 1.5px solid #982979 !important;
  border-radius: 4px !important;
  padding: 13px 24px !important;
  font-size: .88rem !important; font-weight: 700 !important; letter-spacing: .06em !important;
  text-transform: none !important;
  cursor: pointer !important; width: 100% !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: background .15s ease, color .15s ease !important;
}
.pshop-submit:hover:not(:disabled) { background: #982979 !important; color: #ffffff !important; }
.pshop-submit:active { transform: scale(.99) !important; }
.pshop-submit:disabled { opacity: .5 !important; cursor: not-allowed !important; }

body.ps-no-scroll { overflow: hidden !important; }
