:root {
  --font-body-family: Helvetica, Arial, sans-serif;
  --color-base-text: 50, 50, 50;
  --color-base-accent-1: 106, 174, 149;
  --color-base-accent-2: 255, 181, 1;
  --color-base-background-1: 255, 255, 255;
  --color-base-solid-button-labels: 255, 255, 255;
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --page-width: 120rem;
  --grid-mobile-horizontal-spacing: 8px;
  --grid-desktop-horizontal-spacing: 16px;
  --buttons-radius: 40px;
  --inputs-radius: 6px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgb(var(--color-base-text));
  background: rgb(var(--color-base-background-1));
}
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button));
  border-radius: var(--buttons-radius);
  min-width: 12rem;
  min-height: 4.5rem;
  transition: background-color 0.2s;
}
.button:hover {
  background-color: rgb(var(--color-base-accent-2));
}
.button--secondary {
  background-color: rgb(var(--color-base-accent-2));
}
.grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}
.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.announcement-bar {
  background: #6aae95;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
  border-bottom: 0.1rem solid rgba(50, 50, 50, 0.08);
}

.header-wrapper {
  background: #fff;
  border-bottom: 0.1rem solid rgba(50, 50, 50, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.header__heading-link {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  max-width: 160px;
}
.header__heading-logo {
  width: 100%;
  height: auto;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__icon {
  color: rgb(var(--color-base-text));
  font-size: 2.2rem;
  text-decoration: none;
  position: relative;
}
.cart-count-bubble {
  position: absolute;
  top: -0.8rem;
  right: -1rem;
  background: red;
  color: #fff;
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.header__inline-menu {
  display: none;
}
@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
    margin: 0 auto;
  }
  .header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0 1rem;
  }
  .header__menu-item {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem;
    font-size: 1.6rem;
  }
  .header__menu-item:hover {
    color: #6aae95;
  }
}

.product {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 2rem;
}
.product__media-wrapper {
  flex: 1 1 50%;
  min-width: 0;
  position: sticky;
  top: 60px;
}
.product__info-wrapper {
  flex: 1 1 45%;
}
.product-gallery {
  width: 100%;
}
.main-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.main-image-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fafafa;
}
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.gallery-nav-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  color: #333;
  transition: all 0.2s;
  flex-shrink: 0;
}
.gallery-nav-btn:hover {
  background: #6aae95;
  color: #fff;
  border-color: #6aae95;
}
.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.gallery-nav-btn:disabled:hover {
  background: none;
  color: #333;
  border-color: #ddd;
}
.thumbnail-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.thumbnail-strip::-webkit-scrollbar {
  display: none;
}
.thumbnail-strip img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
  background: #fafafa;
}
.thumbnail-strip img:hover {
  border-color: #6aae95;
}
.thumbnail-strip img.active {
  border-color: #333;
}

.product__title h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.price {
  font-size: 2rem;
  margin: 1rem 0;
}
.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: rgba(var(--color-base-text), 0.75);
  font-size: 1.6rem;
  margin-left: 1rem;
}
.price-item--sale {
  color: red;
  font-size: 2.4rem;
  font-weight: 700;
}
.badge {
  background: rgb(var(--color-base-accent-2));
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4rem;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.custom_view_wrapper {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  margin: 1.5rem 0;
  font-size: 1.4rem;
}
.pvq_vistor_content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-form__input {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.product-form__input input[type='radio'] {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  height: 1px;
  width: 1px;
}
.product-form__input input[type='radio']+label {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border: 1px solid #6aae95;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.4rem;
}
.product-form__input input[type='radio']:checked+label {
  background: #6aae95;
  color: #fff;
}
.quantity {
  display: flex;
  width: fit-content;
  border: 1px solid #ccc;
  border-radius: var(--inputs-radius);
}
.quantity__button {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
}
.quantity__input {
  width: 5rem;
  text-align: center;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6rem;
  -moz-appearance: textfield;
}
.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.my_multicolumn {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e9e9e9;
  padding-top: 2rem;
  margin-top: 2rem;
}
.my_multicolumn_card {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 749px) {
  .my_multicolumn_card {
    width: 100%;
  }
}
.product__description {
  margin: 3rem 0;
  line-height: 1.6;
}
.product__description img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

.product-recommendations {
  margin: 4rem auto;
}
.product-recommendations__heading {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.card-wrapper {
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.card {
  border-radius: 0.4rem;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card__inner {
  position: relative;
}
.card__media img {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}
.card__content {
  padding: 1.5rem 1rem;
}
.card__heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card__heading a {
  text-decoration: none;
  color: #000;
}
.quick-add__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem;
  background: #ffb501;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 1rem;
}
.quick-add__submit i {
  background: #6aae95;
  padding: 0.5rem 1rem;
  border-radius: 2rem 0 0 2rem;
  margin-left: -0.8rem;
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}
.footer__blocks-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-block__heading {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.footer-block__details-content {
  list-style: none;
}
.footer-block__details-content li {
  margin-bottom: 1rem;
}
.footer-block__details-content a {
  color: rgba(50, 50, 50, 0.75);
  text-decoration: none;
}
.footer-block__details-content a:hover {
  color: #6aae95;
}
.footer__copyright {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(50, 50, 50, 0.7);
}

.multicolumn-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
  background: #6aae95;
  padding: 2rem 0;
}
.multicolumn-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
}

.small-hide {
  display: block;
}
@media screen and (max-width: 749px) {
  .small-hide {
    display: none;
  }
}
.footer-block.grid__item {
  text-align: center;
  width: 100%;
}
.order-form-wrapper {
  max-width: 560px;
  margin: 6rem auto 3rem;
  padding: 0 1.5rem;
}

.order-form-container {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(223, 165, 76, 0.2);
}

.order-form-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgb(50, 50, 50);
  margin-bottom: 0.8rem;
  text-align: center;
}

.order-form-subtitle {
  font-size: 1.4rem;
  color: rgba(50, 50, 50, 0.7);
  text-align: center;
  margin-bottom: 2.5rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(50, 50, 50);
  margin-left: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: rgb(50, 50, 50);
  background: #fff;
  border: 1px solid rgba(50, 50, 50, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #6aae95;
  box-shadow: 0 0 0 3px rgba(223, 165, 76, 0.15);
}

.form-input::placeholder {
  color: rgba(50, 50, 50, 0.4);
}

.form-input.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 1.2rem;
  color: #e74c3c;
  min-height: 1.8rem;
  margin-left: 0.5rem;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 2rem;
  background: #6aae95;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: #ffb501;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(223, 165, 76, 0.3);
}

.form-submit-btn i {
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.form-submit-btn:hover i {
  transform: translateX(3px);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: rgba(50, 50, 50, 0.6);
}

.form-note i {
  color: #6aae95;
  font-size: 1.3rem;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(50, 50, 50, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: rgb(50, 50, 50);
  background: rgba(0, 0, 0, 0.05);
}

.popup-icon {
  margin-bottom: 1.5rem;
}

.popup-icon i {
  font-size: 5.5rem;
  color: #27ae60;
}

.popup-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(50, 50, 50);
  margin-bottom: 1rem;
}

.popup-message {
  font-size: 1.5rem;
  color: rgba(50, 50, 50, 0.8);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.popup-btn {
  padding: 1.2rem 3rem;
  background: #6aae95;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
}

.popup-btn:hover {
  background: #ffb501;
  box-shadow: 0 4px 12px rgba(223, 165, 76, 0.3);
}

@media screen and (max-width: 480px) {
  .order-form-container {
    padding: 2rem 1.5rem;
  }

  .order-form-title {
    font-size: 2rem;
  }

  .popup-container {
    padding: 2.5rem 1.5rem 2rem;
  }

  .popup-title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 576px) {
  .product {
    flex-direction: column;
  }
    .product__media-wrapper, .product__info-wrapper, .grid--2-col-tablet-down .grid__item {
      flex: auto;
      width: 100%;
      max-width: 100%;
      position: relative;
      top: 0;
    }
        .grid--2-col-tablet-down {
          flex-direction: column;
        }
}