* {
  outline: none;
}
body {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  background-color: #fefefe;
}

.megasliderpro {
  width: 100%;
  min-width: 0;
  margin-top: 125px;
}

.swiper-slideshow {
  width: 100%;
  aspect-ratio: 1082 / 445;
  overflow: hidden;
  border-radius: 20px;
}

.swiper-slideshow .swiper-slide,
.swiper-slideshow .swiper-slide > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.swiper-slideshow .bg-image-slider {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.swiper-slideshow .ms-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 15, 19, 0.68) 0%, rgba(8, 15, 19, 0.2) 55%, transparent 80%);
}

.swiper-slideshow .slide-type1,
.swiper-slideshow .slide-type2 {
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 48px 72px;
}

.swiper-slideshow .row-slider-info {
  max-width: 620px;
}

.swiper-slideshow .text-title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.swiper-slideshow .text-sub-title {
  margin-top: 18px;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.45;
}

.swiper-ms-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #13181e;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(19, 24, 30, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.swiper-ms-arrow svg {
  width: 24px;
  height: 24px;
}

.swiper-ms-arrow.ms-prev {
  left: 16px;
}

.swiper-ms-arrow.ms-next {
  right: 16px;
}

.swiper-ms-arrow:hover {
  color: #fff;
  background: #ea4e01;
}

.swiper-ms-arrow:focus-visible {
  outline: 3px solid #ea4e01;
  outline-offset: 3px;
}

.swiper-slideshow .swiper-ms-pagination {
  bottom: 18px;
  z-index: 10;
}

.swiper-slideshow .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 1;
  transition:
    width 0.2s ease,
    background-color 0.2s ease;
}

.swiper-slideshow .swiper-pagination-bullet-active {
  width: 26px;
  background: #fff;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .swiper-slideshow {
    min-height: 280px;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .swiper-slideshow .slide-type1,
  .swiper-slideshow .slide-type2 {
    padding: 32px 48px;
  }

  .swiper-slideshow .row-slider-info {
    max-width: 82%;
  }

  .swiper-ms-arrow {
    width: 40px;
    height: 40px;
  }

  .swiper-ms-arrow.ms-prev {
    left: 8px;
  }

  .swiper-ms-arrow.ms-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swiper-ms-arrow,
  .swiper-slideshow .swiper-pagination-bullet {
    transition: none;
  }
}

header {
  position: relative;
  z-index: 99999;
}
.header_fixed.is-scrolled {
  top: 0px !important;
}

.container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub_menu_wrapper {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.catalog-close-icon {
  display: none;
}

#catalog_button[aria-expanded="true"] .catalog-menu-icon {
  display: none;
}

#catalog_button[aria-expanded="true"] .catalog-close-icon {
  display: block;
}

.catalog-panel {
  position: absolute;
  top: 100px;
  left: 50%;
  display: grid;
  grid-template-columns: 312px minmax(0, 1fr);
  width: min(calc(100vw - 32px), 1360px);
  height: min(692px, calc(100vh - 116px));
  overflow: hidden;
  border: 1px solid #e3e5e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(23, 29, 36, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
  z-index: 9999;
}

.catalog-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.catalog-sidebar {
  grid-column: 1;
  grid-row: 1;
  margin: 16px 0;
  padding: 0 8px;
  overflow-y: auto;
  border-right: 1px solid #d9dde1;
  scrollbar-width: thin;
  scrollbar-color: #c5c9ce transparent;
}

.catalog-categories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-categories a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 7px 10px;
  border-radius: 7px;
  color: #24282c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition:
    color 150ms ease,
    background-color 150ms ease;
}

.catalog-categories a:hover,
.catalog-categories a:focus-visible,
.catalog-categories a.is-active {
  color: #e30613;
  background: #f0f1f3;
}

.category-icon {
  color: #e30613;
  font-size: 19px;
  line-height: 1;
  text-align: center;
}

.category-arrow {
  opacity: 0;
  color: #e30613;
  font-size: 26px;
  line-height: 1;
}

.catalog-categories a:hover .category-arrow,
.catalog-categories a:focus-visible .category-arrow,
.catalog-categories a.is-active .category-arrow {
  opacity: 1;
}

.catalog-content {
  display: none;
  grid-column: 2;
  grid-row: 1;
  overflow-y: auto;
  padding: 26px 34px 34px;
  scrollbar-width: thin;
  scrollbar-color: #c5c9ce transparent;
}

.catalog-content.is-active {
  display: block;
}

.catalog-content h2 {
  margin: 0 0 10px;
  color: #282c30;
  font-size: 19px;
  font-weight: 800;
}

.catalog-subcategories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 44px;
}

.subcategory-column {
  display: flex;
  flex-direction: column;
}

.subcategory-column a {
  position: relative;
  min-height: 36px;
  padding: 7px 0 7px 22px;
  color: #34393e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 150ms ease;
}

.subcategory-column a:hover,
.subcategory-column a:focus-visible {
  color: #e30613;
}

.subcategory-column small {
  color: #969da4;
  font-size: inherit;
}

.expand-mark {
  position: absolute;
  top: 10px;
  left: 1px;
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid #a7adb3;
  border-radius: 2px;
  color: #6e757b;
  font-size: 10px;
  line-height: 1;
}

.catalog-menu-grid {
  columns: 3 220px;
  column-gap: 44px;
}

.catalog-menu-group,
.catalog-menu-link,
.catalog-category-link {
  break-inside: avoid;
}

.catalog-menu-group {
  margin: 0 0 24px;
}

.catalog-menu-group h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.catalog-menu-group h3 a,
.catalog-category-link {
  color: #282c30;
}

.catalog-menu-group ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-menu-group li a,
.catalog-menu-link,
.catalog-category-link {
  display: block;
  padding: 6px 0;
  color: #5d646b;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  transition: color 150ms ease;
}

.catalog-menu-link {
  margin-bottom: 4px;
}

.catalog-menu-group a:hover,
.catalog-menu-group a:focus-visible,
.catalog-menu-link:hover,
.catalog-menu-link:focus-visible,
.catalog-category-link:hover,
.catalog-category-link:focus-visible {
  color: #e30613;
}

@media (max-width: 1024px) {
  .catalog-panel {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .catalog-subcategories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .catalog-menu-grid {
    columns: 2 220px;
    column-gap: 28px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .catalog-panel {
    top: 94px;
    grid-template-columns: 1fr;
    width: calc(100vw - 16px);
    height: calc(100vh - 102px);
  }

  .catalog-sidebar {
    margin: 8px 0 0;
    border-right: 0;
    border-bottom: 1px solid #d9dde1;
    max-height: 230px;
  }

  .catalog-content {
    grid-column: 1;
    grid-row: 2;
    padding: 20px;
  }

  .catalog-subcategories {
    grid-template-columns: 1fr;
  }

  .catalog-menu-grid {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-panel {
    transition: none;
  }
}

.products_wrapper {
  margin: -24px;
  padding: 24px;
  overflow: hidden;
}

.products_slider {
  overflow: visible;
}
.products_slider_two {
  overflow: visible;
}

.product_card_buttons_wrapper svg:hover path {
  fill: red;
}
.add_basket:hover path {
  fill: #fff !important;
}
/* .product_card_slide {
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
} */

@media (max-width: 720px) {
  .products_wrapper {
    margin: -24px -16px;
    padding: 24px 16px;
  }
}

.sub_cat_wrapper a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0001;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.sub_cat_wrapper a:hover::before {
  opacity: 1;
}

.advantages_section {
  padding: 96px 0;
}

#advantages_wrapper {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
}

.advantage_card {
  grid-column: span 2;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  color: #13181e;
  background: #f4f6f8;
  border-radius: 16px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.advantage_card:hover,
.advantage_card:focus-visible {
  background: #edf0f3;
  transform: translateY(-2px);
}

.advantage_card:focus-visible {
  outline: 2px solid #ea4e01;
  outline-offset: 3px;
}

.advantage_card--hero {
  grid-column: span 4;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  background: #f0f3f8;
}

.advantage_card--wide {
  grid-column: span 3;
}

.advantage_card_content {
  max-width: 300px;
}

.advantage_card .main_title_advantages {
  max-width: 340px;
  color: #000;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.1;
}

.advantage_card .adv_second_title {
  margin-top: 16px;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.advantage_card p {
  margin-top: 8px;
  color: #5e6975;
  font-size: 14px;
  line-height: 1.4;
}

.advantage_card_icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: #13181e;
}

.advantage_card_icon svg {
  width: 100%;
  height: 100%;
}

.advantage_card_icon--large {
  align-self: center;
  width: 112px;
  height: 112px;
  padding: 16px;
  color: #13181e;
  background: #ff0000;
  border-radius: 24px;
  transform: rotate(4deg);
}
.advantage_card_icon--large svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
@media (max-width: 1024px) {
  #advantages_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage_card,
  .advantage_card--wide {
    grid-column: span 1;
  }

  .advantage_card--hero {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .advantages_section {
    padding: 64px 0;
  }

  #advantages_wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .advantage_card,
  .advantage_card--hero,
  .advantage_card--wide {
    grid-column: 1;
    min-height: 160px;
    padding: 20px;
  }

  .advantage_card--hero {
    align-items: center;
  }

  .advantage_card_icon--large {
    width: 88px;
    height: 88px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantage_card {
    transition: none;
  }
}

.brand_swiper {
  min-width: 0;
  padding-block: 20px;
}

.brand_swiper .swiper-slide {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 16px;
  /* background: #f4f6f8; */
  /* border-radius: 16px; */
}

.brand_swiper .swiper-slide img {
  width: 100%;
  width: 70%;
  max-height: 70px;
  margin-top: 0;
}

/* CDN və ya JavaScript gecikərsə, kartların böyük görünməsinin qarşısını alır. */
.brand_swiper:not(.swiper-initialized) {
  overflow: hidden;
}

.brand_swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
}

.brand_swiper:not(.swiper-initialized) .swiper-slide {
  width: auto;
}

.brand_swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 8) {
  display: none;
}

@media (max-width: 1023px) {
  .brand_swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand_swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand_swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand_swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 639px) {
  .brand_swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand_swiper:not(.swiper-initialized) .swiper-slide:nth-child(n + 2) {
    display: none;
  }
}

/* Expandable full product description */
.product_description_full {
  width: 100%;
  font-size: 14px;
  line-height: 1.45;
}

.product_description_content {
  position: relative;
}

.product_description_full:not(.is-expanded) .product_description_intro:first-of-type {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.product_description_full:not(.is-expanded) .product_description_intro:first-of-type ~ * {
  display: none;
}

.product_description_full h2,
.product_description_full h3,
.product_description_full p,
.product_description_full ul {
  margin: 0;
}

.product_description_full h2 {
  line-height: 1.25;
}

.product_description_intro {
  display: grid;
  gap: 6px;
  line-height: 32px;
  margin-top: 25px;
}

.product_description_full h3 {
  margin-top: 40px;
  color: #25272a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.product_description_full ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-left: 25px;
}

.product_description_full li {
  padding-left: 1px;
}

.product_description_full li::marker {
  color: #050505;
  font-size: 9px;
}

.product_description_toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff0000;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.product_description_toggle:hover {
  text-decoration: underline;
}

.product_description_toggle:focus-visible {
  outline: 2px solid #ff0000;
  outline-offset: 3px;
}

@media (max-width: 639px) {
  .product_description_intro {
    margin-top: 20px;
  }

  .product_description_full h3 {
    margin-top: 32px;
  }
}

/* Customer reviews */
.customer_review_wrapper {
  color: #222427;
  font-size: 13px;
}

.customer_review_tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 578px);
  padding: 4px;
  border-radius: 10px;
  background: #eef0f2;
}

.customer_review_tabs button {
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #555a60;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.customer_review_tabs button span {
  color: #8b9095;
  font-weight: 400;
}

.customer_review_tabs button.is-active {
  background: #fff;
  color: #050505;
  box-shadow: 0 1px 3px rgba(30, 38, 47, 0.16);
}

.customer_review_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 44px;
  margin-top: 28px;
}

.customer_review_filters {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.customer_review_filters select {
  min-height: 30px;
  padding: 0 28px 0 10px;
  border: 0;
  border-radius: 5px;
  background-color: #eef0f2;
  color: #202328;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.customer_review_item {
  padding: 12px 0 22px;
  border-bottom: 1px solid #e4e7eb;
}

.customer_review_item h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.customer_review_meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.customer_stars {
  color: #ffc326;
  font-size: 17px;
  letter-spacing: -1px;
  line-height: 1;
}

.customer_stars i {
  color: #c7cdd5;
  font-style: normal;
}

.customer_review_meta time {
  color: #868b91;
  font-size: 11px;
}

.customer_review_copy {
  display: grid;
  gap: 5px;
  margin-top: 17px;
}

.customer_review_copy p {
  margin: 0;
  line-height: 1.35;
}

.customer_review_votes {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.customer_review_votes button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ba0a5;
  font-size: 11px;
  cursor: pointer;
}

.customer_review_votes button span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: currentColor;
  font-size: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10v10H3V10h4Zm3 10a2 2 0 0 1-2-2v-7l3.7-7.2A1.5 1.5 0 0 1 14.5 5v4H20a2 2 0 0 1 2 2.4l-1.3 6.5A2.6 2.6 0 0 1 18.1 20H10Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10v10H3V10h4Zm3 10a2 2 0 0 1-2-2v-7l3.7-7.2A1.5 1.5 0 0 1 14.5 5v4H20a2 2 0 0 1 2 2.4l-1.3 6.5A2.6 2.6 0 0 1 18.1 20H10Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.customer_review_votes button:nth-child(2) span {
  transform: rotate(180deg);
}

.customer_review_votes button.is-selected {
  color: #ff0000;
}

.customer_reviews_more {
  width: 100%;
  min-height: 40px;
  margin-top: 40px;
  border: 0;
  border-radius: 5px;
  background: #eef0f2;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.customer_rating_summary {
  padding-top: 4px;
}

.customer_rating_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e6ea;
}

.customer_rating_head > strong {
  color: #050505;
  font-size: 30px;
  line-height: 1;
}

.customer_rating_stars {
  position: relative;
  display: inline-block;
  color: #c8ced6;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 1;
}

.customer_rating_stars i {
  display: block;
  font-style: normal;
}

.customer_rating_stars i:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 89%;
  overflow: hidden;
  color: #ffc326;
  white-space: nowrap;
}

.customer_rating_summary > p {
  margin: 9px 0 0;
  color: #8a8f94;
  font-size: 14px;
}

.customer_review_open {
  width: 100%;
  min-height: 40px;
  margin-top: 28px;
  border: 0;
  border-radius: 6px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.customer_review_open:hover,
.customer_review_open:focus-visible,
.customer_review_submit:hover,
.customer_review_submit:focus-visible {
  background: #b80000;
}

.customer_rating_bars {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.customer_rating_bars > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
}

.customer_rating_bars dt {
  color: #777c82;
}

.customer_rating_bars dt span {
  color: #bfc6cf;
}

.customer_rating_bars dd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 11px;
  margin: 0;
}

.customer_rating_bars dd > span {
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: #edf0f3;
}

.customer_rating_bars dd i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ffc326;
}

.customer_rating_bars dd b {
  color: #777c82;
  font-weight: 400;
}

.customer_review_dialog {
  width: min(450px, calc(100% - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 42, 58, 0.25);
}

.customer_review_dialog::backdrop {
  background: rgba(244, 246, 248, 0.74);
}

.customer_review_form {
  display: flex;
  max-height: calc(100dvh - 24px);
  flex-direction: column;
}

.customer_review_dialog_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 18px 0 20px;
  background: #ffc62d;
}

.customer_review_dialog_head h2 {
  margin: 0;
  color: #101010;
  font-size: 13px;
  font-weight: 700;
}

.customer_review_close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f5433;
  font-size: 21px;
  cursor: pointer;
}

.customer_review_form_body {
  display: grid;
  gap: 12px;
  padding: 20px;
  overflow-y: auto;
}

.customer_review_rating_field {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.customer_review_rating_field legend,
.customer_line_field > span {
  color: #777c82;
  font-size: 12px;
}

.customer_review_rating_field legend span {
  color: #ff0000;
}

.customer_review_star_input {
  display: flex;
  width: fit-content;
  margin-top: 7px;
  flex-direction: row-reverse;
}

.customer_review_star_input input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.customer_review_star_input label {
  color: #bdc5d1;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.customer_review_star_input label:hover,
.customer_review_star_input label:hover ~ label,
.customer_review_star_input input:checked ~ label {
  color: #ffc326;
}

.customer_review_star_input input:focus-visible + label {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

.customer_line_field {
  display: grid;
  gap: 3px;
}

.customer_line_field input,
.customer_line_field textarea {
  width: 100%;
  min-height: 28px;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid #d3d8df;
  border-radius: 0;
  background: transparent;
  font: inherit;
}

.customer_review_upload,
.customer_review_check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px 12px;
  background: #eef0f2;
  cursor: pointer;
}

.customer_review_upload svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #545b64;
}

.customer_review_upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.customer_review_upload:has(input:focus-visible) {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

.customer_review_form_body > small {
  color: #697079;
  font-size: 10px;
}

.customer_review_form_body a {
  color: inherit;
  text-decoration: underline;
}

.customer_review_check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.customer_review_check i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid #d0d6de;
  border-radius: 3px;
  background: #fff;
}

.customer_review_check input:checked + i {
  border-color: #ffc326;
  background: #ffc326;
}

.customer_review_check input:checked + i::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.customer_review_check input:focus-visible + i {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

.customer_review_recommend {
  margin: 6px 0 18px;
}

.customer_review_consent {
  align-items: start;
  font-size: 11px;
  line-height: 1.3;
}

.customer_review_submit {
  min-height: 46px;
  border: 0;
  border-radius: 5px;
  background: #ffe18d;
  color: #9c7420;
  font-size: 13px;
  cursor: pointer;
}

.customer_review_wrapper button:focus-visible,
.customer_review_wrapper select:focus-visible,
.customer_review_wrapper input:focus-visible,
.customer_review_wrapper textarea:focus-visible {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

body:has(.customer_review_dialog[open]) {
  overflow: hidden;
}

@media (max-width: 767px) {
  .customer_review_tabs button {
    font-size: 14px;
  }

  .customer_review_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .customer_rating_summary {
    grid-row: 1;
  }
}

@media (max-width: 420px) {
  .customer_review_tabs {
    grid-template-columns: 1fr;
  }

  .customer_review_dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }

  .customer_review_form {
    max-height: calc(100dvh - 12px);
  }

  .customer_review_form_body {
    padding: 16px;
  }

  .customer_review_star_input label {
    font-size: 42px;
  }
}

/* Product purchase and fulfillment column */
.product_page_layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
  align-items: start;
  gap: 32px;
  width: 100%;
}

.product_another_wrapper {
  box-sizing: border-box;
  width: 100%;
  /* max-width: 322px; */
  min-width: 0;
  padding: 0 18px;
  justify-self: end;
  color: #202124;
  font-size: 13px;
}

.purchase_card {
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(24, 34, 45, 0.12);
}

.purchase_card_actions {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 18px;
}

.purchase_action_link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f4449;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.purchase_action_link svg {
  width: 15px;
  height: 15px;
}

.purchase_favorite {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: #f0f2f4;
  color: #4b5055;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.purchase_favorite svg {
  width: 18px;
  height: 18px;
}

.purchase_favorite:hover,
.purchase_favorite:focus-visible,
.purchase_favorite[aria-pressed="true"] {
  background: #fff0f0;
  color: #d63031;
}

.purchase_price_label {
  margin-top: 18px;
  color: #888d91;
}

.purchase_price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 3px;
}

.purchase_price strong {
  color: #050505;
  font-size: 26px;
  line-height: 1.15;
}

.purchase_price span {
  color: #212121;
  font-size: 14px;
}

.purchase_cart_button {
  width: 100%;
  min-height: 40px;
  margin-top: 24px;
  border: 0;
  border-radius: 7px;
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.purchase_cart_button:hover,
.purchase_cart_button:focus-visible {
  background: #c50202;
}

.purchase_cart_button:active {
  transform: translateY(1px);
}

.purchase_stock {
  margin: 8px 0 0;
  color: #4e5357;
  text-align: center;
}

.purchase_stock span {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #49d58c;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.purchase_secondary_actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}

.purchase_secondary_actions button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: #f0f2f4;
  color: #33383d;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.purchase_secondary_actions button:hover,
.purchase_secondary_actions button:focus-visible {
  background: #e6e9ec;
}

.purchase_secondary_actions svg {
  width: 17px;
  height: 17px;
}

.ai_badge {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ff0000;
  color: #121212;
  font-size: 10px;
  font-weight: 700;
}

.product_another_wrapper button:focus-visible {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

@media (max-width: 1023px) {
  .product_page_layout {
    grid-template-columns: 1fr;
  }

  .product_another_wrapper {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .purchase_card {
    padding: 16px;
  }

  .purchase_card_actions {
    gap: 12px;
  }
}

#reviews_wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}
.review_card_dot {
  background: linear-gradient(135deg, #f7ce68, #f7ce68, #e8a020, #e8a020);
  box-shadow: 0 0 4px rgba(251, 188, 5, 0.4);
}

.review_card {
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #13181e;
  background: #fff;
  border: 1px solid #edf1f4;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(40, 65, 82, 0.07);
}

.review_card_header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review_avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
}

.review_avatar--orange {
  background: #d94b18;
}

.review_avatar--green {
  background: #397b2b;
}

.review_avatar--blue {
  background: #1473ad;
}

.review_avatar--purple {
  background: #6b61c9;
}

.review_avatar--red {
  background: #b83d4a;
}

.review_avatar--teal {
  background: #16827d;
}

.review_avatar--navy {
  background: #315b89;
}

.review_avatar--pink {
  background: #c52b70;
}

.review_card h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.review_meta,
.review_card time {
  display: block;
  color: #55738a;
  font-size: 12px;
  line-height: 1.5;
}

.review_rating {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review_rating i {
  color: #d8dee3;
  font-style: normal;
}

.review_text {
  margin-top: 16px;
  color: #26333d;
  font-size: 14px;
  line-height: 1.65;
}

.review_text:not(.is-expanded) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review_read_more {
  align-self: flex-start;
  min-height: 36px;
  margin-top: 12px;
  padding: 8px 14px;
  color: #087cad;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  background: #eef7fb;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.review_read_more[hidden] {
  display: none;
}

.review_read_more:hover {
  color: #fff;
  background: #087cad;
}

.review_read_more:focus-visible {
  outline: 2px solid #087cad;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  #reviews_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #reviews_wrapper {
    grid-template-columns: minmax(0, 1fr);
    margin: 64px 0;
  }

  .review_card {
    min-height: auto;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review_read_more {
    transition: none;
  }
}

.site-footer {
  --footer-accent: #02acc0;
  margin-top: 96px;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.footer-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  align-items: center;
  gap: 64px;
  padding: 56px 0 78px;
}

.footer-subscribe-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 30px;
}

.footer-mail-icon {
  flex: 0 0 60px;
  color: #fff;
}

.footer-subscribe-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.footer-subscribe-copy h2 span {
  display: block;
  margin-top: 8px;
}

.footer-subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 0;
  min-width: 0;
  height: 68px;
  padding: 9px;
  border-radius: 12px;
  background: #fff;
}

.footer-subscribe-form input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 7px;
  border: 0;
  background: transparent;
  color: #161616;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.footer-subscribe-form input::placeholder {
  color: #9b9ba5;
  opacity: 1;
}

.footer-subscribe-form button {
  min-width: 0;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--footer-accent);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.footer-subscribe-form button:hover {
  background: #008fa2;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) minmax(260px, 0.72fr);
  column-gap: 64px;
  padding-bottom: 32px;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.footer-section {
  min-width: 0;
}

.footer-column > .footer-section:first-child {
  min-height: 140px;
}

.footer-section-bottom {
  margin-top: 113px;
}

.footer-section h2,
.footer-address h3,
.footer-hours h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 52px;
  margin-top: 15px;
}

.footer-link-columns ul {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-columns li + li {
  margin-top: 6px;
}

.footer-link-columns a {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  color: #aebcd0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-link-columns a:hover {
  color: var(--footer-accent);
}

.footer-contacts {
  min-width: 0;
  color: #fff;
}

.footer-contacts > h2 {
  margin: 4px 0 7px;
  color: #aebcd0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.footer-email,
.footer-phone,
.footer-callback {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
}

.footer-email,
.footer-callback {
  color: var(--footer-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow-wrap: anywhere;
}

.footer-phone {
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.footer-callback {
  margin-top: 13px;
}

.footer-company {
  margin-top: 14px;
  color: #b9c6d7;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.footer-company p,
.footer-address p,
.footer-hours p {
  margin: 0;
}

.footer-address,
.footer-hours {
  margin-top: 6px;
}

.footer-address p,
.footer-hours p {
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.footer-socials a {
  display: grid;
  width: 35px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #000;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: #d9f9fc;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .footer-subscribe {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 64px;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 64px;
  }

  .footer-subscribe {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 40px 0 56px;
  }

  .footer-subscribe-form {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .footer-section-bottom {
    margin-top: 48px;
  }

  .footer-column > .footer-section:first-child {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .footer-subscribe-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .footer-mail-icon {
    width: 50px;
    height: auto;
    flex-basis: 50px;
  }

  .footer-subscribe-form {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    gap: 8px;
    padding: 8px;
  }

  .footer-subscribe-form button {
    width: 100%;
  }

  .footer-link-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-subscribe-form button,
  .footer-link-columns a,
  .footer-socials a {
    transition: none;
  }
}
.blog_category_btn {
  background-color: #eaeaea;
}
.blog_category_btn.active {
  background-color: #d7202a;
  color: #fff;
}
.blog_category_btn:not(.active):hover {
  background: #f2f2f2;
}
.article_card::before {
  transition: all duration-300 ease-in-out;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)),
    rgba(0, 0, 0, 0) 50% / cover no-repeat;
  pointer-events: none;
}
.article_card img {
  transition: all 0.3s ease-in-out;
}
.article_card:hover img {
  transform: scale(1.1);
}
.menu__submenu {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.menu__submenu li a {
  padding: 8px 10px;
  display: block;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #eaeaea;
}
.menu__submenu li a:hover {
  background: #f2f2f2;
}
.menu__item--dropdown {
  position: relative;
  --submenu-gap: 30px;
}
.menu__item--dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  user-select: none;
  font-size: 12px;
}
.menu__item--dropdown > a svg,
.menu__item--dropdown > a svg path {
  transition: all 0.3s ease-in-out;
}
.menu__item--dropdown > a:hover {
  color: red;
}
.menu__item--dropdown > a:hover svg path {
  fill: red;
}
.menu__item--dropdown > a:hover svg {
  transform: rotate(180deg);
}
.menu__item--dropdown > a.active {
  color: red;
}
.menu__submenu {
  position: absolute;
  top: 200%;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #c2c2c2;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}
.menu__item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 220px);
  height: var(--submenu-gap);
  background: transparent;
  z-index: 999;
}
.menu__item--dropdown:hover .menu__submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.menu_drowpodown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  width: max-content;
  background-color: white;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.25s ease-in-out 0.25s,
    visibility 0s ease-in-out 0.25s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.menu_dropdown-link {
  position: relative;
}
.menu_dropdown-link:hover .menu_drowpodown-submenu {
  visibility: visible;
  opacity: 1;
}
.menu_dropdown-link > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.product_photos_wrapper {
  display: grid;
  width: 60%;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.product_thumbs_column,
.main_photo_wrapper {
  min-width: 0;
  max-width: 100%;
}

.product_left_thumb_wrapper {
  width: 100%;
  height: 72px;
  margin: 0;
  overflow: hidden;
}

.product_left_thumb_wrapper .swiper-slide {
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.65;
}

.product_left_thumb_wrapper .swiper-slide:hover,
.product_left_thumb_wrapper .swiper-slide:focus-visible,
.product_left_thumb_wrapper .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #16827d;
  opacity: 1;
}

.product_left_thumb_wrapper .swiper-slide:focus-visible {
  outline: 2px solid #16827d;
  outline-offset: -3px;
}

.main_photo_wrapper {
  width: 100%;
  height: clamp(280px, 72vw, 440px);
  margin: 0;
  overflow: hidden;
}

.main_photo_wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 640px) {
  .product_photos_wrapper {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .product_left_thumb_wrapper,
  .main_photo_wrapper {
    height: 440px;
  }
}

.product_details_grid {
  gap: 32px;
  align-items: start;
}

.product_info_wrapper {
  width: 35%;
  min-width: 0;
  max-width: 560px;
  color: #111;
  font-size: 14px;
}

.product_meta_row,
.product_rating,
.product_code {
  display: flex;
  align-items: center;
}

.product_meta_row {
  justify-content: space-between;
  gap: 16px;
  min-height: 32px;
}

.product_rating {
  gap: 10px;
  color: #ff0000;
  font-weight: 600;
  text-decoration: none;
}

.product_rating_stars {
  display: flex;
  gap: 1px;
  color: #f7bd22;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -2px;
}

.product_rating_stars .is-half {
  background: linear-gradient(90deg, #f7bd22 50%, #d5d9df 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.product_review_count {
  white-space: nowrap;
  color: #000;
}
.product_code {
  gap: 5px;
  color: #777;
  white-space: nowrap;
}

.product_code svg {
  width: 18px;
  height: 18px;
}

.product_offer_card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 7px;
  background: #f0f1f3;
  color: #111;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.product_offer_card:hover,
.product_offer_card:focus-visible {
  background: #e7e9ec;
}

.product_offer_card:focus-visible,
.product_info_wrapper a:focus-visible {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

.product_offer_image {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.product_offer_image img,
.product_category_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_offer_copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.product_offer_copy strong {
  font-size: 14px;
  font-weight: 600;
}

.product_offer_copy span {
  overflow: hidden;
  margin-top: 2px;
  color: #777;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_info_chevron {
  width: 18px;
  height: 18px;
  color: #9aa1aa;
}

.product_features {
  margin-top: 32px;
}

.product_features_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product_features_header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.product_features_header a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 30px;
  padding: 4px 8px;
  border-radius: 7px;
  background: #f3f4f5;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.product_features_header svg,
.product_info_link svg {
  width: 16px;
  height: 16px;
}

.product_specs {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.product_spec_row {
  display: grid;
  grid-template-columns: max-content minmax(16px, 1fr) minmax(96px, auto);
  align-items: baseline;
  min-width: 0;
}

.product_spec_row dt {
  color: #777;
}

.product_spec_row > span {
  min-width: 16px;
  margin: 0 3px;
  border-bottom: 1px dashed #bec6d2;
}

.product_spec_row dd {
  max-width: 230px;
  margin: 0;
  color: #ff0000;
  line-height: 1.35;
  text-align: right;
  font-weight: 300;
}

.product_info_link {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 40px;
  color: #ff0000;
  font-weight: 500;
  text-decoration: none;
}

.product_certificate_link {
  width: 100%;
  border-top: 1px solid #e2e6ec;
}

.product_related_categories {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product_category_item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: #333;
  text-decoration: none;
}

.product_category_icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  background: #fff;
}

.product_category_item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product_category_item strong {
  font-weight: 500;
}

.product_category_item small {
  overflow: hidden;
  color: #8a8a8a;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .product_info_wrapper {
    max-width: none;
  }

  .product_spec_row {
    grid-template-columns: max-content minmax(8px, 1fr) minmax(88px, auto);
  }

  .product_spec_row dd {
    max-width: 48vw;
  }
}

/* chat button */
#livechat_button::before,
#livechat_button::after {
  content: "";
  display: block;
  left: 0px;
  position: absolute;
  z-index: 0;
  height: 100% !important;
  width: 100% !important;
  animation: 2.6s linear 0s infinite normal none running amo-button-wave;
  background: inherit;
  border-radius: inherit;
}
#livechat_button::before,
#livechat_button::after {
  content: "";
  display: block;
  left: 0px;
  position: absolute;
  z-index: 0;
  height: 100% !important;
  width: 100% !important;
  animation: 2.6s linear 0s infinite normal none running amo-button-wave;
  background: inherit;
  border-radius: inherit;
}
#livechat_button::after {
  animation-delay: 1.3s;
}

@keyframes amo-button-wave {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

.circlephone,
.circle-fill {
  position: absolute;
  box-sizing: content-box;
  border-radius: 100%;
  transition: 0.5s;
}
.circlephone {
  width: 80px;
  height: 80px;
  bottom: -10px;
  right: 20px;
  opacity: 0.5;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  border-image: none;
  animation: 2.4s ease-in-out 0s infinite normal none running circle-anim !important;
}
.circle-fill {
  background-color: rgb(0, 0, 0);
  width: 60px;
  height: 60px;
  bottom: 0px;
  right: 30px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-image: none;
  animation: 2.3s ease-in-out 0s infinite normal none running circle-fill-anim;
}

@keyframes circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes circle-fill-anim {
  0%,
  100% {
    transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
}

#fixed_wp {
  width: 45px;
  height: 45px;
  bottom: 10px;
  right: 40px;
  position: absolute;
  border-radius: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-image: none;
}
#fixed_wp svg {
  fill: rgb(0, 0, 0);
  background-size: 40px 40px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  animation-name: tossing;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes tossing {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}
