/* =================================
   CART & ACCOUNT TABLES
================================= */
main .cart table,
main .myaccount table {
  width: 100%;
  border-collapse: collapse;
}

main .cart table thead td,
main .myaccount table thead td {
  padding: 20px 0;
  border-bottom: 5px solid var(--border);
  font-family: mont-bold;
  font-size: clamp(16px, 0.875rem + 0.256vw, 18px); /* 16px → 18px */
  color: var(--white);
}

main .cart table thead td:last-child,
main .myaccount table thead td:last-child {
  text-align: right;
}

main .cart table tbody td,
main .myaccount table tbody td {
  padding: 25px 0;
  border-bottom: 5px solid var(--border);
}

main .cart table tbody td:last-child,
main .myaccount table tbody td:last-child {
  text-align: right;
}

main .cart table tbody td.no-results,
main .myaccount table tbody td.no-results {
  text-align: center;
  color: #e7e3e7;
}

main .cart table .img,
main .myaccount table .img {
  width: 100px;
}

main .cart table .img img,
main .myaccount table .img img {
  width: 100px;
  height: auto;
  display: block;
  margin-right: 25px;
  filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.7));
}

main .cart table .remove-form {
  display: inline;
  margin: 0;
  padding: 0;
}

main .cart table .remove,
main .myaccount table .remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-family: inherit;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 0 0 0;
}

main .cart table .remove:hover,
main .myaccount table .remove:hover {
  text-decoration: underline;
}

main .cart table .price,
main .cart table .options,
main .myaccount table .price,
main .myaccount table .options {
  color: #e7e3e7;
}

main .cart table .options,
main .myaccount table .options {
  max-width: 200px;
}

main .cart table .options .option-line {
  padding: 4px 0;
  font-size: 16px;
}

main .cart table .options .option-line strong {
  color: #e7e3e7;
}

main .cart table .option-main {
  color: var(--gold);
  font-weight: 700;
}

main .cart table a,
main .myaccount table a {
  font-size: clamp(16px, 0.875rem + 0.256vw, 18px); /* 16px → 18px */
  font-family: mont-bold;
  text-decoration: none;
  color: #cdc7ce;
}

main .cart table input[type=number],
main .myaccount table input[type=number] {
  width: 60px;
  text-align: center;
  border-radius: 10px;
  -moz-appearance: textfield;
}

main .cart table input[type=number]::-webkit-inner-spin-button,
main .cart table input[type=number]::-webkit-outer-spin-button,
main .myaccount table input[type=number]::-webkit-inner-spin-button,
main .myaccount table input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart footer: one row with buttons left, total+checkout right */
main .cart .cart-footer,
main .myaccount .cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 30px 0;
}

main .cart .cart-footer .buttons,
main .myaccount .cart-footer .buttons {
  display: flex;
  gap: 12px;
}

main .cart .cart-footer .buttons .btn,
main .myaccount .cart-footer .buttons .btn {
  margin: 0;
}

main .cart .cart-footer .total,
main .myaccount .cart-footer .total {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
}

main .cart .cart-footer .total .text,
main .myaccount .cart-footer .total .text {
  padding-right: 0;
  font-size: 18px;
  font-family: mont-bold;
}

main .cart .cart-footer .total .price,
main .myaccount .cart-footer .total .price {
  font-size: 18px;
  color: #e7e3e7;
  text-decoration: underline var(--purple) 3px;
  text-underline-offset: 6px;
}

main .cart .total .note,
main .myaccount .total .note {
  display: block;
  padding-top: 15px;
  color: #e7e3e7;
}

main .placeorder p {
  text-align: center;
}


/* =================================
   CHECKOUT PAGE
================================= */
main .checkout .container {
  display: flex;
  align-items: flex-start;
}

main .checkout .shipping-details {
  margin-right: 45px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-flow: wrap;
}

main .checkout .shipping-details h2 {
  width: 100%;
  font-family: mont-bold;
  color: var(--gold);
  font-size: 26px;
  padding: 30px 0 20px 0;
}

main .checkout .shipping-details h2:first-child {
  margin: 0;
  padding: 40px 0 10px 0;
}

main .checkout .cart-details {
  width: 90%;
  margin-left: 45px;
  border: 3px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--gradient-box);
}

main .checkout .cart-details table tr:not(:last-child) td {
  padding-bottom: 13px;
}

main .checkout .cart-details table tr:not(:first-child) td {
  padding-top: 13px;
}

main .checkout .cart-details h2 {
  margin: 0;
  padding: 25px 15px;
  font-family: mont-bold;
  font-size: 24px;
  border-bottom: 3px solid var(--border);
  text-align: center;
}

main .checkout .cart-details table {
  width: 100%;
  padding: 25px;
}

main .checkout .cart-details table .price {
  text-align: right;
  font-weight: 500;
}

main .checkout .cart-details table td {
  vertical-align: middle;
}

main .checkout .cart-details table .cart-item img {
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.6));
}

main .checkout .cart-details table .product-title {
  color: var(--gold);
  font-family: mont-bold;
  font-size: 18px;
}

main .checkout .cart-details table img.cart-thumb {
  max-width: 70px;
  height: auto;
  display: block;
  border-radius: var(--radius-small);
  margin-right: 15px;
}

.option-value {
  color: var(--white);
  font-size: 14px;
}

main .checkout .cart-details .discount-code {
  padding: 0 23px 23px 23px;
}

main .checkout .cart-details .discount-code .result {
  display: block;
  padding-top: 10px;
}

main .checkout .cart-details .total {
  border-top: 3px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 25px;
  font-size: 18px;
}

main .checkout .cart-details .total .price-title,
main .checkout .cart-details .total .alt {
  font-family: mont-bold;
  font-size: 16px;
}

main .checkout .cart-details .total .total-price {
  text-decoration: underline var(--gold) 2px;
  text-underline-offset: 6px;
  color: var(--gold);
}

main .checkout .cart-details .summary {
  border-top: 3px solid var(--border);
  padding: 25px 0;
}

main .checkout .cart-details .summary div {
  display: flex;
  justify-content: space-between;
  padding: 10px 23px;
}

main .checkout .cart-details .summary div span {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey);
}

main .checkout .cart-details .summary .discount span {
  color: #de0000;
}

main .checkout .cart-details .buttons {
  margin: 18px 23px 23px 23px;
}

main .checkout .cart-details .buttons .btn {
  width: 100%;
}

.zip-flex-container {
  margin-top: 40px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.zip-half {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.zip-field,
.zip-btn {
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  font-family: mont-bold;
  text-align: center;
}

.zip-btn {
  padding-left: 12px;
  padding-right: 12px;
}

main .checkout .cart-details .error {
  display: flex;
  align-items: center;
  margin: 0 23px 23px;
  padding: 8px;
  font-size: 12px;
  background-color: #f8d7da;
  border-radius: 4px;
}

main .checkout .cart-details .error svg {
  fill: #cf1818;
  margin: 0 8px 0 2px;
}

main .checkout .terms {
  display: block;
  padding: 15px 0;
  margin-bottom: 15px;
}

main .checkout #map {
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-small);
}

.shipment-border {
  width: 100%;
  height: 5px;
  background-color: var(--border);
  margin: 50px 0 0 0;
}

main .checkout .delivery-map {
  display: none;
  width: 100%;
  margin: 50px 0 0 0;
}

main .checkout .delivery-map .locations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 30px;
}

main .checkout .delivery-map .locations-list .location-item {
  display: flex;
  flex: 1;
  min-width: calc(50% - 15px);
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}

main .checkout .delivery-map .locations-list .location-item input {
  margin: 0 16px 0 0;
  appearance: none;
  width: 18px;
  height: 18px;
  aspect-ratio: 1 / 1;
  display: block;
  flex-shrink: 0;
  background-color: var(--bg);
  border: 3px solid var(--purple);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

main .checkout .delivery-map .locations-list .location-item input:hover {
  border-color: var(--gold);
}

main .checkout .delivery-map .locations-list .location-item input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

main .checkout .delivery-map .locations-list .location-item h3 {
  font-size: 16px;
  font-family: mont-bold;
  margin: 0;
  padding-bottom: 5px;
}

main .checkout .delivery-map .locations-list .location-item p {
  font-size: 14px;
  color: #dbd5db;
  margin: 0;
  padding: 0;
}

main .checkout .delivery-map .locations-list p.error {
  color: #cf1818;
  font-weight: 500;
  font-size: 14px;
}

main .checkout .tab {
  width: 100%;
  display: none;
}

main .checkout .tab.selected {
  display: block;
}

main .checkout .tab .delivery-options {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  padding: 35px 0 0 0;
}

main .checkout .tab .delivery-options .item {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 20px;
}

main .checkout .tab .delivery-options label.item:last-of-type {
  padding-bottom: 0;
}

main .checkout .tab .delivery-options .item input {
  margin: 0 25px 0 0;
  appearance: none;
  width: 22px;
  height: 22px;
  background-color: var(--bg);
  border: 3px solid var(--purple);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: middle;
}

main .checkout .tab .delivery-options .item input:hover {
  border-color: var(--gold);
}

main .checkout .tab .delivery-options .item input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

main .checkout .tab .delivery-options .item div {
  flex: 1;
  cursor: pointer;
}

main .checkout .tab .delivery-options .item div h3 {
  font-family: mont-bold;
  font-size: 18px;
  margin: 0;
  padding-bottom: 5px;
}

main .checkout .tab .delivery-options .item div p {
  font-size: 16px;
  color: var(--grey);
  margin: 0;
  padding: 0;
}

main .checkout .tab .delivery-options .item span {
  font-size: 16px;
  color: #dbd5db;
  font-family: mont-bold;
  text-align: right;
}

main .checkout .tab-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  width: 100%;
  gap: 20px;
  background: linear-gradient(270deg, #21122e 0%, #18142d 100%);
  border: 3px solid var(--border);
  border-radius: var(--radius-medium);
  min-height: 56px;
}

#tabBackBtn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.1s, display 0.1s;
}

main .checkout .tab-navigation a {
  text-decoration: none;
  padding: 10px 10px 10px 0;
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

main .checkout .tab-navigation a svg {
  fill: var(--gold);
}

main .checkout .tab-navigation a:hover {
  color: var(--gold);
}

main .checkout .tab-navigation .item .num {
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background-color: var(--purple);
  color: #fff;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
}

main .checkout .tab-navigation .item span {
  display: none;
  font-size: 16px;
  color: #f3f1f3;
  margin-left: 10px;
  font-family: mont-bold;
}

main .checkout .tab-navigation .item.selected .num {
  background-color: var(--purple);
}

main .checkout .tab-navigation .item.selected span {
  display: inline-flex;
}


/* =================================
   MY ACCOUNT
================================= */
main .myaccount {
  display: flex;
  flex-flow: wrap;
}

main .myaccount .menu {
  padding-right: 35px;
  width: 300px;
}

main .myaccount .menu a {
  display: block;
  text-decoration: none;
  color: #fefdfe;
  padding: 15px 0;
  border-bottom: 3px solid var(--border);
  transition: var(--transition);
}

main .myaccount .menu a:hover {
  color: var(--gold);
}

main .myaccount .myorders,
main .myaccount .mydownloads,
main .myaccount .settings {
  flex: 1;
}

main .myaccount .myorders form {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
}

main .myaccount .myorders .order {
  border-radius: 4px;
  margin: 50px 0;
}

main .myaccount .myorders .order .order-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid var(--border);
}

main .myaccount .myorders .order .order-header > div {
  display: flex;
  padding: 20px;
}

main .myaccount .myorders .order .order-header > div div {
  padding-right: 35px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

main .myaccount .myorders .order .order-header > div div:last-child {
  padding-right: 0;
}

main .myaccount .myorders .order .order-header > div div span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--grey);
  padding-bottom: 3px;
}


/* Make dynamic text smaller while keeping labels the same size */
main .myaccount .myorders .order .order-header > div div {
  font-size: 15px;
}

main .myaccount .myorders .order .order-header > div div span {
  font-size: 16px;
}

main .myaccount .myorders .order .order-header > div:last-child div:last-child {
  text-align: right;
}

main .myaccount .myorders .order .order-items {
  padding: 0 15px;
}

main .myaccount .myorders .order .order-items table {
  margin: 0;
  padding: 0;
}

main .myaccount .settings form {
  max-width: 400px;
}

main .myaccount .settings form .btn {
  margin-top: 35px;
}

main .myaccount h2 {
  width: 100%;
  font-family: mont-bold;
  color: var(--gold);
  font-size: clamp(20px, 1.066rem + 0.513vw, 24px); /* 20px → 24px */
  padding: 0 0 15px 0;
  margin: 0 0 10px 0;
  border-bottom: 3px solid var(--border);
}

main .myaccount table {
  padding-bottom: 40px;
}

main .myaccount table tr:last-child td {
  border-bottom: 0;
}

main .myaccount table a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  color: #de0000;
  margin: 0 5px 5px 0;
}

main .myaccount table a:hover {
  color: #ab0000;
}

main .myaccount table a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-right: 10px;
  margin-right: 10px;
  height: 100%;
  border-right: 1px solid var(--border);
}

main .myaccount table a .icon svg {
  fill: #de0000;
}

main .myaccount table .name {
  word-break: break-all;
}

main .myaccount .login-register {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
  padding-top: calc(var(--scale) * 90);
}

main .myaccount .login-register h1 {
  text-align: left;
  display: block;
  font-family: "good-timing";
  font-weight: bold;
  margin: 0;
  padding: 0 0 30px 0;
  font-size: calc(var(--scale) * 38); /* scales like .page-title */
  width: 100%;
}

main .myaccount .login-register .login {
  flex: 1;
  border-right: 3px solid var(--border);
  padding-right: 55px;
}

main .myaccount .login-register .register {
  flex: 1;
  padding-left: 55px;
}

main .myaccount .login-register .btn {
  margin-top: calc(var(--scale) * 50);
  margin-left: 4px;
}

.product-title-qty {
  font-weight: bold;
  font-size: 16px;
  color: var(--white);
}

.option-line {
  color: var(--white);
}

.option-value {
  color: var(--white);
  font-weight: bold;
}

main .forgot-password {
  max-width: 350px;
  margin: 0 auto;
}

main .forgot-password .btn {
  display: block;
  margin: 50px auto 0;
}

main p.error {
  color: #cf1818;
  font-weight: 500;
  font-size: 14px;
}

main p.error .form-link {
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  color: #74160b;
}

main p.error .form-link:hover {
  color: #450d07;
}

main .cart p.info {
  color: #cf1818;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

main p.success {
  color: #0da74d;
  font-weight: 500;
  font-size: 14px;
}

main p.success .form-link {
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  color: #0b6430;
}

main p.success .form-link:hover {
  color: #06361a;
}

.order-title{
  font-family: "good-timing";
  font-size: calc(var(--scale) * 38); /* scales like .page-title */
  text-align: center;
  padding: 90px 0px 30px 0px;
}

.order-yellow{
  font-weight: bold;
  color: var(--gold);
}

.placeorder-center{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}


#payment-element {
    margin-top: 36px;
}

/* Responsive */
@media screen and (max-width: 950px) {
  main .myaccount {
    flex-direction: column;
    align-items: center;
  }

  main .myaccount .menu {
    width: 100%;
    max-width: 500px;
    padding-right: 0;
    padding-bottom: 50px;
    text-align: center;
  }

  main .myaccount h2 {
    text-align: center;
  }

  main .myaccount .myorders form {
    justify-content: center;
    gap: 15px;
  }

  main .myaccount .myorders form .form-select {
    margin: 0;
  }

  main .myaccount .myorders form .form-select .order-select {
    width: 130px;
  }

  main .myaccount .myorders,
  main .myaccount .mydownloads,
  main .myaccount .settings {
    width: 100%;
  }

  main .myaccount .settings {
    max-width: 500px;
    padding-top: 30px;
  }

  main .myaccount .settings form {
    max-width: 100%;
  }

  main .myaccount .settings form .btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 700px) {
  main .myaccount .myorders .order .order-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 10px;
    gap: 15px 25px;
  }

  main .myaccount .myorders .order .order-header > div {
    display: contents;
  }

  main .myaccount .myorders .order .order-header > div div {
    padding-right: 0;
    text-align: center;
  }

  main .myaccount .myorders .order .order-header > div:last-child div:last-child {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  main .myaccount .myorders .order .order-items table td {
    vertical-align: middle;
  }

  main .myaccount .myorders .order .order-items table .name {
    text-align: left;
  }

  main .myaccount .myorders .order .order-items table .img {
    width: 60px;
  }

  main .myaccount .myorders .order .order-items table .img img {
    width: 60px;
    margin-right: 15px;
  }

  main .myaccount .myorders .order .order-items table .price {
    text-align: right;
    white-space: nowrap;
  }
}

@media screen and (max-width: 900px) {
  main .myaccount .login-register {
    flex-direction: column;
    width: 100%;
    max-width: 450px;
  }

  main .myaccount .login-register .login {
    border-right: none;
    padding-right: 0;
    padding-bottom: 60px;
  }

  main .myaccount .login-register h1 {
    text-align: center;
  }

  main .myaccount .login-register .btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
  }

  main .myaccount .login-register .register {
    padding-left: 0;
  }
}

@media screen and (max-width: 650px) {
  main .forgot-password .form-label {
    text-align: center;
  }
}

/* =================================
   CART TABLE RESPONSIVE
================================= */

/* Desktop: hide the rshow elements */
.rhide { display: table-cell; }
.rshow { display: none; }
.rshow-cell { display: none; }
main .cart table .options.rshow { display: none; }
.checkout-btn-mobile { display: none; }

/* Tablet: hide rhide columns, show rshow columns */
@media screen and (max-width: 1000px) {
  .rhide { display: none; }
  .rhide-small { display: none; }
  .rshow { display: table-cell; }
  .rshow-cell { display: table-cell; }

  main .cart table .options.rshow {
    display: block;
    margin-top: 6px;
  }

  /* Combined price+qty cell layout */
  main .cart table .rshow-cell {
    white-space: nowrap;
    color: #e7e3e7;
    font-size: 18px;
  }

  main .cart table .rshow-cell .row-total {
    display: none;
  }

  main .cart table .rshow-cell .form-input {
    display: block;
    margin-top: 8px;
    margin-left: 0;
  }

  /* Keep footer on one row at tablet */
  main .cart .cart-footer {
    flex-wrap: nowrap;
  }

  main .cart .cart-footer .total .text {
    white-space: nowrap;
  }
}

/* =================================
   CART PHONE LAYOUT
================================= */
@media screen and (max-width: 550px) {

  /* Turn table into block layout */
  main .cart table,
  main .cart table tbody,
  main .cart table tr,
  main .cart table td {
    display: block;
    width: 100%;
  }

  /* Hide thead entirely */
  main .cart table thead {
    display: none;
  }

  /* Each row becomes a card */
  main .cart table tbody tr {
    border-bottom: 3px solid var(--border);
    padding: 16px 0;
    position: relative;
  }

  main .cart table tbody tr:first-child {
    border-top: 3px solid var(--border);
  }

  /* Top section: image + info side by side */
  main .cart table td.img {
    display: inline-block !important;
    width: auto !important;
    vertical-align: top;
  }

  main .cart table td.img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 12px;
  }

  /* Name + options + fjern cell */
  main .cart table tbody tr > td:nth-child(2) {
    display: inline-block !important;
    width: calc(100% - 90px) !important;
    vertical-align: top;
  }

  /* Fjern floated to top right */
  main .cart table .remove {
    position: absolute;
    top: 16px;
    right: 0;
    color: var(--gold);
    font-size: 13px;
  }

  main .cart table .remove::before {
    content: '× ';
  }

  /* Show options inline on phone */
  main .cart table .options.rshow {
    display: block;
    margin-top: 4px;
    font-size: 14px;
  }

  /* Hide the separate rhide-based columns (already hidden at 1000px) */
  main .cart table .rhide,
  main .cart table .rhide-small {
    display: none;
  }

  /* Price row: rshow-cell becomes a flex row */
  main .cart table .rshow-cell {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 16px;
    color: #e7e3e7;
  }

  /* Hide the rendered price span — use ::before with data-price instead */
  main .cart table .rshow-cell .cell-price {
    display: none;
  }

  main .cart table .rshow-cell::before {
    content: attr(data-price) ' ×';
  }

  main .cart table .rshow-cell .form-input {
    display: inline-block;
    width: 60px;
    margin-top: 0;
  }

  /* Total price pushed to the right in the price row */
  main .cart table td.product-total:not(.rshow-cell) {
    display: none !important;
  }

  main .cart table .rshow-cell .row-total {
    display: block;
    margin-left: auto;
    font-size: 16px;
    color: #e7e3e7;
  }

  /* Footer: stack vertically */
  main .cart .cart-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  main .cart .cart-footer .total {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    font-size: 18px;
  }

  main .cart .cart-footer .total .btn {
    display: none;
  }

  main .cart .cart-footer .buttons {
    flex-direction: column;
    gap: 10px;
    order: 2;
  }

  main .cart .cart-footer .buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gå Til Kassen as full-width below */
  main .cart .cart-footer .total {
    order: 1;
  }

  main .cart .cart-footer .checkout-btn-mobile {
    order: 3;
    display: block;
  }

  main .cart .cart-footer .checkout-btn-mobile .btn {
    width: 100%;
    justify-content: center;
  }
}