/* Products IN STOCK */
.woocommerce div.product p.stock {
    color: green;
    font-size: 15px; /* Juster skriftstørrelsen her */
}

/* Products ON BACKORDER */
.woocommerce div.product p.stock.available-on-backorder {
    color: #B37825;
    font-size: 15px; /* Juster skriftstørrelsen her */
}

/* Products OUT OF STOCK */
.woocommerce div.product p.stock.out-of-stock {
    color: red;
    font-size: 15px; /* Juster skriftstørrelsen her */
}

.woocommerce-product-details__short-description {
    margin-bottom: 6px; /* Reduser verdien for mindre gap */
}

.woocommerce-tabs {
    margin-top: 0; /* Fjern eventuell ekstra margin her */
}
/*************************************
 *  NORSE CAMP – HANDLEKURV CSS
 *************************************/

/* TRUST-BAR */
.nc-cart-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 3rem;
  background: #f4f6f8;
  border-radius: 6px;
  font-size: 13px;
}

/* "Trygg betaling" + ikoner på samme linje */
.nc-cart-trustbar-payment {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Ikonbildet */
.nc-cart-trustbar-payment img {
  height: 18px;
  width: auto;
  display: inline-block;
}

/* Mobil-tuning */
@media (max-width: 600px) {

  .nc-cart-trustbar {
    padding: 0.85rem 1.1rem;
    gap: .6rem 1.2rem;
  }

  /* Behold tekst + ikoner på samme linje, men litt mindre */
  .nc-cart-trustbar-payment {
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
  }

  .nc-cart-trustbar-payment img {
    height: 16px;
  }
}

/* "DU SPARER"-RAD */
tr.nc-cart-savings th,
tr.nc-cart-savings td {
  font-weight: 600;
  color: #2f855a;
}

/* CTA-WRAPPER (uten betalingslogoer nå) */
.nc-cart-checkout-wrap {
  display: inline-block;
}

/* SENTRERT OVERSKRIFT */
.woocommerce-cart .cart_totals h2 {
    text-align: center;
}

/* RABATTKODE-SEKSJON – KOMPAKT OG DISKRET */
.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 320px;
    margin-bottom: 0;
}

.woocommerce-cart .coupon input#coupon_code {
    padding: 6px 10px !important;
    font-size: 13px !important;
    height: 34px !important;
    border-radius: 4px;
}

/* RABATTKNAPP – komprimert, midtstilt og ryddig */
.woocommerce-cart .coupon button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    height: 34px !important;
    border-radius: 4px !important;
    background: #d0d0d0 !important;
    color: #333 !important;
    font-weight: 500 !important;
    min-width: 70px;
    line-height: 1.1 !important;
}
/* MOBIL: Fjern gap helt */
@media (max-width: 768px) {
  body.single-product .nv-index-posts.nv-shop.col {
      margin-top: 0 !important;
      padding-top: 0 !important;
  }
}
@media (max-width: 768px) {
    .hero-mobile {
        min-height: 50vh !important;
    }
}