.page-offset {
  padding-top: 154px
}
.shop-hero {
  min-height: 88vh
}
.cart-pill {
  border: 1px solid rgba(255,255,255,.25);
  padding: 4px 10px;
  min-height: 34px
}
.cart-pill span {
  color: #fff
}
.notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue)
}
.notice.success {
  border-color: rgba(0,151,218,.35);
  background: rgba(0,151,218,.08)
}
.notice.error {
  border-color: rgba(160,40,40,.35);
  background: rgba(160,40,40,.08)
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px
}
.catalog-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: -22px 0 22px;
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase
}
.catalog-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase
}
.catalog-view-toggle.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff
}
.catalog-icon-grid,
.catalog-icon-list {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px
}
.catalog-icon-grid:before,
.catalog-icon-list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: currentColor
}
.catalog-icon-grid:before {
  width: 5px;
  height: 5px;
  box-shadow: 9px 0 0 currentColor, 0 9px 0 currentColor, 9px 9px 0 currentColor
}
.catalog-icon-list:before {
  width: 14px;
  height: 3px;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor
}
.category-accordion {
  display: grid;
  gap: 22px
}
.category-panel {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow)
}
.category-panel summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 18px 24px;
  color: var(--blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  list-style: none
}
.category-title {
  display: inline-flex;
  align-items: center;
  gap: 10px
}
.category-panel summary::-webkit-details-marker {
  display: none
}
.category-panel summary:after {
  content: "+";
  color: var(--accent);
  font-size: 34px;
  line-height: 1
}
.category-panel[open] summary:after {
  content: "-"
}
.category-title b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  padding: 3px 9px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 300
}
.category-panel .shop-grid {
  padding: 0 24px 24px
}
.shop-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden
}
.shop-product-image {
  display: grid;
  align-items: start;
  justify-items: center;
  width: 100%;
  min-height: 250px;
  background: transparent
}
.shop-product-image img {
  width: 100%;
  max-height: 260px;
  object-fit: contain
}
.shop-catalog.is-list .shop-grid {
  grid-template-columns: 1fr
}
.shop-catalog.is-list .shop-product {
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 14px 16px
}
.shop-catalog.is-list .shop-product-image {
  min-height: 86px
}
.shop-catalog.is-list .shop-product-image img {
  max-height: 86px
}
.shop-catalog.is-list .shop-product-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  gap: 10px 18px;
  align-items: center
}
.shop-catalog.is-list .shop-product h3 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 24px
}
.shop-catalog.is-list .shop-product h3 small {
  display: inline;
  margin-left: 6px;
  font-size: .72em
}
.shop-catalog.is-list .product-meta,
.shop-catalog.is-list .shop-product p,
.shop-catalog.is-list .single-price-row,
.shop-catalog.is-list .price-list,
.shop-catalog.is-list .product-link {
  margin: 0
}
.shop-catalog.is-list .product-meta {
  grid-column: 1;
  grid-row: 2;
  align-self: start
}
.shop-catalog.is-list .shop-product p {
  display: none
}
.shop-catalog.is-list .product-meta {
  font-size: 14px
}
.shop-catalog.is-list .single-price-row,
.shop-catalog.is-list .price-list,
.shop-catalog.is-list .shop-purchase-row {
  margin: 0
}
.shop-catalog.is-list .shop-purchase-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  grid-template-columns: auto auto;
  align-items: center
}
.shop-catalog.is-list .single-price-row {
  justify-content: flex-end;
  min-width: 160px;
  text-align: right
}
.shop-catalog.is-list .single-price {
  font-size: 22px
}
.shop-catalog.is-list .price-list {
  gap: 4px;
  min-width: 230px;
  border-top: 0;
  text-align: right
}
.shop-catalog.is-list .price-list div {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding-top: 0;
  font-size: 15px
}
.shop-catalog.is-list .price-list div:nth-child(n+4) {
  display: none
}
.shop-catalog.is-list .price-list .stock-badge {
  display: none
}
.shop-catalog.is-list .shop-add-form {
  grid-template-columns: minmax(138px, 1fr) 52px auto;
  gap: 8px
}
.shop-catalog.is-list .shop-add-form input,
.shop-catalog.is-list .shop-add-form select,
.shop-catalog.is-list .shop-add-form .btn {
  min-height: 36px;
  font-size: 15px
}
.shop-catalog.is-list .shop-add-form .btn {
  min-width: 70px;
  padding: 7px 12px
}
.shop-catalog.is-list .product-link {
  display: none
}
.shop-product h3,
.cart-line h3,
.checkout-panel h2,
.empty-state h2,
.detail-copy h1,
.outcome h1,
.auth-card h1 {
  margin: 0;
  color: var(--blue);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase
}
.shop-product h3 small,
.cart-line h3 small,
.detail-copy h1 small {
  display: block;
  color: var(--accent);
  font-size: .62em;
  line-height: 1.2
}
.shop-product p {
  margin: 14px 0 18px
}
.shop-purchase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px
}
.shop-purchase-row .single-price-row,
.shop-purchase-row .price-list {
  margin: 0
}
.shop-purchase-row label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0)
}
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 16px;
  text-transform: uppercase
}
.single-price {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.1
}
.single-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px
}
.single-price-row .single-price {
  margin: 0
}
.pluspoints-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  gap: 5px;
  padding: 3px 9px 3px 4px;
  background: #eaf6fd;
  border: 1px solid rgba(0, 151, 218, .24);
  color: #09233d;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase
}
.pluspoints-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.pluspoints-badge b {
  color: var(--accent);
  font-size: 15px;
  line-height: 1
}
.cart-line .pluspoints-badge {
  min-height: 24px;
  margin-top: 7px;
  padding: 2px 7px 2px 4px;
  font-size: 12px
}
.cart-line .pluspoints-badge img {
  width: 18px;
  height: 18px
}
.cart-line .pluspoints-badge b {
  font-size: 15px
}
.price-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  border-top: 1px solid var(--line)
}
.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding-top: 8px
}
.price-list b {
  color: var(--blue);
  font-weight: 300
}
.stock-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff
}
.stock-badge.ok {
  background: #1d7d46
}
.stock-badge.low {
  background: #a02828
}
.shop-add-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px auto;
  gap: 10px;
  align-items: end
}
.shop-add-form input,
.shop-add-form select {
  min-height: 42px;
  font-size: 17px
}
.shop-add-form .btn {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 17px
}
.shop-add-form .btn .fa-cart-shopping {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.125em;
  min-width: 1.125em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url('../icons/cart-shopping.svg') center / contain no-repeat;
  mask: url('../icons/cart-shopping.svg') center / contain no-repeat
}
.shop-add-form .qty-field input {
  max-width: 70px
}
label span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 19px
}
textarea {
  resize: vertical
}
button:disabled {
  opacity: .45;
  cursor: not-allowed
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 54px;
  align-items: center
}
.detail-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: transparent;
  border: 1px solid var(--line)
}
.detail-media img {
  max-height: 450px;
  object-fit: contain
}
.lead-copy {
  font-size: 27px;
  line-height: 1.3
}
.variant-table {
  margin-top: 28px;
  border-top: 1px solid var(--line)
}
.variant-table div {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line)
}
.cart-stack {
  display: grid;
  gap: 28px;
  align-items: start
}
.cart-panel,
.checkout-panel,
.empty-state,
.outcome,
.auth-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}
.cart-lines {
  display: grid;
  gap: 14px
}
.cart-line {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 110px 110px;
  gap: 18px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line)
}
.cart-info {
  min-width: 0
}
.cart-line img {
  width: 74px;
  height: 100px;
  object-fit: contain;
  background: transparent
}
.cart-line-special {
  background: rgba(0,151,218,.05);
  padding: 14px;
  border: 1px solid rgba(0,151,218,.16)
}
.cart-special-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--accent);
  background: rgba(0,151,218,.1)
}
.cart-special-icon i {
  width: 28px;
  height: 28px
}
.cart-fixed-qty {
  justify-self: stretch;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center
}
.cart-line input {
  justify-self: stretch
}
.cart-line > strong {
  justify-self: end;
  white-space: nowrap
}
.cart-line p {
  margin: 7px 0 0;
  color: var(--muted)
}
.cart-totals {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 2px solid var(--blue);
  color: var(--blue);
  font-size: 28px
}
.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center
}
.cart-totals span {
  color: var(--text)
}
.cart-totals em {
  font-style: normal;
  color: var(--accent)
}
.cart-totals .grand-total {
  padding-top: 10px;
  border-top: 1px solid var(--line)
}
.checkout-panel {
  display: grid;
  gap: 14px
}
.checkout-group {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #f6f9fc;
  border: 1px solid #dce7f1;
  border-radius: 0
}
.checkout-group h3 {
  margin: 0;
  color: #09233d;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase
}
.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px
}
.checkout-field-grid .vat-field,
.checkout-group .vat-field {
  grid-column: 1 / -1
}
.checkout-accordion {
  padding: 0
}
.checkout-accordion summary {
  cursor: pointer;
  padding: 18px;
  color: #09233d;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  text-transform: uppercase
}
.checkout-accordion summary::-webkit-details-marker {
  display: none
}
.checkout-accordion summary:after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 24px;
  line-height: .8
}
.checkout-accordion[open] summary:after {
  content: "-"
}
.checkout-accordion .checkout-field-grid {
  padding: 0 18px 18px
}
.review-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center
}
.review-actions form {
  margin: 0
}
.payment-methods {
  display: grid;
  gap: 10px
}
.payment-methods > span {
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase
}
.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px
}
.payment-option {
  display: block
}
.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}
.payment-option span {
  display: flex;
  min-height: 230px;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px;
  background: #f6f9fc;
  border: 1px solid #dce7f1;
  color: #09233d;
  cursor: pointer;
  text-align: left
}
.payment-option img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #dce7f1
}
.payment-option strong {
  color: #09233d;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase
}
.payment-option small {
  color: #2f4f67;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none
}
.payment-option input:checked + span {
  background: #eaf6fd;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(0,151,218,.18)
}
.invoice-frame {
  width: 100%;
  margin: 26px 0;
  background: #f6f9fc;
  border: 1px solid #dce7f1
}
.invoice-frame iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0
}
.terms-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center
}
.terms-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0
}
.terms-check span {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  text-transform: none
}
.terms-check .terms-link {
  display: inline;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
  text-transform: none
}
.terms-check .terms-link:after {
  content: none
}
.auth-screen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 17px;
  background: linear-gradient(180deg, rgba(39,45,59,.72), rgba(39,45,59,.86)), url('https://www.modesta.co/design/img/parallax_01.jpg') center center / cover fixed no-repeat
}
.auth-card {
  width: min(480px, 100%);
  color: var(--text);
  text-align: center
}
.auth-card img {
  margin: 0 auto 24px
}
.auth-logo {
  display: block
}
.auth-eyebrow {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center
}
.auth-card label {
  display: block;
  margin-bottom: 14px;
  text-align: center
}
.auth-card .btn {
  width: 100%
}
.auth-card .eyebrow,
.detail-copy .eyebrow,
.outcome .eyebrow {
  color: var(--accent)
}
.auth-card .eyebrow:before,
.detail-copy .eyebrow:before,
.outcome .eyebrow:before {
  background: var(--accent)
}
code {
  font-family: Consolas, Monaco, monospace;
  font-size: .78em;
  background: #f5f7f9;
  padding: 1px 5px
}
.detail-copy,
.detail-copy .eyebrow,
.detail-copy h1 {
  text-align: left;
  justify-content: flex-start
}
.detail-copy .eyebrow {
  display: flex;
  width: max-content;
  margin-left: 0;
  margin-right: auto
}
.detail-meta {
  margin-top: 14px
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 28px;
  align-items: start
}
.pluspoints-panel {
  display: grid;
  grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 0 0 28px;
  padding: 0;
  background: #eaf6fd;
  border: 1px solid #c9e6f6;
  box-shadow: var(--shadow)
}
.pluspoints-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 210px;
  padding: 26px;
  background: rgba(255,255,255,.64);
  border-right: 1px solid #c9e6f6;
  text-align: center
}
.pluspoints-score img {
  width: 72px;
  height: 72px;
  object-fit: contain
}
.pluspoints-panel .eyebrow {
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 8px;
  text-align: left
}
.pluspoints-panel strong {
  display: block;
  color: #09233d;
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
  overflow-wrap: anywhere
}
.pluspoints-copy {
  display: grid;
  align-content: center;
  padding: 30px
}
.pluspoints-panel p {
  margin: 0;
  color: #2f4f67;
  font-size: 17px;
  line-height: 1.65
}
.profile-form,
.profile-summary,
.orders-table {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}
.profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px
}
.profile-form .vat-field,
.profile-form .btn {
  grid-column: 1 / -1
}
.profile-summary h2 {
  margin: 6px 0 0;
  font-weight: 300;
  text-transform: uppercase
}
.profile-summary-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line)
}
.profile-summary-head .eyebrow {
  margin-bottom: 0
}
.pluspoints-copy .eyebrow,
.profile-summary-head .eyebrow {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left
}
.pluspoints-copy .eyebrow:before,
.profile-summary-head .eyebrow:before {
  margin-left: 0;
  margin-right: auto
}
.profile-summary-sections {
  display: grid;
  gap: 16px;
  margin-top: 18px
}
.profile-summary-section {
  padding: 16px;
  background: #f6f9fc;
  border: 1px solid #dce7f1;
  border-radius: 0
}
.profile-form label.is-required > span::after {
  content: "Required";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: #eaf4fb;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  vertical-align: middle
}
.profile-summary-section h3 {
  margin: 0 0 12px;
  color: #09233d;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase
}
.profile-detail-grid {
  display: grid;
  gap: 10px
}
.profile-detail-item {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(9, 35, 61, .08)
}
.profile-detail-item:first-child {
  border-top: 0;
  padding-top: 0
}
.profile-detail-item:last-child {
  padding-bottom: 0
}
.profile-detail-item span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase
}
.profile-detail-item strong {
  color: #09233d;
  font-size: 16px;
  font-weight: 500;
  overflow-wrap: anywhere
}
.profile-detail-item .text-link {
  display: inline;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-size: inherit;
  line-height: inherit;
  text-transform: none
}
.profile-detail-item .text-link:after {
  content: none
}
.profile-detail-item strong.is-empty,
.readonly-field {
  color: var(--muted)
}
.shipment-documentation-stack {
  display: grid;
  gap: 16px
}
.readonly-field {
  background: #f4f6f8
}
.vat-status {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted)
}
.vat-status.valid {
  color: #1d7d46
}
.vat-status.invalid {
  color: #a02828
}
.vat-status.pending {
  color: var(--blue)
}
.orders-table {
  display: grid;
  gap: 0
}
.order-products-table {
  margin-bottom: 26px
}
.orders-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line)
}
.orders-row:last-child {
  border-bottom: 0
}
.orders-head {
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase
}
.order-status-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  background: var(--status-color, #eaf6fd);
  color: #09233d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase
}
.order-status-pill[data-tooltip] {
  cursor: help
}
.order-status-pill[data-tooltip]:hover:after,
.order-status-pill[data-tooltip]:focus:after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: min(280px, 70vw);
  padding: 8px 10px;
  background: #09233d;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  transform: translateX(-50%);
  box-shadow: var(--shadow)
}
.order-status-pill[data-tooltip]:hover:before,
.order-status-pill[data-tooltip]:focus:before {
  content: "";
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: calc(100% + 3px);
  border: 6px solid transparent;
  border-top-color: #09233d;
  transform: translateX(-50%)
}
.order-status-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  text-align: left
}
.order-status-detail small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35
}
.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: 24px
}
.tracking-summary-section {
  grid-column: 1 / -1;
  background: #eaf8ed;
  border-color: #b9dec2
}
.tracking-route-map {
  position: relative;
  min-height: 330px;
  margin: 0 0 18px;
  overflow: hidden;
  background: #edf9f1;
  border: 1px solid rgba(29, 125, 70, .22)
}
.tracking-route-map:before {
  display: none
}
.tracking-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 0
}
.tracking-route-map .leaflet-container {
  background: #edf9f1
}
.tracking-route-map .leaflet-tile {
  filter: saturate(.82) contrast(.96) brightness(1.03)
}
.tracking-route-map .leaflet-control-attribution {
  font-size: 10px
}
.tracking-map-state {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(9, 35, 61, .1);
  color: #09233d;
  font-size: 14px;
  text-transform: uppercase;
  transform: translate(-50%, -50%)
}
.tracking-map-state.is-hidden {
  display: none
}
.tracking-route-real {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 12;
  animation: trackingRouteDash 1.6s linear infinite
}
.tracking-route-halo {
  stroke: rgba(9, 35, 61, .18);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round
}
.tracking-location-marker {
  display: block;
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 151, 218, .18), 0 12px 28px rgba(0, 0, 0, .24)
}
.tracking-location-marker.origin {
  background: #1d7d46;
  box-shadow: 0 0 0 5px rgba(29, 125, 70, .18), 0 12px 28px rgba(0, 0, 0, .24)
}
.tracking-package-marker {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(0, 151, 218, .2), 0 14px 32px rgba(0, 0, 0, .28)
}
.tracking-package-marker:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 7px;
  background: #fff;
  box-shadow: 5px 0 0 #fff, 2px -4px 0 -1px #fff;
  transform: translate(-50%, -50%)
}
.paid-positive {
  color: #1d7d46
}
.tracking-map-label {
  position: absolute;
  z-index: 2;
  width: min(300px, calc(50% - 28px));
  padding: 13px 15px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(9, 35, 61, .1);
  box-shadow: 0 18px 45px rgba(39, 45, 59, .12)
}
.tracking-map-label-origin {
  left: 18px;
  bottom: 18px
}
.tracking-map-label-destination {
  right: 18px;
  top: 18px;
  text-align: right
}
.tracking-map-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase
}
.tracking-map-label strong {
  display: block;
  color: #09233d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase
}
.tracking-map-label small {
  display: block;
  margin-top: 4px;
  color: #2f4f67;
  font-size: 15px;
  line-height: 1.25
}
@keyframes trackingRouteDash {
  to {
    stroke-dashoffset: -26
  }
}
.order-products-row {
  grid-template-columns: minmax(220px, 1.4fr) .7fr .35fr .65fr auto .35fr
}
.order-detail-copy {
  margin: 0 0 18px;
  color: #2f4f67;
  font-size: 17px;
  line-height: 1.55
}
.text-page {
  padding: 84px 0
}
.legal-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}
.legal-copy h2 {
  margin: 28px 0 8px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase
}
.legal-copy h2:first-child {
  margin-top: 0
}
.legal-copy p {
  margin: 0 0 14px;
  color: #4d4d4d;
  font-size: 20px;
  line-height: 1.55
}
.legal-copy h3,
.legal-copy h4 {
  margin: 22px 0 8px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase
}
.legal-copy ol,
.legal-copy ul {
  margin: 0 0 18px 24px;
  padding: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.55
}
.legal-copy li {
  margin: 7px 0
}
.legal-copy ol ol,
.legal-copy ol ul,
.legal-copy ul ul {
  margin-top: 8px;
  margin-bottom: 8px
}
.legal-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px
}
.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 17px
}
.legal-copy th,
.legal-copy td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top
}
.footer-grid {
  grid-template-columns: 1.15fr .8fr 1.15fr 1fr
}
.footer-column h3 {
  letter-spacing: .08em
}
.footer-links {
  columns: 1
}
.footer-links-column,
.footer-links-column .footer-links,
.footer-links-column h3 {
  text-align: right
}
.powered-by-stripe {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 2px 0 12px;
  background: transparent
}
.powered-by-stripe img {
  display: block;
  width: 154px;
  height: 35px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .18)
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}
.payment-logos img,
.payment-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 5px 8px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px
}
.payment-logos img {
  width: 48px;
  min-width: 0;
  object-fit: contain
}
.payment-logos img[alt="Bank transfers"] {
  width: 86px
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 244, 246, .22)
}
.footer-legal-links a {
  margin: 0;
  font-size: 13px
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}
.brand-project {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  transition: filter .25s ease, transform .25s ease
}
.brand-project:hover {
  filter: drop-shadow(0 0 10px rgba(0, 151, 218, .82));
  transform: translateY(-1px)
}
.brand-project img {
  display: block;
  width: 170px;
  max-width: 48vw;
  height: auto;
  object-fit: contain
}
.shop-modal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 35, 61, .56);
  backdrop-filter: blur(5px)
}
.shop-modal {
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left
}
.shop-modal .eyebrow {
  align-items: flex-start;
  color: var(--accent);
  text-align: left
}
.shop-modal .eyebrow:before {
  margin-left: 0;
  background: var(--accent)
}
.shop-modal h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase
}
.shop-modal p {
  margin: 0 0 14px;
  color: #2f4f67;
  font-size: 18px;
  line-height: 1.45
}
.shop-modal-product-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none
}
.shop-modal-product-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(0,151,218,.07);
  border: 1px solid rgba(0,151,218,.18);
  color: #09233d;
  font-size: 17px;
  line-height: 1.25
}
.shop-modal-product-list strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 600
}
.shop-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}
@media(max-width:1120px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .footer-grid .footer-column:nth-child(2),
  .footer-grid .footer-column:nth-child(4) {
    grid-column: 2
  }
  .footer-links-column,
  .footer-links-column .footer-links,
  .footer-links-column h3 {
    text-align: left
  }
}
@media(max-width:960px) {
  .page-offset {
    padding-top: 126px
  }
  .product-detail,
  .profile-layout {
    grid-template-columns: 1fr
  }
  .pluspoints-panel {
    grid-template-columns: 1fr
  }
  .pluspoints-score {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #c9e6f6
  }
  .detail-media {
    min-height: 380px
  }
}
@media(max-width:700px) {
  .shop-grid {
    grid-template-columns: 1fr
  }
  .shop-product,
  .shop-catalog.is-list .shop-product,
  .shop-add-form,
  .cart-line,
  .price-list div,
  .variant-table div,
  .profile-form,
  .checkout-field-grid,
  .payment-method-grid,
  .review-detail-grid,
  .order-detail-grid,
  .orders-row {
    grid-template-columns: 1fr
  }
  .review-actions {
    align-items: stretch
  }
  .review-actions .btn,
  .review-actions form {
    width: 100%
  }
  .shop-product-image {
    min-height: 220px
  }
  .cart-line input {
    max-width: 120px
  }
  .profile-detail-item {
    grid-template-columns: 1fr;
    gap: 4px
  }
  .tracking-route-map {
    min-height: 440px
  }
  .tracking-map-label {
    width: calc(100% - 36px);
    text-align: left
  }
  .tracking-map-label-destination {
    top: 18px;
    right: 18px
  }
  .tracking-map-label-origin {
    left: 18px;
    bottom: 18px
  }
  .shop-catalog.is-list .shop-product-body,
  .shop-catalog.is-list .shop-add-form {
    grid-template-columns: 1fr
  }
  .shop-catalog.is-list .product-meta,
  .shop-catalog.is-list .shop-purchase-row,
  .shop-catalog.is-list .single-price-row,
  .shop-catalog.is-list .price-list,
  .shop-catalog.is-list .shop-add-form {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    text-align: left
  }
  .shop-catalog.is-list .single-price-row {
    justify-content: flex-start
  }
  .shop-catalog.is-list .shop-add-form {
    grid-template-columns: minmax(0, 1fr) 46px 58px
  }
  .shop-catalog.is-list .shop-add-form input,
  .shop-catalog.is-list .shop-add-form select,
  .shop-catalog.is-list .shop-add-form .btn {
    min-height: 34px;
    font-size: 13px
  }
  .shop-catalog.is-list .shop-add-form .btn {
    min-width: 58px;
    padding: 6px 8px;
    gap: 5px
  }
  .cart-line {
    grid-template-columns: 54px minmax(0, 1fr) 56px auto;
    gap: 10px;
    align-items: start
  }
  .cart-line img {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 54px;
    height: 74px;
    align-self: start
  }
  .cart-special-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 54px;
    height: 54px;
    align-self: start
  }
  .cart-special-icon i {
    width: 22px;
    height: 22px
  }
  .cart-info {
    display: contents
  }
  .cart-info h3 {
    grid-column: 2 / 5;
    grid-row: 1
  }
  .cart-info p {
    grid-column: 2 / 5;
    grid-row: 2;
    margin-top: 4px
  }
  .cart-line .pluspoints-badge {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    margin-top: 0
  }
  .cart-line .pluspoints-badge span {
    display: none
  }
  .cart-line input {
    grid-column: 3;
    grid-row: 3;
    max-width: 56px;
    min-height: 36px;
    padding: 6px 7px;
    font-size: 16px;
    text-align: center
  }
  .cart-fixed-qty {
    grid-column: 3;
    grid-row: 3;
    max-width: 56px;
    min-height: 36px;
    padding: 6px 7px;
    font-size: 16px
  }
  .cart-line > strong {
    grid-column: 4;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    color: var(--blue);
    font-size: 18px;
    white-space: nowrap
  }
  .cart-totals {
    gap: 7px;
    font-size: 21px
  }
  .cart-totals div {
    gap: 10px
  }
  .cart-totals span {
    font-size: 18px
  }
  .orders-table {
    gap: 12px;
    padding: 18px
  }
  .orders-head {
    display: none
  }
  .orders-row,
  .order-products-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fff
  }
  .orders-row > *,
  .order-products-row > * {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    border-top: 1px solid rgba(9, 35, 61, .08);
    text-align: right
  }
  .orders-row > *:first-child,
  .order-products-row > *:first-child {
    border-top: 0;
    padding-top: 0
  }
  .orders-row > *:last-child,
  .order-products-row > *:last-child {
    padding-bottom: 0
  }
  .orders-row > *:before,
  .order-products-row > *:before {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    text-align: left;
    text-transform: uppercase
  }
  .orders-table:not(.order-products-table) .orders-row > :nth-child(1):before {
    content: "Order ID"
  }
  .orders-table:not(.order-products-table) .orders-row > :nth-child(2):before {
    content: "Status"
  }
  .orders-table:not(.order-products-table) .orders-row > :nth-child(3):before {
    content: "Date added"
  }
  .orders-table:not(.order-products-table) .orders-row > :nth-child(4):before {
    content: "Date in status"
  }
  .orders-table:not(.order-products-table) .orders-row > :nth-child(5) {
    justify-content: flex-end
  }
  .order-products-table .order-products-row > :nth-child(1):before {
    content: "Product"
  }
  .order-products-table .order-products-row > :nth-child(2):before {
    content: "Product ID"
  }
  .order-products-table .order-products-row > :nth-child(3):before {
    content: "Qty"
  }
  .order-products-table .order-products-row > :nth-child(4):before {
    content: "Price"
  }
  .order-products-table .order-products-row > :nth-child(5):before {
    content: "PLUSPOINTS+"
  }
  .order-products-table .order-products-row > :nth-child(6):before {
    content: "VAT"
  }
  .order-products-table .order-products-row > :first-child {
    align-items: flex-start
  }
  .brand-project {
    align-items: flex-start;
    flex-direction: column
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column
  }
}
