/* product-cards slider*/

.product-cards {
  padding: 96px 0;
}
.product-cards.bg-gray {
  background-color: #f6f7f9;
}
.product-cards .h1 {
  margin-bottom: 32px;
}

.product-cards__slider {
  position: relative;
  overflow: hidden;
}

/* .product-cards__slider .swiper-button-prev,
.product-cards__slider .swiper-button-next {
  background: none;
  width: 64px;
  height: 64px;
  margin-top: -72px;
}
.product-cards__slider .swiper-button-prev {
  transform: rotate(-180deg);
  left: 0;
}
.product-cards__slider .swiper-button-next {
  right: 0;
} */

.product-cards__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.product-cards__header-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-cards__header .button {
  width: 64px;
  height: 64px;
  border: 1px solid #15161a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  background: none;
}
.product-cards__header .button img {
  width: 32px;
  height: 32px;
}

.product-cards__header .button.swiper-button-disabled {
  opacity: 0.3;
}
.product-cards__picture {
  position: relative;
  overflow: hidden;
  display: block;
}
.product-cards__picture:before {
  display: block;
  padding-top: 140%;
  content: "";
}
.product-cards__picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.product-cards__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  display: flex;
}
.product-cards__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}
.product-cards__prices .price {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #15161a;
}
.product-cards__prices .old {
  color: #69737c;
  opacity: 0.5;
  text-decoration: line-through;
}
.product-card__inner-slider {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.product-card__inner-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}
.product-card__inner-slider .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-card__inner-slider .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 120%;
}
.product-card__inner-slider .swiper-pagination {
  position: absolute;
  left: 15px;
  bottom: 15px;
  text-align: left;
}
.product-card__inner-slider .swiper-pagination-bullet {
  width: 32px;
  height: 2px;
  opacity: 0.2;
  background-color: #fff;
  border-radius: 0;
  transform: scale(1);
}
.product-card__inner-slider
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.product-card__inner-slider .swiper-button-prev {
  transform: rotate(-180deg);
  left: 0;
}
.product-card__inner-slider .swiper-button-next {
  right: 0;
}
.product-card__inner-slider .button {
  width: 32px;
  height: 32px;
  margin-top: -16px;
  background: none;
}

.product-card__inner-slider .swiper-button-disabled {
  opacity: 0 !important;
}

.reviews-box {
  padding-top: 96px;
}

.reviews-box__rating .count {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.19px;
  color: var(--text-color-black);
  margin-left: 9px;
}
.reviews-box__rating span img {
  width: 24px;
  height: 24px;
}

.reviews-box__rating-count {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews-box__rating-count .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #69737c;
}
.reviews-box__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0;
  flex-wrap: wrap;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews-list + * {
  margin-top: 40px;
}

.review-item.tr {
  display: grid;
  grid-template-columns: 15% 1fr 28% 130px; /* 4 "td" колонки */
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid #d9d9d9;
  padding: 24px 0;
}
.review-item.tr:first-of-type {
  border-top: 1px solid #d9d9d9;
}

.td {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__user .name,
.review-item__user .name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-black);
}
.review-card__user .verified,
.review-item__user .verified {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card__user .verified img,
.review-item__user .verified img {
  width: 16px;
}
.review-card__user .verified span,
.review-item__user .verified span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #69737c;
}

.review-item__content .rating img {
  width: 16px;
}
.review-item__content .rating .count {
  display: none;
}
.review-item__content-title {
  font-weight: 600;
  font-style: Bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--text-color-black);
}
.review-item__content-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-black);
}

.td.review-item__time {
  text-align: right;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #69737c;
}
.review-item__photos {
  flex-direction: row;
  gap: 24px;
}
.review-item__photos .image {
  overflow: hidden;
  position: relative;
  width: 134px;
}
.review-item__photos .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.review-item__photos img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-video {
  padding: 24px;
  background-color: var(--text-color-black);
  position: relative;
  overflow: hidden;
  padding-bottom: 70vh;
}
.product-video-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 6%;
  text-align: center;
  color: #fff;
  z-index: 10;
  font-weight: 500;
  letter-spacing: 2px;
}
.product-video video {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  /* max-height: 70vh; */
  object-fit: cover;
  object-position: center;
  max-width: 1920px;
  margin: auto;
}

.review-product {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}
.review-product__image {
  overflow: hidden;
  position: relative;
  width: 80px;
}
.review-product__image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.review-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  object-position: center;
}

.review-product__title {
  font-family: "Tektur", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-color-black);
  margin-bottom: 6px;
  text-align: left;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

.rl-row {
  display: flex;
  gap: 15px;
}

.rl-col {
  flex: 1;
}

/* 
.engraving-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #d9d9d9;
} */

/* СТИЛЬ СКРОЛУ як у дизайні */
/* .engraving-gallery::-webkit-scrollbar {
  width: 0px;
} */

.gallery-item {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  /* height: 115px;
  border: 1px solid #d9d9d9; */
  cursor: pointer;
}
.gallery-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  object-position: center;
}

/* hover як у ReTyl */
.gallery-item:hover {
  border-color: #15161a;
}
.gallery-item:hover img {
  filter: brightness(100%);
}

/* виділений стан */
.gallery-item.active {
  border-color: #15161a; /* біла рамка */
}
.gallery-item.active img {
  filter: brightness(100%);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.reviews-section {
  padding: 96px 0;
}
.reviews-section__awards {
  padding: 30px 0;
  overflow: auto;
}
.reviews-section__awards ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
}

.reviews-section__awards li {
  font-size: 0;
}
.reviews-section__awards img {
  max-width: 152px;
}
.tabs-reviews_header {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
}

.tabs-reviews_header .tabs {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tabs-reviews_header .tabs button {
  cursor: pointer;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  color: #15161a;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  background-color: transparent;
}
.tabs-reviews_header .tabs button.active {
  font-weight: 500;
  border-color: var(--text-color-black);
}
.reviews-section .reviews-box__rating {
  padding: 0 0 40px;
  margin: 0;
}

.review-card__date {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #69737c;
}

.review-card__user {
  margin-bottom: 12px;
  flex-direction: column;
  gap: 12px;
  display: flex;
  align-items: flex-start;
}
.review-card .rating .count {
  display: none;
}
.review-card__product {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.review-card__product span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}
.review-card .rating {
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
}

.review-card .rating img {
  width: 15px;
}

.review-card__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-black);
}
.review-card__rating {
  margin-bottom: 16px;
}
.review-card__title {
  margin-bottom: 10px;
}
.review-card__photo {
  margin-bottom: 24px;
}

#reviews-grid {
  width: 100%;
}

.review-card {
  width: calc(25% - 18px);
  margin-bottom: 24px;
}

.product-cards__card .product__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-cards__card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: auto !important;
  position: relative;
}

.product-cards__card .product-cards__prices {
  margin-top: auto;
}

.cart-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 24px;
  align-items: flex-start;
}
.cart-content .cart-footer {
  width: 33%;
  padding: 20px;
  background-color: #f6f7f9;
  display: flex !important;
  flex-direction: column;
  gap: 24px;
}
.page-cart {
  padding: 60px 0;
}

.cart-content .cart-footer .subtitle {
  font-size: 18px;
  font-weight: 500;
}
.cart-content .subtotal > * {
  font-family: "Tektur", sans-serif;
}
.cart-content .description p {
  font-size: 14px;
  line-height: 1.55;
}

.content-box {
  padding: 24px 0;
}
.content-box .container {
  display: flex;
  gap: 24px;
}

.content-box__content {
  flex: 1;
  padding: 96px 0;
}
.content-box__content .list li,
.content-box__content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.content-box__content .text {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
.content-box__content .text b {
  font-weight: 400;
}

.content-box__image {
  overflow: hidden;
  position: relative;
  flex: 1;
  width: calc(50% - 12px);
  align-self: flex-start;
}
.content-box__image:before {
  padding-top: 100%;
  content: "";
  display: block;
}

.content-box__image img, .content-box__image video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.content-box__payments {
  display: flex;
  align-items: center;
  gap: 0;
}
.content-box__payments li {
  flex: 1;
}
.content-box__content .list {
  display: flex;
  gap: 12px;
  flex-direction: column;
  counter-reset: item;
}

.content-box__content .list li {
  counter-increment: item;
  position: relative;
}

.content-box__content .list li::before {
  content: counter(item) ".";
  padding-right: 3px;
  font-weight: 600;
}

.content-box__header .subtitle {
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
  color: var(--text-color-black);
}

.content-box .tabs {
  display: flex;
  align-items: center;
  border: 1px solid #15161a;
}
.content-box .tabs li {
  flex: 1;
  padding: 4px;
}
.content-box .tabs li:not(:last-of-type) {
  border-right: 1px solid var(--text-color-black);
}

.content-box .tabs button {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #69737c;
  text-align: center;
  height: 56px;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.content-box .tabs button.active {
  background-color: #15161a;
  color: #fff;
}
@media (max-width: 1200px) {
  .review-card {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 900px) {
  .review-card {
    width: calc(50% - 12px);
  }
  .cart-content {
    flex-direction: column;
    gap: 24px;
  }
  .cart-content .cart-footer,
  .cart-content .cart-body {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .review-card {
    width: 100%; /* 1 колонка */
  }
  .cart-content .cart-body {
    padding: 0;
  }
  .cart-content .button-outlined {
    height: 52px;
    padding: 5px 24px;
    font-size: 14px;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .content-box .tabs button:hover {
    border-color: var(--text-color-black);
    color: var(--text-color-black);
  }
  .content-box .tabs button.active:hover {
    color: #fff;
  }

  .product-card__inner-slider .button.swiper-button-disabled,
  .product-card__inner-slider .button {
    opacity: 0;
    transition: all 0.4s;
  }
  .product-card__inner-slider:hover .button {
    opacity: 1;
  }
  .product-card__inner-slider:hover .button.swiper-button-disabled {
    opacity: 0.4;
  }
  .product-cards__picture:hover img {
    transform: scale(1.05);
  }
}
@media (max-width: 1550px) {
  .reviews-section__awards img {
    max-width: 122px;
  }
}

@media (max-width: 1480px) and (min-width: 1023px) {
  .review-item__photos {
    gap: 12px;
  }

  .product-cards {
    padding: 65px 0;
  }
  .product-cards .h1 {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (max-width: 1200px) {
  .hero-section .container {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .reviews-section__awards img {
    max-width: 96px;
  }
  .reviews-section__awards ul {
    gap: 20px;
  }
  .reviews-section {
    padding: 56px 0;
  }
  .content-box__header .subtitle {
    font-size: 20px;
    line-height: 28px;
  }
  .content-box__image {
    width: 100%;
  }
  .content-box .gap-64 {
    gap: 40px;
  }
  .content-box .gap-32 {
    gap: 24px;
  }
  .content-box {
    padding: 56px 0 24px;
  }
  .content-box .container {
    flex-direction: column;
    gap: 32px;
  }
  .content-box__content {
    padding: 0;
  }
  .category-card .h2 {
    bottom: 30px;
  }

  .catalog-content {
    padding: 40px 0 56px;
  }
  .catalog-content .container {
    gap: 32px;
  }
  .catalog-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    row-gap: 20px;
  }
  .product-sticky__price .price,
  .product-sticky__title {
    font-size: 20px;
  }
  .reviews-box {
    padding-top: 56px;
  }
  .reviews-list {
    gap: 0;
  }
  .review-item .td {
    width: 100%;
  }
  .review-item__time-mobile {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #69737c;
  }
  .td.review-item__content {
    position: relative;
  }
  .review-item__photos {
    gap: 12px;
  }
  .review-item.tr {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 0 24px 0;
    position: relative;
  }
  .td.review-item__time {
    display: none;
  }
  .product-cards .h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .product-cards {
    padding: 56px 0;
    overflow: hidden;
  }

  .product-cards__slider {
    overflow: visible;
  }
  .product-cards__slider .swiper-button-prev,
  .product-cards__slider .swiper-button-next {
    display: none;
  }
  .product-card__inner-slider .button {
    display: block;
  }
}

@media (max-width: 768px) {
  .product-cards__header-group {
    display: none;
  }

  .tabs-reviews_header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-bottom: 0;
  }

  .tabs-reviews .tabs {
    border-bottom: 1px solid #d9d9d9;
    width: calc(100% + 40px);
    overflow: auto;
    margin: 0 -20px;
    padding: 0 40px 0 20px;
  }
  .tabs-reviews .tabs li {
    white-space: nowrap;
  }
  .tabs-reviews_header .tabs button {
    font-size: 20px;
    line-height: 28px;
  }
  .reviews-section__awards img {
    max-width: 75px;
  }
  .reviews-section__awards {
    padding: 0 0 24px;
    overflow: visible;
  }
  .reviews-section__awards ul {
    justify-content: flex-start;
    overflow: auto;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
  }
  .review-card {
    padding: 16px 20px;
    margin-bottom: 12px;
  }

  .reviews-section .tab-content {
    margin-bottom: 24px;
  }

  .tabs-reviews .filters-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .page-pagination__mob {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--text-color-black);
    display: block;
  }
  .page-pagination {
    justify-content: space-between;
  }

  .product-video video {
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 24px);
    bottom: 24px;
  }
  .product-video {
    padding: 0;
    height: 540px;
  }
  .reviews-box__rating {
    margin: 24px 0 32px;
    gap: 16px;
  }
  .reviews-box__rating .button-outlined {
    width: 100%;
  }
  .review-item__photos .image {
    width: 120px;
  }
  .footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-main .logo {
    margin-bottom: 40px;
  }
  .footer-main label {
    font-size: 20px;
    line-height: 28px;
  }
  .subscription-form input {
    font-size: 14px;
  }
  .subscription-form button {
    padding: 6px 14px;
    font-size: 14px;
    max-width: 130px;
  }
  .footer-content .accordion-mob ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    column-gap: 0;
  }
  .footer-bottom .container {
    width: 100%;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .page-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-pagination .prev,
  .page-pagination .next {
    padding: 0;
  }

  .page-pagination a,
  .page-pagination .dots {
    font-size: 14px;
    min-width: 30px;
    height: 30px;
  }
}

@media (max-width: 550px) {
  .category-card:before {
    padding-top: 244px;
  }
  .categories {
    padding: 16px 0;
  }
  .categories .rl-row {
    gap: 8px;
  }
  .categories .container {
    gap: 8px;
    padding: 0;
  }
  .category-card .h2 {
    bottom: 10px;
  }
  .collections .content {
    gap: 0;
  }
  .collections .container {
    padding: 0;
  }
  .collections .collection-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .catalog-list {
    margin: 0 -20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    row-gap: 20px;
  }
  .catalog-list .product-cards__title,
  .catalog-list .product-cards__prices {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-cards__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  .catalog-content {
    padding: 0 0 45px;
  }
}

@media (max-width: 480px) {
  .footer-main .footer-content {
    flex-direction: column;
  }
  .footer-content .contact .footer-col-title {
    margin-bottom: 0;
  }

  .footer-content .accordion-mob {
    width: 100%;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
  }
  .footer-content .accordion-mob__title {
    padding: 14px 35px 14px 0;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
  }
  .footer-content .footer-col-title img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 28px;
  }
  .accordion-mob__content {
    display: none;
  }
  .footer-content {
    gap: 32px;
  }
  .accordion-mob__content ul {
    padding: 24px 0;
  }

  .searched-box li span {
    font-size: 13px;
  }
}

.searched-box.type-2 {
  padding: 35px 0;
  background-color: transparent;
}
.searched-box.type-2 li {
  border: 1px solid #15161a;
}
.searched-box.type-2 a {
  color: #15161a;
}
.page.article {
  padding: 60px 0;
}
.page.article .container {
  max-width: 1400px;
}
/* .article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-bottom: 20px;
}
.article * + h1,
.article * + h2,
.article * + h3,
.article * + h4,
.article * + h5,
.article * + h6 {
  margin-top: 20px;
}
.article,
.article p {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}
.article p {
  margin-bottom: 16px;
}
.article table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  width: 100%;
}
.article table th,
.article table td {
  border: 1px solid #ccc;
  padding: 10px 20px;
} */

/* ===== TEXT ===== */
.article {
  font-size: 15px;
  line-height: 1.5;
  color: #222;
}

.article p {
  margin-bottom: 16px;
}

.article strong,
.article b {
  font-weight: 600;
}

.article i,
.article em {
  font-style: italic;
}

/* ===== HEADINGS ===== */
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.article * + h1,
.article * + h2,
.article * + h3,
.article * + h4,
.article * + h5,
.article * + h6 {
  margin-top: 30px;
}

/* ===== LINKS ===== */
.article a {
  color: inherit;
  text-decoration: underline;
}

.article a:hover {
  text-decoration: none;
}

/* ===== LISTS ===== */
.article ul,
.article ol {
  margin: 0 0 16px 20px;
}

.article li {
  margin-bottom: 8px;
}

/* ===== TABLE ===== */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.article table th,
.article table td {
  border: 1px solid #ccc;
  padding: 10px 20px;
  text-align: left;
}

/* ===== MEDIA ===== */
.article img,
.article video,
.article iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

/* ===== FIGURE ===== */
.article figure {
  margin: 20px 0;
}

.article figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

/* ===== QUOTES ===== */
.article blockquote {
  margin: 20px 0;
  padding: 12px 16px;
  border-left: 3px solid #ccc;
  color: #555;
  font-style: italic;
}

/* ===== CODE ===== */
.article code {
  font-family: monospace;
  background: #f6f6f6;
  padding: 2px 6px;
  border-radius: 4px;
}

.article pre {
  background: #f6f6f6;
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 20px;
}

/* ===== HR ===== */
.article hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

/* ===== SMALL / SUB / SUP ===== */
.article small {
  font-size: 13px;
  color: #666;
}

.article sub,
.article sup {
  font-size: 75%;
}

/* ===== ADDRESS ===== */
.article address {
  font-style: normal;
  color: #666;
}

/* ===== LISTS ===== */
.article ul,
.article ol {
  margin: 0 0 16px 24px;
  padding: 0;
}

.article ul {
  list-style: disc;
}

.article ol {
  list-style: decimal;
}

.article li {
  margin-bottom: 8px;
}

/* nested lists */
.article li > ul,
.article li > ol {
  margin-top: 8px;
  margin-bottom: 0;
  margin-left: 20px;
}

.article ul ul {
  list-style: circle;
}

.article ul ul ul {
  list-style: square;
}

.article ol ol {
  list-style: lower-alpha;
}

.article ol ol ol {
  list-style: lower-roman;
}
.form-error {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 0, 0, 0.06);
  color: #c62828;
  font-size: 14px;
  border-radius: 6px;
}

@media (max-width: 650px) {
  .breadcrumbs a,
  .breadcrumbs li span {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* max-width: 160px; */
    font-size: 12px;
  }
  .h2,
  h2 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .product-cards__badge {
    font-size: 9px;
  }

  .more-offer .product-cards__title {
    font-size: 12px;
    line-height: 1.5;
  }

  .searched-box .h1 {
    font-size: 40px;
    line-height: 1.4;
  }

  .product-cards__title {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }
  .product-cards__prices .price {
    font-size: 14px;
    line-height: 1.5;
  }
  .filter-item.sort .filter-dropdown label,
  .catalog-filters .filter-toggle,
  .catalog-filters .open-popup-filter {
    font-size: 14px;
  }

  .catalog-content {
    padding: 0px 0 46px !important;
  }
  .button-outlined,
  .button-contained {
    height: 54px;
    font-size: 14px;
  }

  .article-box__text h5 {
    font-size: 14px;
    line-height: 1.5;
  }

  .article-second__content li,
  .article-second__text p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color-black);
  }
  .article-second__content .h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .instagram-box__slider .swiper-button-prev,
  .instagram-box__slider .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }

  body .feature-row__text {
    padding: 0 20px;
  }
}
