* {
  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: 30px;
  font-size: 14px;
  font-weight: 500;
}

.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:100009005 !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;
  }
  .product-add-to-cart-btn {
      min-height: 30px;
      font-size: 12px;
      font-weight: 500;
    }


  .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;
  }
}

/* Nested header menu dropdowns */
.box-nav-menu .sub-menu_list li.has-children {
  position: relative;
  
}

.box-nav-menu .sub-menu_list-nested {
  position: absolute;
  left: calc(100% - 8px);
  top: 0;
  min-width: 220px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.box-nav-menu .sub-menu_list li.has-children:hover > .sub-menu_list-nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mb-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-submenu-list .mb-nav-item + .mb-nav-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mb-submenu-panel .mb-panel-body {
  padding-top: 0.5rem;
}

/* Mobile offcanvas is used up to xl (1199px). Theme only forced
   .mb-panel .sub-menu visible under 991px, so tablet widths stayed hidden.
   Keep dropdown children visible whenever they are inside a slide panel. */
   
.mb-nav-link .icon-ArrowCaretRight{
    margin-right: 5px;
}
.mb-panel .sub-menu {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  box-shadow: none !important;
  border-top: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  background: transparent !important;
}

.mb-panel .sub-menu_list,
.mb-panel .sub-menu_list-nested {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-panel .sub-menu_list li,
.mb-panel .sub-menu_list-nested li {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mb-panel .sub-menu_list-nested {
  position: static !important;
  left: auto !important;
  top: auto !important;
  min-width: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  padding-left: 16px !important;
  background: transparent !important;
}

.mb-panel .sub-menu_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.mb-panel .sub-menu_link .text {
  color: var(--black);
}

.mb-panel .sub-menu_link .text::before {
  display: none;
}
/*
 * Shop / category product grid
 * Theme .tf-col-3 forces 3 columns at all breakpoints; on mobile that
 * makes cards too narrow. Use 2 columns on small screens instead.
 */
.wrapper-shop.shop-product-grid,
.wrapper-shop.tf-grid-layout.tf-col-3 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 20px;
}

.wrapper-shop.shop-product-grid > *,
.wrapper-shop.tf-grid-layout.tf-col-3 > * {
  min-width: 0;
  max-width: 100%;
}

.wrapper-shop .card-product {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.wrapper-shop .card-product_wrapper,
.wrapper-shop .card-product_info {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.wrapper-shop .card-product_wrapper .product-img,
.wrapper-shop .card-product_wrapper img {
  width: 100%;
  max-width: 100%;
}

.wrapper-shop .card-product_info .name-product {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.wrapper-shop .product-action_bot {
  left: 6px;
  right: 6px;
  bottom: 6px;
}

.wrapper-shop .product-action_bot > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.wrapper-shop .product-add-to-cart-btn,
.wrapper-shop .tf-btn.type-2.w-100 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.wrapper-shop .product-add-to-cart-btn__content {
  white-space: nowrap;
}

.wrapper-shop .product-badge_list {
  z-index: 3;
  max-width: calc(100% - 16px);
}

.wrapper-shop .product-badge_item {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .wrapper-shop.shop-product-grid,
  .wrapper-shop.tf-grid-layout.tf-col-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 18px;
  }

  .wrapper-shop .card-product {
    gap: 6px;
  }

  .wrapper-shop .card-product_info {
    gap: 4px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .wrapper-shop .card-product_info .name-product {
    font-size: 13px;
    line-height: 1.35;
  }

  .wrapper-shop .card-product_info .price-wrap {
    font-size: 13px;
  }

  .wrapper-shop .product-add-to-cart-btn,
  .wrapper-shop .tf-btn.type-2.w-100 {
    min-height: 34px;
    padding: 6px 8px !important;
    font-size: 11px;
    letter-spacing: 0.01em;
    gap: 0.25rem;
  }

  .wrapper-shop .product-add-to-cart-btn .icon,
  .wrapper-shop .tf-btn.type-2 .icon {
    font-size: 13px;
    flex-shrink: 0;
  }

  .wrapper-shop .product-badge_item {
    padding: 1px 8px;
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .wrapper-shop.shop-product-grid,
  .wrapper-shop.tf-grid-layout.tf-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 32px;
  }
}

@media (min-width: 1200px) {
  .wrapper-shop.shop-product-grid,
  .wrapper-shop.tf-grid-layout.tf-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 40px;
  }

  .wrapper-shop .product-action_bot {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

/* Out of stock badge (same positioning system as Sale/New/Bestseller) */
.product-badge_list--end {
  left: auto;
  right: 8px;
  justify-content: flex-end;
}

@media (min-width: 1200px) {
  .product-badge_list--end {
    right: 16px;
  }
}

.product-badge_item.out-of-stock {
  background: #f2f4f7;
  color: #667085;
  border: 1px solid #d0d5dd;
}

.product-out-of-stock-btn,
.product-out-of-stock-btn.disabled,
.product-out-of-stock-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.flat-wrap-media-product {
    box-shadow: 0px 1px 4px #00000040;
    border-radius: 20px;
}
.product-infor-name{
    font-size: 26px;
    text-transform: uppercase;
}
.product-infor-name p{
    font-weight:400;
}
.product-infor-price{
    padding: 10px 0;
    border-top: 2px solid #de6717;
    /*border-bottom: 2px solid #dc6516;*/
    width: 100%;
    font-weight: 400;
    color: black;
}
h6.font-instrument_serif{
    letter-spacing: 0%;
    color: black;
    font-size: 18px;
    font-weight: 500 !important;
    text-transform: uppercase;
}

.h-48{
    height:48px !important;
}

.tf-product-info-list{
    font-weight:400 !important;
}

.social-icon{
    padding: 5px;
    border-radius: 24%;
    box-shadow: rgb(247 114 25 / 22%) 0px 50px 100px -20px, rgb(247 114 25 / 38%) 0px 30px 60px -30px, rgb(0 0 0 / 31%) 0px -2px 6px 0px inset;
}

.wi-400{
    max-width:400px;
    width:100%;
}
.ajay-10{
    gap:10px !important;
}

.global{
    width: 20px;
    margin-right: 7px;
    filter: blur(0px) invert(1);
}

.sport-24by7 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 25px;
}

.sport-img {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-img img.global {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.sport-dis {
    flex: 1;
}

.sport-h5 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}

.sport-dis p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .sport-24by7 {
        gap: 10px;
        padding: 10px 12px;
    }

    .sport-img {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }

    .sport-img img.global {
        width: 45px;
        height: 45px;
    }

    .sport-h5 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .sport-dis p {
        font-size: 11px;
    }
}
.about-al-section {
    background: #fff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.02);
}
.about-heading{
    font-size:32px !important;
}

.about-al-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #eef2f6;
    box-shadow: 0 12px 40px rgba(0, 0, 128, 0.08), 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease;
}

.about-al-image-wrapper:hover {
    transform: scale(1.005);
    box-shadow: 0 20px 56px rgba(0, 0, 128, 0.12), 0 8px 24px rgba(0, 0, 0, 0.03);
}

.about-al-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about-al-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-al-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 128, 0.04);
    pointer-events: none;
}

.about-al-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #f60;
    background: rgba(255, 102, 0, 0.06);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 102, 0, 0.10);
    width: max-content;
}

.about-al-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 3.25rem;
    line-height: 1.12;
    color: #000080;
    letter-spacing: -0.02em;
}



.about-al-accent {
    width: 72px;
    height: 4px;
    background: #f60;
    border-radius: 4px;
    flex-shrink: 0;
}

.about-al-description {
    color: #000000;
    font-weight: 400;
}

.about-al-tag {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .01em;
    color: #000080;
    background: rgba(0, 0, 128, 0.04);
    padding: .3rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 128, 0.06);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    text-decoration: none;
}

.about-al-tag:hover {
    background: rgba(255, 102, 0, 0.06);
    border-color: rgba(255, 102, 0, 0.15);
    color: #f60;
}

.btn-al-orange {
    background: #f60;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 30px;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.25);
    transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-al-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0, transparent 60%);
    pointer-events: none;
}

.btn-al-orange:hover {
    background: #e65c00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.30);
}

.btn-al-orange:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.20);
}

.btn-al-orange svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.btn-al-orange:hover svg {
    transform: translateX(4px);
}

.about-al-divider-dot {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #000080;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .04em;
    opacity: .5;
}

.about-al-divider-dot::before {
    content: '●';
    color: #f60;
    font-size: .5rem;
    opacity: .6;
}

@media(max-width:767.98px) {
    .about-al-section {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .about-al-heading {
        font-size: 2.5rem;
    }

    .about-al-description {
        font-size: 1rem;
    }

    .btn-al-orange {
        padding: .8rem 2rem;
        font-size: .9rem;
        width: 100%;
        justify-content: center;
    }

    .about-al-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media(max-width:575.98px) {
    body {
        padding: 1rem;
    }

    .about-al-section {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .about-al-heading {
        font-size: 2rem;
    }

    .about-al-eyebrow {
        font-size: .65rem;
        padding: .25rem .85rem;
    }

    .about-al-tag {
        font-size: .65rem;
        padding: .2rem .75rem;
    }

    .btn-al-orange {
        font-size: .85rem;
        padding: .7rem 1.6rem;
    }

    .btn-al-orange svg {
        width: 18px;
        height: 18px;
    }
}

@media(max-width:380px) {
    .about-al-heading {
        font-size: 1.65rem;
    }
}

@media(prefers-reduced-motion:reduce) {

    .about-al-image-wrapper,
    .about-al-image-wrapper img,
    .btn-al-orange,
    .btn-al-orange svg,
    .about-al-tag {
        transition: none !important;
        transform: none !important;
    }

    .about-al-image-wrapper:hover,
    .about-al-image-wrapper:hover img,
    .btn-al-orange:hover,
    .btn-al-orange:hover svg {
        transform: none !important;
    }
}

.product-out-of-stock-btn,
.product-out-of-stock-btn.disabled,
.product-out-of-stock-btn:disabled,
.product-card-oos-action,
.product-card-oos-action:disabled {
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
  font-weight:500;
}

.shop-infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
  margin-top: 8px;
}

.shop-infinite-scroll-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0 8px;
  color: #667085;
  font-size: 0.875rem;
}

.shop-infinite-scroll-error {
  padding: 16px 0 8px;
}

.tf-page-heading .category-page-heading {
  display: inline-block;
  position: relative;
  max-width: 100%;
  font-size: 26px;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding: 0 0 8px;
}

.tf-page-heading .category-page-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  max-width: 100%;
  height: 2px;
    background: rgb(246 114 25);
  pointer-events: none;
}

/* ==================================================
   Breadcrumb banner (page heading)
   Home icon + HOME share one clickable item
   ================================================== */
.tf-page-heading.tf-page-heading--breadcrumb .content,
.tf-page-heading .content.text-start {
  text-align: left;
}

.tf-page-heading .tf-breadcrumb-nav {
  display: block;
  max-width: 100%;
}

.tf-page-heading .breadcrumb.tf-breadcrumb-list,
.tf-page-heading .tf-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.tf-page-heading .tf-breadcrumb-item,
.tf-page-heading .tf-breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a2332;
}

.tf-page-heading .tf-breadcrumb-sep {
  color: #8b93a1;
  flex-shrink: 0;
}

.tf-page-heading .tf-breadcrumb-sep .icon {
  font-size: 10px;
  line-height: 1;
}

.tf-page-heading .tf-breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #1a2332;
  text-decoration: none;
}

.tf-page-heading .tf-breadcrumb-home:hover,
.tf-page-heading .tf-breadcrumb-home:focus-visible {
  color: var(--primary, #d80027);
  text-decoration: none;
}

.tf-page-heading .tf-breadcrumb-home__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  line-height: 0;
}

.tf-page-heading .tf-breadcrumb-home__icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.tf-page-heading .tf-breadcrumb-home__label {
  display: inline-block;
  line-height: 1.2;
}

.tf-page-heading .tf-breadcrumb-item .link:not(.tf-breadcrumb-home) {
  color: #1a2332;
  text-decoration: none;
  white-space: nowrap;
}

.tf-page-heading .tf-breadcrumb-item .link:not(.tf-breadcrumb-home):hover,
.tf-page-heading .tf-breadcrumb-item .link:not(.tf-breadcrumb-home):focus-visible {
  color: var(--primary, #d80027);
}

.tf-page-heading .tf-breadcrumb-current {
  display: inline;
  color: #5c6573;
  font-weight: 500;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 767px) {
  .tf-page-heading .tf-breadcrumb-item,
  .tf-page-heading .tf-breadcrumb-sep {
    font-size: 10px;
    gap: 4px;
  }
  
  

  .tf-page-heading .breadcrumb.tf-breadcrumb-list,
  .tf-page-heading .tf-breadcrumb-list {
    gap: 2px 2px;
  }

  .tf-page-heading .tf-breadcrumb-home {
    gap: 5px;
  }

  .tf-page-heading .tf-breadcrumb-home__icon,
  .tf-page-heading .tf-breadcrumb-home__icon svg {
    width: 12px;
    height: 12px;
  }

  .tf-page-heading .tf-breadcrumb-sep .icon {
    font-size: 9px;
  }
    .tf-page-heading .category-page-heading{
        font-size: 12px;
    }
    .tf-page-heading--breadcrumb .position-relative{
        padding: 70px 0 0;
    }
    .tf-page-heading--breadcrumb .content{
        padding-top: 70px;
    }
    .tf-breadcrumb-nav .tf-breadcrumb-list .tf-breadcrumb-home, .tf-breadcrumb-nav .tf-breadcrumb-list .tf-breadcrumb-current{
        font-size: 10px;
    }
}

.modal-search .header-search-category-link {
  cursor: pointer;
}

#modalSearch.modal-search.search-popup {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  background: #fff;
  z-index: 10000010 !important;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 !important;
}

#modalSearch.modal-search.search-popup .modal-dialog {
  position: static;
  inset: auto;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  transform: none !important;
  background: #fff;
}

#modalSearch.modal-search.search-popup .modal-content {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 100dvh;
  height: auto !important;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff !important;
  box-shadow: none;
  overflow: visible;
}

#modalSearch.modal-search.search-popup .ctn-wrap {
  min-height: 100dvh;
  background: #fff;
}

body.search-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

body.search-modal-open .modal-backdrop.show {
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 10000009 !important;
}

.modal-search .card-product[data-product-url] {
  cursor: pointer;
}

.modal-search .header-search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.modal-search .header-search-results-grid > .card-product {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .modal-search .header-search-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .modal-search .header-search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tf-page-heading .category-page-heading {
    margin: 0 0 6px;
    padding: 0 0 0px;
  }
  .tf-page-heading .tf-breadcrumb-current {
    color: #000000;
  }
  .tf-page-heading .tf-breadcrumb-sep {
    color: #000000;
  }
}

@media (max-width: 575.98px) {
  .modal-search .header-search-results-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.checkout-login-prompt {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.checkout-email-registered {
  margin-top: 4px;
}


/* Checkout login popup — centered dialog over dimmed full-screen overlay */
#checkoutLoginModal.checkout-login-popup {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100vh;
  margin: 0 !important;
  padding: 12px !important;
  z-index: 12000000 !important;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#checkoutLoginModal.checkout-login-popup:not(.show) {
  display: none !important;
}

#checkoutLoginModal.checkout-login-popup .modal-dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 520px;
  margin: auto !important;
  padding: 0 !important;
  pointer-events: auto;
  transform: none !important;
}

#checkoutLoginModal.checkout-login-popup.show .modal-dialog {
  transform: none !important;
}

#checkoutLoginModal.checkout-login-popup .modal-content,
#checkoutLoginModal.checkout-login-popup .checkout-login-modal {
  width: 100%;
  max-height: calc(100dvh - 24px);
  margin: 0;
  padding: 28px 32px !important;
  border: 0;
  border-radius: 16px !important;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  overflow-x: hidden;
  overflow-y: auto;
  cursor: default !important;
}

#checkoutLoginModal .checkout-login-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0;
}

#checkoutLoginModal .checkout-login-modal__title {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}

#checkoutLoginModal .checkout-login-modal__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  line-height: 1;
  cursor: pointer;
}

#checkoutLoginModal .checkout-login-modal__close .icon {
  font-size: 20px;
  line-height: 1;
}

#checkoutLoginModal .checkout-login-modal__body {
  width: 100%;
}

#checkoutLoginModal .checkout-login-modal__form .form-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#checkoutLoginModal .checkout-login-modal__form .tf-field {
  width: 100%;
  margin: 0;
}

#checkoutLoginModal .checkout-login-modal__form .tf-field > label {
  display: block;
  margin-bottom: 8px;
}

#checkoutLoginModal .checkout-login-modal__form input.style-3,
#checkoutLoginModal .checkout-login-modal__form input.password-field {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#checkoutLoginModal .checkout-login-modal__form .password-wrapper {
  position: relative;
  width: 100%;
}

#checkoutLoginModal .checkout-login-modal__form .password-wrapper .toggle-pass {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}

#checkoutLoginModal .checkout-login-modal__remember {
  margin-top: 0;
}

#checkoutLoginModal .checkout-login-modal__remember input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
}

#checkoutLoginModal .checkout-login-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
  margin-bottom: 0;
}

#checkoutLoginModal .checkout-login-modal__actions .tf-btn {
  width: 100%;
  min-height: 48px;
}

#checkoutLoginModal .checkout-login-modal__actions #checkout-login-form-general-error:not(.d-none) {
  margin-top: 8px;
}

.modal-backdrop.checkout-login-backdrop,
body.checkout-login-modal-open .modal-backdrop.show {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: none;
  opacity: 1 !important;
  z-index: 11999999 !important;
}

html.checkout-login-modal-open,
body.checkout-login-modal-open {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

body.checkout-login-modal-open #goTop,
body.checkout-login-modal-open .floating-wpp,
body.checkout-login-modal-open #WAButton {
  z-index: 11999990 !important;
  pointer-events: none !important;
}

body.checkout-login-modal-open .tf-header,
body.checkout-login-modal-open .tf-topbar,
body.checkout-login-modal-open header.header-v2 {
  z-index: 11999990 !important;
}

@media (max-width: 991.98px) {
  #checkoutLoginModal.checkout-login-popup .modal-dialog {
    width: calc(100% - 48px);
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  #checkoutLoginModal.checkout-login-popup {
    padding: 12px !important;
  }

  #checkoutLoginModal.checkout-login-popup .modal-dialog {
    width: calc(100% - 24px);
    max-width: none;
  }

  #checkoutLoginModal.checkout-login-popup .modal-content,
  #checkoutLoginModal.checkout-login-popup .checkout-login-modal {
    padding: 20px !important;
    max-height: calc(100dvh - 24px);
  }

  #checkoutLoginModal .checkout-login-modal__title {
    font-size: 1.25rem;
  }

  #checkoutLoginModal .checkout-login-modal__actions {
    margin-top: 20px;
  }
  .out-of-stock{
      display:none;
  }
}

/* Homepage: latest-products 2-col grid must shrink on mobile.
   Default `1fr` is minmax(auto, 1fr); product cards' min-content (~246px)
   made two columns ~528px wide and forced horizontal page scroll. */
.grid-col-2-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.grid-col-2-home > * {
  min-width: 0;
  max-width: 100%;
}

/* Mobile header logo: uploaded PNG can be thousands of px wide.
   Without a hard max-width it expands header/document horizontally. */
.tf-header .text-logo.d-xl-none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.tf-header .text-logo.d-xl-none img,
.tf-header img.mobile-width {
  width: 130px;
  max-width: min(130px, 100%);
  height: auto;
  display: block;
}

.tf-header .header-center {
  overflow: hidden;
  min-width: 0;
}


/* Desktop nav dropdowns are position:absolute below the bar; overflow:hidden
   (added for mobile logo containment) clips them entirely on xl+ viewports. */
@media (min-width: 1200px) {
  .tf-header .header-center {
    overflow: visible;
  }
}

/* Contain infinite testimonial clones so they cannot widen the document. */
.infinite-slide_group,
.infiniteSlide-testimonial {
  overflow: hidden;
  max-width: 100%;
}

/* Shop-by-category swiper: keep peek slides inside the carousel only. */
.section-category .tf-swiper {
  overflow: hidden;
  max-width: 100%;
}

/* Footer brand line used width:max-content + large clamp() font, which
   made "Altino Powering Your Life" wider than the mobile viewport. */
.footer-logo-div {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.footer-logo-div h2 {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.1;
}
.style-42{
    border-radius: 31px;
    border: none;
    outline: none;
    padding-left: 10px;
    border: 2px solid #666464;
    width: 100%;
}
.cart-product-heading{
    font-size:26px;
    text-transform:uppercase;
    
}
.card-price{
    border-top: 1px solid #00000045;
    padding-top: 12px;
}

.welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}

.welcome-content {
    text-align: center;
}

.user-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    /*border: 1px solid #cfc7bd;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f342c;
    font-size: 24px;
}

.welcome-title {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #3d332d;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.welcome-text {
    font-size: 13px;
    color: #514a45;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 24px;
    }

    .welcome-text {
        font-size: 12px;
    }
}

.imag-abs{
    position: absolute;
    left: 30px;
}

@media (max-width: 768px) {
 .imag-abs{
    left: 0px;
    bottom: -18px;
    transform: rotate(90deg);
  }
}

.fw-600{
    font-weight:600;
}

.bor-rad{
    border: 1px solid #00000033;
    border-radius: 20px;
}

.fww{
    font-weight: 600 !important;
    font-size: 28px;
}
.hh{
    height:unset !important;
}

.bt{
    border-top:1px solid #00000033;
    padding-top: 10px;
}

.grand-total{
    font-size:20px;
    font-weight:600 !important;
    text-transform:uppercase;
}

.fboco{
    font-weight: 600 !important;
    text-transform: uppercase;
}