@charset "UTF-8";
/*
 * Merged cart + checkout page ("Handlekurv/Kasse").
 */
.bgu-cart-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 0 60px;
}

.bgu-cart-page__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.bgu-cart-empty #content p {
  margin: 0 0 16px;
  color: #444;
}

.bgu-cart-empty__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  background: #ea7f2f;
  color: #fff !important;
  font-weight: 500;
  text-decoration: none !important;
}
.bgu-cart-empty__link:hover, .bgu-cart-empty__link:focus {
  background: #d96d1d;
}

.bgu-cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}

.bgu-cart-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto auto;
  grid-template-areas: "image info .   remove" "image info qty total";
  column-gap: 20px;
  row-gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.bgu-cart-item__image {
  grid-area: image;
  align-self: center;
  width: 90px;
  height: 90px;
}
.bgu-cart-item__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.bgu-cart-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
  border: 1px solid #d8d8d8;
}

.bgu-cart-item__info {
  grid-area: info;
  align-self: center;
  min-width: 0;
}

.bgu-cart-item__title {
  margin: 0 0 6px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.bgu-cart-item__title a {
  color: inherit;
  text-decoration: none !important;
  font-weight: 600;
}
.bgu-cart-item__title a:hover, .bgu-cart-item__title a:focus {
  text-decoration: underline;
}

.bgu-cart-item .bgu-loop-product-sku {
  margin-bottom: 6px;
  font-size: 12px;
  color: #8a8a8a;
}

.bgu-cart-item .bgu-loop-product-stock {
  margin: 0;
}

.bgu-cart-item__qty {
  grid-area: qty;
  align-self: end;
  display: flex;
  align-items: center;
}

.bgu-cart-item__qty .bgu-loop-quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.bgu-cart-item__qty .bgu-cart-qty-button {
  width: 32px;
  min-width: 32px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #2b2d33;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}
.bgu-cart-item__qty .bgu-cart-qty-button:hover, .bgu-cart-item__qty .bgu-cart-qty-button:focus {
  background: rgba(0, 0, 0, 0.04);
  color: #111;
}

.bgu-cart-item__qty .bgu-cart-qty-input {
  width: 44px;
  min-height: 36px;
  border: 0;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-radius: 0;
  background: transparent;
  text-align: center;
  padding: 4px 2px;
  font-size: 13px;
  color: #2b2d33;
  appearance: textfield;
  -moz-appearance: textfield;
}
.bgu-cart-item__qty .bgu-cart-qty-input::-webkit-outer-spin-button, .bgu-cart-item__qty .bgu-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bgu-cart-item__total {
  grid-area: total;
  align-self: end;
  min-width: 110px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.bgu-cart-item__remove {
  grid-area: remove;
  align-self: start;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bgu-cart-item__remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.bgu-cart-item__remove-link:hover, .bgu-cart-item__remove-link:focus {
  opacity: 1;
}

.bgu-cart-item__remove-icon {
  display: block;
  width: 18px;
  height: 20px;
}

.bgu-cart-total-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}
.bgu-cart-total-row bdi,
.bgu-cart-total-row .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

.bgu-cart-total-row__label {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.bgu-cart-total-row__value {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  min-width: 130px;
  text-align: right;
}

.bgu-cart-customer {
  margin-bottom: 36px;
}

.bgu-cart-customer__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.bgu-cart-customer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
}

.bgu-cart-customer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bgu-cart-customer__list li {
  margin: 0 0 6px;
  color: #2b2d33;
  font-size: 15px;
  line-height: 1.4;
}

.bgu-cart-comment {
  margin-bottom: 24px;
}

.bgu-cart-comment__label {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.bgu-cart-comment__input {
  display: block;
  width: 100%;
  min-height: 140px;
  padding: 12px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}

.bgu-cart-terms {
  margin-bottom: 24px;
}

.bgu-cart-terms__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2b2d33;
  cursor: pointer;
}
.bgu-cart-terms__label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}
.bgu-cart-terms__label a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bgu-cart-terms__label a:hover, .bgu-cart-terms__label a:focus {
  color: #000;
}

.bgu-cart-terms__link-missing {
  text-decoration: underline;
  color: #a94646;
}

.bgu-cart-submit {
  margin-top: 12px;
}

.bgu-cart-submit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 28px;
  border: 1px solid #c5621b;
  border-radius: 6px;
  background: #c5621b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
}
.bgu-cart-submit__button:hover, .bgu-cart-submit__button:focus {
  border-color: #a94f13;
  background: #a94f13;
  color: #fff;
}

/*
 * Order received / thank-you page ("Takk for bestillingen").
 */
.bgu-thankyou {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 60px;
}

.bgu-thankyou__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.bgu-thankyou__lead {
  margin: 0 0 36px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.bgu-thankyou__lead--error {
  color: #a94646;
}

.bgu-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bgu-thankyou__button {
  min-height: 44px;
  padding: 10px 28px;
}

/* Summary panel ------------------------------------------------------------- */
.bgu-thankyou__summary {
  max-width: 520px;
  margin: 0 auto 48px;
  padding: 4px 24px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
}

.bgu-thankyou__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
}
.bgu-thankyou__summary-row:last-child {
  border-bottom: 0;
}

.bgu-thankyou__summary-label {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bgu-thankyou__summary-value {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}
.bgu-thankyou__summary-value bdi,
.bgu-thankyou__summary-value .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

/* Order details ------------------------------------------------------------- */
.bgu-thankyou__heading {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.bgu-thankyou__items {
  margin-bottom: 44px;
}

.bgu-thankyou__items-header {
  display: grid;
  grid-template-columns: 88px 1fr 72px 140px;
  align-items: center;
  gap: 18px;
  padding: 12px 4px;
  border-bottom: 1px solid #d9d9d9;
  font-weight: 700;
  color: #2c2d33;
  font-size: 14px;
}

.bgu-thankyou__items-header-qty {
  text-align: center;
}

.bgu-thankyou__items-header-price {
  text-align: right;
}

.bgu-thankyou__item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bgu-thankyou__item {
  display: grid;
  grid-template-columns: 88px 1fr 72px 140px;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid #ececec;
}

.bgu-thankyou__item-thumb {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.bgu-thankyou__item-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bgu-thankyou__item-thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
}

.bgu-thankyou__item-body {
  min-width: 0;
}

.bgu-thankyou__item-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2d33;
}
.bgu-thankyou__item-name a {
  color: inherit;
  text-decoration: none;
}
.bgu-thankyou__item-name a:hover, .bgu-thankyou__item-name a:focus {
  color: #ea7f2f;
}

.bgu-thankyou__item-sku {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
}

.bgu-thankyou__item-qty {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.bgu-thankyou__item-price {
  text-align: right;
  font-weight: 700;
  font-size: 14px;
}
.bgu-thankyou__item-price bdi,
.bgu-thankyou__item-price .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

.bgu-thankyou__totals {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 32px;
  margin-top: 26px;
  padding-right: 4px;
  font-size: 18px;
  color: #111;
}

.bgu-thankyou__totals-label {
  font-weight: 700;
}

.bgu-thankyou__totals-value {
  font-weight: 700;
}
.bgu-thankyou__totals-value bdi,
.bgu-thankyou__totals-value .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

/* Billing address ----------------------------------------------------------- */
.bgu-thankyou__address-body {
  margin: 0;
  color: #2c2d33;
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}
.bgu-thankyou__address-body span,
.bgu-thankyou__address-body br {
  display: block;
}

.bgu-thankyou__address-line {
  display: block;
}

.bgu-thankyou__address-email {
  margin-top: 6px;
  word-break: break-word;
}

@media (max-width: 720px) {
  .bgu-thankyou__items-header {
    display: none;
  }
  .bgu-thankyou__item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    row-gap: 8px;
  }
  .bgu-thankyou__item-thumb {
    grid-row: span 3;
    width: 72px;
    height: 72px;
  }
  .bgu-thankyou__item-qty {
    grid-column: 2;
    text-align: left;
    font-weight: 500;
  }
  .bgu-thankyou__item-qty::before {
    content: attr(data-title) ": ";
    font-weight: 400;
    color: #7a7a7a;
  }
  .bgu-thankyou__item-price {
    grid-column: 2;
    text-align: left;
  }
  .bgu-thankyou__item-price::before {
    content: attr(data-title) ": ";
    font-weight: 400;
    color: #7a7a7a;
  }
  .bgu-cart-item {
    grid-template-columns: 70px minmax(0, 1fr) auto;
    grid-template-areas: "image info remove" "qty   qty  total";
    gap: 12px;
  }
  .bgu-cart-item__image {
    grid-area: image;
    width: 70px;
    height: 70px;
  }
  .bgu-cart-item__info {
    grid-area: info;
  }
  .bgu-cart-item__remove {
    grid-area: remove;
  }
  .bgu-cart-item__qty {
    grid-area: qty;
  }
  .bgu-cart-item__total {
    grid-area: total;
    text-align: right;
  }
  .bgu-cart-customer__grid {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------------------------------------------------------
   Order-received gate (login / e-mail verification).

   When a logged-out visitor opens the "order received" URL for a registered
   customer's order, WC_Shortcode_Checkout::order_received() prints WooCommerce's
   stock (Storefront-styled) notice + global/form-login.php directly — there is
   no theme template hook for it. Guest orders get checkout/form-verify-email.php
   the same way. We restyle the stock markup here to match the rest of the shop.
   Scoped to the .woocommerce-order-received body class so the generic
   .woocommerce-info / .woocommerce-form-login styling elsewhere is untouched.
----------------------------------------------------------------------------- */
.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin: 8px auto 28px;
  color: #2c2d33;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.woocommerce-order-received .woocommerce-info {
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 14px 18px 14px 46px;
  background-color: #fbf1e8;
  border: 1px solid rgba(234, 127, 47, 0.35);
  border-left: 4px solid #ea7f2f;
  border-radius: 6px;
  color: #2c2d33;
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
}
.woocommerce-order-received .woocommerce-info a {
  color: #ea7f2f;
  text-decoration: underline;
}
.woocommerce-order-received .woocommerce-info a:hover, .woocommerce-order-received .woocommerce-info a:focus {
  color: #d96d1d;
}
.woocommerce-order-received .woocommerce-info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  margin: -9px 0 0;
  background-color: #ea7f2f;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='16' x2='12' y2='12'/><line x1='12' y1='8' x2='12.01' y2='8'/></svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='16' x2='12' y2='12'/><line x1='12' y1='8' x2='12.01' y2='8'/></svg>") no-repeat center/contain;
}
.woocommerce-order-received .woocommerce-form-login,
.woocommerce-order-received .woocommerce-verify-email {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
}
.woocommerce-order-received .woocommerce-form-login > p:not(.form-row):not(.lost_password),
.woocommerce-order-received .woocommerce-verify-email > p:not(.form-row):not(.lost_password) {
  margin: 0 0 18px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.woocommerce-order-received .woocommerce-form-login > p:not(.form-row):not(.lost_password) a,
.woocommerce-order-received .woocommerce-verify-email > p:not(.form-row):not(.lost_password) a {
  color: #ea7f2f;
  text-decoration: underline;
}
.woocommerce-order-received .woocommerce-form-login > p:not(.form-row):not(.lost_password) a:hover, .woocommerce-order-received .woocommerce-form-login > p:not(.form-row):not(.lost_password) a:focus,
.woocommerce-order-received .woocommerce-verify-email > p:not(.form-row):not(.lost_password) a:hover,
.woocommerce-order-received .woocommerce-verify-email > p:not(.form-row):not(.lost_password) a:focus {
  color: #d96d1d;
}
.woocommerce-order-received .woocommerce-form-login .form-row,
.woocommerce-order-received .woocommerce-verify-email .form-row {
  float: none;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
}
.woocommerce-order-received .woocommerce-form-login label[for=username],
.woocommerce-order-received .woocommerce-form-login label[for=password],
.woocommerce-order-received .woocommerce-form-login label[for=email],
.woocommerce-order-received .woocommerce-verify-email label[for=username],
.woocommerce-order-received .woocommerce-verify-email label[for=password],
.woocommerce-order-received .woocommerce-verify-email label[for=email] {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #181818;
}
.woocommerce-order-received .woocommerce-form-login .input-text,
.woocommerce-order-received .woocommerce-form-login input[type=text],
.woocommerce-order-received .woocommerce-form-login input[type=email],
.woocommerce-order-received .woocommerce-form-login input[type=password],
.woocommerce-order-received .woocommerce-verify-email .input-text,
.woocommerce-order-received .woocommerce-verify-email input[type=text],
.woocommerce-order-received .woocommerce-verify-email input[type=email],
.woocommerce-order-received .woocommerce-verify-email input[type=password] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.35;
}
.woocommerce-order-received .woocommerce-form-login .input-text:focus,
.woocommerce-order-received .woocommerce-form-login input[type=text]:focus,
.woocommerce-order-received .woocommerce-form-login input[type=email]:focus,
.woocommerce-order-received .woocommerce-form-login input[type=password]:focus,
.woocommerce-order-received .woocommerce-verify-email .input-text:focus,
.woocommerce-order-received .woocommerce-verify-email input[type=text]:focus,
.woocommerce-order-received .woocommerce-verify-email input[type=email]:focus,
.woocommerce-order-received .woocommerce-verify-email input[type=password]:focus {
  border-color: #ea7f2f;
  outline: none;
}
.woocommerce-order-received .woocommerce-form-login .password-input,
.woocommerce-order-received .woocommerce-verify-email .password-input {
  display: block;
  position: relative;
}
.woocommerce-order-received .woocommerce-form-login .show-password-input,
.woocommerce-order-received .woocommerce-verify-email .show-password-input {
  top: 50%;
  right: 6px;
  padding: 0 8px;
  transform: translateY(-50%);
}
.woocommerce-order-received .woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce-order-received .woocommerce-verify-email .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #181818;
  font-size: 15px;
  font-weight: 400;
}
.woocommerce-order-received .woocommerce-form-login .woocommerce-form-login__rememberme input,
.woocommerce-order-received .woocommerce-verify-email .woocommerce-form-login__rememberme input {
  margin: 0;
}
.woocommerce-order-received .woocommerce-form-login .woocommerce-button,
.woocommerce-order-received .woocommerce-form-login button[name=login],
.woocommerce-order-received .woocommerce-form-login button[name=verify],
.woocommerce-order-received .woocommerce-verify-email .woocommerce-button,
.woocommerce-order-received .woocommerce-verify-email button[name=login],
.woocommerce-order-received .woocommerce-verify-email button[name=verify] {
  display: block;
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: #ea7f2f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.woocommerce-order-received .woocommerce-form-login .woocommerce-button:hover, .woocommerce-order-received .woocommerce-form-login .woocommerce-button:focus,
.woocommerce-order-received .woocommerce-form-login button[name=login]:hover,
.woocommerce-order-received .woocommerce-form-login button[name=login]:focus,
.woocommerce-order-received .woocommerce-form-login button[name=verify]:hover,
.woocommerce-order-received .woocommerce-form-login button[name=verify]:focus,
.woocommerce-order-received .woocommerce-verify-email .woocommerce-button:hover,
.woocommerce-order-received .woocommerce-verify-email .woocommerce-button:focus,
.woocommerce-order-received .woocommerce-verify-email button[name=login]:hover,
.woocommerce-order-received .woocommerce-verify-email button[name=login]:focus,
.woocommerce-order-received .woocommerce-verify-email button[name=verify]:hover,
.woocommerce-order-received .woocommerce-verify-email button[name=verify]:focus {
  background: #d96d1d;
  color: #fff;
}
.woocommerce-order-received .woocommerce-form-login .lost_password,
.woocommerce-order-received .woocommerce-verify-email .lost_password {
  margin: 16px 0 0;
  text-align: center;
}
.woocommerce-order-received .woocommerce-form-login .lost_password a,
.woocommerce-order-received .woocommerce-verify-email .lost_password a {
  color: #ea7f2f;
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-order-received .woocommerce-form-login .lost_password a:hover, .woocommerce-order-received .woocommerce-form-login .lost_password a:focus,
.woocommerce-order-received .woocommerce-verify-email .lost_password a:hover,
.woocommerce-order-received .woocommerce-verify-email .lost_password a:focus {
  color: #d96d1d;
  text-decoration: underline;
}
.woocommerce-order-received .woocommerce-form-login .clear,
.woocommerce-order-received .woocommerce-verify-email .clear {
  display: none;
}

/*# sourceMappingURL=shop-cart-checkout.css.map */
