* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, black, transparent);
  z-index: 1;
  bottom: -25px;
}
.line {
  position: relative;
}
.line::after {
  content: "";
  width: 1px;
  top: -9px;
  height: 38px;
  background: #ffffff;
  position: absolute;
  right: -9px;
}
.line1 {
  position: relative;
}
.line1::before {
  content: "";
  width: 1px;
  top: -9px;
  height: 38px;
  background: #ffffff;
  position: absolute;
  left: -9px;
}
.line2 {
  position: relative;
}
.line2::after {
  content: "";
  width: 1px;
  top: -9px;
  height: 94px;
  background: #00000017;
  position: absolute;
  left: -12px;
}
.line3 {
  position: relative;
}
.line3::before {
  content: "";
  width: 1px;
  top: -9px;
  height: 94px;
  background: #00000017;
  position: absolute;
  right: -12px;
}

.box-shoadow {
  padding: 10px 20px;
  /* border: 1px solid black; */
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.icon-padding {
  padding: 5px;
  margin: 0 8px;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 5px;
}
.blr {
  position: relative;
}
.blr::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #0000000f;
  left: -9px;
  bottom: 0;
}
.blr::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #0000000f;
  right: -9px;
  bottom: 0;
}
.abso {
  position: absolute;
  top: -7px;
  right: -7px;
  background-color: #f77219;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.contact-us {
  padding: 70px 0;
}

.hover-effect::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0px;
  left: 1px;
  background-color: #00000000;
  width: 100%;
  height: 13px;
}

.storefront-toast-container,
.custom-toast-container {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 2147483647 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: min(360px, calc(100vw - 32px));
  pointer-events: none;
  margin: 0;
  padding: 0;
  isolation: isolate;
}

.storefront-toast-container .storefront-toast,
.custom-toast-container .storefront-toast {
  pointer-events: auto;
}

.storefront-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.storefront-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.storefront-toast.is-success {
  border-color: #86efac;
}

.storefront-toast.is-error {
  border-color: #fca5a5;
}

.storefront-toast__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.storefront-toast.is-success .storefront-toast__icon {
  background: #dcfce7;
  color: #15803d;
}

.storefront-toast.is-error .storefront-toast__icon {
  background: #fee2e2;
  color: #b91c1c;
}

.storefront-toast__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #111;
}

.storefront-confirm {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.storefront-confirm[hidden] {
  display: none !important;
}

.storefront-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.storefront-confirm__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.storefront-confirm__dialog--centered {
  text-align: center;
}

.storefront-confirm__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: var(--bg-2, #f5f5f5);
  color: #111;
}

.storefront-confirm__icon[hidden] {
  display: none !important;
}

.storefront-confirm__icon .icon {
  font-size: 1.5rem;
  line-height: 1;
}

.storefront-confirm__title {
  margin: 0 0 10px;
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  line-height: 1.2;
  color: #111;
}

.storefront-confirm__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5b5b5b;
}

.storefront-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.storefront-confirm__dialog--centered .storefront-confirm__actions {
  justify-content: center;
}

.storefront-confirm__btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.storefront-confirm__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.storefront-confirm__btn--cancel {
  background: #fff;
  border-color: #d9d9d9;
  color: #333;
}

.storefront-confirm__btn--cancel:hover:not(:disabled) {
  background: #f7f7f7;
}

.storefront-confirm__btn--danger {
  background: #b42318;
  border-color: #b42318;
  color: #fff;
}

.storefront-confirm__btn--danger:hover:not(:disabled) {
  background: #912018;
  border-color: #912018;
}

.storefront-confirm__btn--primary {
  background: var(--primary, #ea580c);
  border-color: var(--primary, #ea580c);
  color: #fff;
}

.storefront-confirm__btn--primary:hover:not(:disabled) {
  filter: brightness(0.95);
}

@media (max-width: 575px) {
  .storefront-confirm {
    padding: 16px;
  }

  .storefront-confirm__dialog {
    padding: 24px 18px 18px;
    border-radius: 14px;
  }

  .storefront-confirm__title {
    font-size: 24px;
  }

  .storefront-confirm__actions {
    flex-direction: column-reverse;
  }

  .storefront-confirm__btn {
    width: 100%;
  }
}

.product-add-to-cart-btn {
  min-height: 48px;
}

.product-add-to-cart-btn__loader {
  display: none;
}

.product-add-to-cart-btn__loader.d-inline-flex {
  display: inline-flex !important;
}

.product-add-to-cart-btn .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

.cart-coupon-apply-btn,
.cart-coupon-remove-btn {
  min-width: 7.5rem;
}

.cart-coupon-apply-btn:disabled,
.cart-coupon-remove-btn:disabled,
.cart-coupon-form input:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.cart-coupon-btn__loader {
  display: none;
}

.cart-coupon-btn__loader.d-inline-flex {
  display: inline-flex !important;
}

.cart-coupon-apply-btn .spinner-border,
.cart-coupon-remove-btn .spinner-border {
  width: 0.9rem;
  height: 0.9rem;
  border-width: 0.15em;
}

.sidebar-filter .filter-price {
  overflow: visible;
}

.sidebar-filter .filter-price .price-val-range {
  overflow: visible;
  min-height: 12px;
  margin: 4px 0 12px;
  padding: 0 8px;
}

.sidebar-filter .filter-price .price-box {
  width: 100%;
  gap: 16px;
}

.sidebar-filter .filter-price .price-box.tf-grid-layout.tf-col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sidebar-filter .filter-price .box-wrap {
  min-width: 0;
}

.sidebar-filter .filter-price .price-val_wrap {
  width: 100%;
  min-width: 0;
  gap: 8px;
}

.sidebar-filter .filter-price .price-val_wrap .price-val {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  -moz-appearance: textfield;
}

.sidebar-filter .filter-price input.price-val::before {
  content: none;
  display: none;
}

.sidebar-filter .filter-price .price-val_wrap .price-val::-webkit-outer-spin-button,
.sidebar-filter .filter-price .price-val_wrap .price-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 575px) {
  .sidebar-filter .filter-price .price-box.tf-grid-layout.tf-col-2 {
    grid-template-columns: 1fr;
  }
}

/* Storefront header stack: keep topbar/nav above theme .container (z-index: 4566555).
   Inner pages such as /account pull content under the header via negative margin;
   without this, page containers intercept header clicks. */
#wrapper > .tf-topbar {
  position: relative;
  z-index: 10000003;
}

#wrapper > header.tf-header {
  position: sticky;
  z-index: 10000002;
}

.account-heading,
.account-layout {
  position: relative;
  z-index: 1;
}

.account-heading .container,
.account-layout .container {
  z-index: auto;
}

/* Cart / offcanvas stacking
   Theme .container uses z-index: 4566555 and sticky header uses 9999999,
   which sat above Bootstrap's default offcanvas-backdrop (2999). */
.offcanvas-backdrop {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000004 !important;
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

.offcanvas {
  z-index: 10000005 !important;
}

#shoppingCart.popup-shopping-cart,
.offcanvas.popup-shopping-cart {
  position: fixed;
  z-index: 10000005 !important;
}

body.cart-drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Account page heading — compact, responsive */
.account-heading {
  background: var(--bg, #fff);
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-heading__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  min-width: 0;
}

.account-heading__back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.account-heading__back:hover {
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
}

.account-heading__back .icon {
  font-size: 1.25rem;
  line-height: 1;
}

.account-heading__content {
  flex: 1 1 auto;
  min-width: 0;
}

.account-heading__content--solo {
  padding-left: 0;
}

.account-heading__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
  word-break: break-word;
}

.account-heading__subtitle {
  margin: 0.35rem 0 0;
  font-size: clamp(0.8125rem, 1.6vw, 0.875rem);
  line-height: 1.45;
  word-break: break-word;
}

.account-layout.flat-spacing-mix-1 {
  padding-top: 24px;
}

@media (max-width: 991px) {
  .account-heading {
    padding: 1rem 0 0.875rem;
  }

  .account-layout.flat-spacing-mix-1 {
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .account-heading {
    padding: 0.875rem 0 0.75rem;
  }

  .account-heading__inner {
    gap: 0.625rem 0.75rem;
  }

  .account-heading__back {
    width: 2rem;
    height: 2rem;
    margin-top: 0.0625rem;
  }

  .account-heading__back .icon {
    font-size: 1.125rem;
  }

  .account-heading__subtitle {
    margin-top: 0.25rem;
  }

  .account-layout.flat-spacing-mix-1 {
    padding-top: 16px;
    padding-bottom: 48px;
  }
}

/* Account empty states (orders, returns, reviews, etc.) */
.account-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 36rem;
  min-height: 280px;
  margin: 0;
  background: var(--bg, #fff);
  box-sizing: border-box;
}

.account-empty-state__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.account-empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background-color: var(--bg-2);
  color: inherit;
  flex-shrink: 0;
}

.account-empty-state__icon .icon {
  font-size: 1.75rem;
  line-height: 1;
}

.account-empty-state__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  font-weight: 400;
}

.account-empty-state__text {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  line-height: 1.55;
}

.account-empty-state__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
}

@media (min-width: 992px) {
  .account-empty-state {
    min-height: 300px;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 991px) {
  .account-empty-state {
    min-height: 260px;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

@media (max-width: 575px) {
  .account-empty-state {
    max-width: none;
    min-height: 0;
    padding: 1.75rem 1rem;
  }

  .account-empty-state__inner {
    max-width: none;
    padding: 0;
  }

  .account-empty-state__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .account-empty-state__icon .icon {
    font-size: 1.5rem;
  }

  .account-empty-state__text {
    margin-bottom: 1.25rem;
  }

  .account-empty-state__btn {
    width: 100%;
    min-width: 0;
  }
}

/* Account settings forms (profile / password) */
.account-settings {
  width: 100%;
  max-width: 100%;
}

.account-settings-card {
  width: 100%;
  max-width: 36rem;
  margin: 0;
  background: var(--bg, #fff);
  box-sizing: border-box;
}

.account-settings-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-5, rgba(0, 0, 0, 0.08));
}

.account-settings-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-weight: 400;
}

.account-settings-card__subtitle {
  margin: 0;
  line-height: 1.5;
}

.account-settings-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.account-settings-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}

.account-settings-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.account-settings-form .tf-field {
  width: 100%;
  min-width: 0;
}

.account-settings-form .tf-field .style-3,
.account-settings-form .tf-field .password-field {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.account-settings-form .password-wrapper {
  width: 100%;
  max-width: 100%;
}

.account-settings-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 1.5rem;
  width: 100%;
}

.account-settings-form__actions .br-line {
  width: 100%;
  margin: 0 0 1.25rem;
}

.account-settings-form__btn {
  margin-top: 0 !important;
  min-width: 10.5rem;
}

@media (min-width: 576px) {
  .account-settings-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.875rem;
  }
}

@media (min-width: 768px) {
  .account-settings-card {
    max-width: 34rem;
  }

  .account-settings-card__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.35rem;
  }

  .account-settings-form__fields {
    gap: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .account-settings-card {
    max-width: 36rem;
    padding: 1.75rem 1.875rem;
  }

  .account-settings-form__actions {
    margin-top: 1.75rem;
  }

  .account-settings-form__actions .br-line {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {
  .account-settings-card {
    max-width: none;
    padding: 1.25rem 1rem;
  }

  .account-settings-card__header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .account-settings-form__fields {
    gap: 0.875rem;
  }

  .account-settings-form__actions {
    margin-top: 1.25rem;
  }

  .account-settings-form__actions .br-line {
    margin-bottom: 1rem;
  }

  .account-settings-form__btn {
    width: 100%;
    min-width: 0;
  }
}

/* CMS FAQ page accordion (slug: faq only) */
.faq-section {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq-wrapper {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.faq-page-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black, #000);
}

.faq-intro {
  margin: 0 0 1.75rem;
}

.faq-intro > h1:first-child,
.faq-intro > h2:first-child,
.faq-intro > h3:first-child {
  display: none;
}

.faq-intro > *:last-child {
  margin-bottom: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
}

.faq-item {
  margin: 0;
  background: var(--white, #fff);
  border: 1px solid var(--line-6, #e5e5e5);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    border-color var(--duration-default, 200ms) ease,
    box-shadow var(--duration-default, 200ms) ease,
    background-color var(--duration-default, 200ms) ease;
}

.faq-item:hover {
  border-color: var(--line-5, #d4d4d4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq-item:has(.faq-item__button:not(.collapsed)) {
  background: var(--bg-16, #f9f9f6);
  border-color: var(--line-5, #d4d4d4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item__header {
  margin: 0;
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 1rem 1.125rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--black, #000);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-item__button:hover,
.faq-item__button:focus,
.faq-item__button:not(.collapsed) {
  color: var(--black, #000);
  background: transparent;
  box-shadow: none;
}

.faq-item__button:focus-visible {
  outline: 2px solid rgba(216, 0, 39, 0.35);
  outline-offset: -2px;
  z-index: 1;
}

.faq-item__question {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 0.25rem;
}

/* Compact caret: closed ↓ / open ↑ */
.faq-item__button::after {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  padding: 0;
  background-image: none !important;
  background-size: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  opacity: 0.7;
  transform: translateY(-25%) rotate(45deg);
  transition:
    transform var(--duration-default, 200ms) ease,
    opacity var(--duration-default, 200ms) ease;
}

.faq-item__button:not(.collapsed)::after {
  opacity: 0.9;
  transform: translateY(25%) rotate(225deg);
}

.faq-item__answer {
  padding: 0 1.125rem 1.125rem;
  border-top: 1px solid var(--line-6, #e5e5e5);
  margin-top: 0;
  color: var(--text-5, #737373);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item__answer > *:first-child {
  margin-top: 0.875rem;
}

.faq-item__answer > *:last-child {
  margin-bottom: 0;
}

.faq-item__answer a {
  color: var(--primary, #d80027);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  opacity: 0.85;
}

.faq-item__answer ul,
.faq-item__answer ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item__answer p {
  margin-bottom: 0.75rem;
}

@media (max-width: 767.98px) {
  .faq-wrapper {
    max-width: 100%;
  }

  .faq-page-title {
    margin-bottom: 1rem;
  }

  .faq-intro {
    margin-bottom: 1.25rem;
  }

  .faq-accordion {
    gap: 0.5rem;
  }

  .faq-item__button {
    min-height: 3.5rem;
    padding: 0.9375rem 1rem;
    gap: 0.75rem;
  }

  .faq-item__answer {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .faq-item__answer > *:first-child {
    margin-top: 0.75rem;
  }
}

/* Footer newsletter subscribe feedback (keeps form-subcribe layout intact) */
.newsletter-subscribe {
  width: 100%;
}

.newsletter-form-message {
  margin: 0.625rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.newsletter-form-message--error {
  color: #fecaca;
}

.newsletter-form-message--success {
  color: #bbf7d0;
}

.newsletter-subscribe .form-subcribe .btn-action:disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

/* Checkout shipping address UX */
.checkout-shipping-card {
  border: 1px solid var(--line-6, #e5e5e5);
  background: var(--white, #fff);
  padding: 1rem 1.125rem;
}

.checkout-shipping-card__badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--text-5, #737373);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-shipping-card__label {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--black, #000);
}

.checkout-shipping-card__line {
  line-height: 1.5;
}

.checkout-shipping-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--line-6, #e5e5e5);
}

.checkout-shipping-card__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--black, #000);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.checkout-shipping-card__btn--accent {
  color: var(--primary, #d80027);
}

.checkout-shipping-card__btn:hover {
  opacity: 0.75;
}

.box-delivery .checkout-shipping-card__actions .tf-btn {
  min-height: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Account order details: Payment & status — keep content stacked at top */
.dashboard-info.dashboard-info-stack .dash_content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dashboard-info.dashboard-info-stack .dash_content {
    gap: 1.5rem;
  }
}


