@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.header {
  font-family: "Bricolage Grotesque", sans-serif;
}

.zbtn__count {
  top: 0;
  transform: translate(45%, -25%);
}

.menu {
  transition: 450ms;
  background-color: #ffffff;
}

.heading,
.isearch-heading {
  font-family: "Inter", sans-serif;
}

.product-quantity-input-wrapper {
  display: flex;
}

.product-quantity-input {
  border: none;
  padding: 0;
  margin: 0;
  background: #f7f7f7;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-quantity-input,
.product-quantity-button {
  outline: none;
}

.product-quantity-input::-webkit-outer-spin-button,
.product-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  margin: 0;
  background: #F1F1F1FF;
  width: 50px;
  height: 50px;
  color: #8A8A8A;
  cursor: pointer;
  transition: 300ms background ease, color 250ms ease;
  user-select: none;
}

.product-quantity-button:hover {
  background: #8A8A8A;
  color: #000;
}

.product-quantity-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-quantity-button.disabled:hover {
  color: #8A8A8A;
  background: #F1F1F1FF;
}

.product-main__head--heading-baseline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.heading.heading_left.product-main__head--manufacturers {
  font-size: 12px;
  font-weight: 500;
}

@media screen and (min-width: 1286px) {
  .menu-item {
    color: #202020;
    font-weight: 550;
  }
}

@media screen and (min-width: 900px) {
  .product-main__body--btns-wrap #button-cart.btn__buy {
    order: 1;
  }
}

.delivery_tabs {
  display: flex;
  flex-direction: column;
  order: 4;
  margin: 0;
  padding: 0;
}

.delivery_tabs-wrapper {
  border: 1px solid #bdbdbd;
  border-top: transparent;
}

.delivery_tabs-header {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.delivery_tab-button {
  border-bottom: 2px solid #bdbdbd;
  color: #bdbdbd;
  width: 100%;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.delivery_tab-button-icon {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery_tab-button-icon svg {
  stroke: currentColor;
}

.delivery_tab-button.active {
  border-bottom: 2px solid var(--c2, #202020);
  color: var(--c2, #202020);
}

.delivery_tab {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  flex-direction: column;
}
.delivery_tab.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  height: unset;
}

.delivery_tab-free-shipping-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.delivery_tab-free-shipping-header,
.delivery_tab-free-shipping-input-wrapper {
  padding: 2rem;
  border-bottom: 1px solid #bdbdbd;
}

.delivery_tab-free-shipping-outpu-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  /* margin: 17px 0; */
}

.delivery_tab-free-shipping-output:empty {
  display: none;
}

.delivery_tab-free-shipping-output {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.delivery_tab-free-shipping-output .delivery__row--icn {
  color: var(--c2, #202020);
}

.delivery_tab-free-shipping-header .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c2, #202020);
}

.delivery_tab-free-shipping-header .estimated {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.delivery_tab_button {
  color: #fff;
  background-color: #202020;
  transition: 300ms;
  padding: 10px 15px;
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  width: auto;
  height: auto;
  min-width: auto;
  border: 1px solid #202020;
  position: relative;
  font-size: 12px;
  letter-spacing: 1.43px;
  font-weight: 400;
  transition: 300ms, color 250ms 50ms;
}

.delivery_tab_button:hover {
  background-color: transparent;
  box-shadow: 0 6px 3px -5px rgba(0, 0, 0, 0.1);
  color: #202020;
}

.delivery_tab-free-shipping-input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 2rem;
}

.delivery_tab-free-shipping-input {
  display: flex;
  align-items: center;
}

.delivery_tab-free-shipping-input input {
  height: 100%;
  min-height: 40px;
  max-width: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  padding: 0 1rem;
  margin: 0;
  border: 1px solid #f7f7f7;
  outline: none;
  background: #f7f7f7;
  font-weight: 500;
  font-size: 16px;
  transition: 0.25s ease;
}

.delivery_tab-free-shipping-input input:focus {
  border: 1px solid #202020;
}

.delivery_tab-free-shipping-input input:focus::placeholder {
  color: #202020;
  letter-spacing: 1.2px;
}

.delivery_tab-free-shipping-input input::placeholder {
  color: #bdbdbd; 
  font-size: 14px;
  transition: color 0.25s ease, letter-spacing 0.30s ease;
}

.delivery_tab-returns {
  padding: 2rem;
}

.delivery_tab-returns-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.delivery_tab-returns-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c2, #202020);
}

.delivery_tab-returns-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price__total.price__total--mobile.js_priceTotal {
  color: #f34c20;
}

.price__sale {
  background: #202020;
  color: #fff;
  min-height: 26px;
}
.afterpay__text {
  font-size: 12px
}
@media (min-width: 741px) {
  #product-product h1 {
    font-size: 38px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
  }
}

@media (max-width: 740px) {
  .search__field{
    order:2;
  }
  .product-main__head h1 {
    text-align: left;
    font-weight: 500 !important;
    font-size: 25px !important;
    text-transform: capitalize !important;
    letter-spacing: normal;
  }
  .afterpay__text {
    width: 100%;
    font-size: 12px;
    max-width: 162px;
  }
  .price__sale {
    margin-left: 20px;
  }
  .product__remaining-stock > span{
    font-size: 12px;
  }
  .afterpay__icn svg {
    width: 50px;
  }
}