@charset "UTF-8";
/*
Theme Name: ols

WooCommerce styles override
*/
/**
 * Shop tables
 */
/**
 * Products
 */
.woo-page {
  padding-bottom: 80px;
}

.woo-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 48px;
}
.woo-hero__content {
  flex: 1 1 65%;
  max-width: 650px;
}
.woo-hero__breadcrumbs {
  margin-bottom: 20px;
}
.woo-hero__breadcrumbs .woocommerce-breadcrumb {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}
.woo-hero__breadcrumbs .woocommerce-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.woo-hero__breadcrumbs .woocommerce-breadcrumb a:hover {
  opacity: 0.8;
}
.woo-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px 0;
}
.woo-hero__subtitle {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.woo-hero__media {
  flex: 1 1 35%;
  height: 300px;
  overflow: hidden;
}
.woo-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .woo-hero {
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .woo-hero__title {
    font-size: 42px;
  }
  .woo-hero__media {
    height: 260px;
  }
}
@media (max-width: 768px) {
  .woo-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .woo-hero__content {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .woo-hero__media {
    width: 100%;
    height: 220px;
    flex: 1 1 auto;
  }
}
@media (max-width: 480px) {
  .woo-hero__title {
    font-size: 34px;
  }
  .woo-hero__subtitle {
    font-size: 14px;
  }
  .woo-hero__media {
    height: 180px;
  }
}
/* Layout */
.woo-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .woo-layout {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .woo-layout {
    display: block;
  }
  .woo-layout .woo-sidebar {
    display: none;
  }
  .woo-layout .woo-sidebar.is-open {
    display: block;
  }
  .woo-layout .woo-main {
    width: 100%;
  }
}

.woo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 24px;
}
.woo-topbar__subcats {
  flex: 1 1 auto;
}
.woo-topbar__sort {
  flex: 0 0 auto;
}

/* Навігація підкатегорій */
.woo-subcats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.woo-subcats__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  background-color: #ffffff;
  border: 1px solid rgba(240, 90, 48, 0.4);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.woo-subcats__item:hover {
  background-color: rgba(240, 90, 48, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}
.woo-subcats__item {
  /* Активний стан (Всі або обрана підкатегорія) */
}
.woo-subcats__item.is-active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  pointer-events: none;
}

/* Адаптив для топ-бару */
@media (max-width: 992px) {
  .woo-topbar {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.woo-loop-wrapper .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1200px) {
  .woo-loop-wrapper .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .woo-loop-wrapper .products {
    grid-template-columns: 1fr;
  }
}

.woo-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.woo-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.woo-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.woo-card__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.woo-card__img-link {
  display: block;
}
.woo-card__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
.woo-card .woo-tags {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}
.woo-card .woo-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0px;
  text-decoration: none;
  line-height: 1.2;
  pointer-events: auto;
  background-color: var(--primary);
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.woo-card .woo-tag:hover {
  opacity: 0.8;
}
.woo-card .woo-tag--image {
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}
.woo-card .woo-tag--image img {
  display: block;
  height: 24px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.woo-card__rating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.woo-card__stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}
.woo-card__stars .star {
  color: #e5e7eb;
}
.woo-card__stars .star.is-filled {
  color: #fbbf24;
}
.woo-card__reviews-count {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}
.woo-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.woo-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.woo-card__title a {
  color: #2c2a3f;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.woo-card__title a:hover {
  color: var(--primary);
}
.woo-card__swatches-wrap {
  margin-bottom: 12px;
  margin-top: auto;
}
.woo-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0px;
  margin-top: auto;
}
.woo-card__price {
  padding-left: 12px;
  padding-bottom: 4px;
}
.woo-card__price .price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.woo-card__price .price del {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}
.woo-card__price .price ins, .woo-card__price .price > .amount, .woo-card__price .price > bdi {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.woo-card__price .woocommerce-Price-amount bdi {
  font-size: 20px;
}
.woo-card__action {
  margin-bottom: -8px;
}
.woo-card__action .button {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}
.woo-card__action .button.loading {
  opacity: 0.7;
  pointer-events: none;
}
.woo-card__action .button.added {
  background-color: #10b981;
}
.woo-card__action {
  /* Ховаємо кнопку "Переглянути кошик", яка з'являється після кліку */
}
.woo-card__action .added_to_cart {
  display: none !important;
}

.sale ins {
  background: transparent !important;
  padding: 0 !important;
  text-decoration: none;
}

/* Стиль для кнопки, коли товар уже в кошику */
.woo-card__action .button.is-added,
.woo-card__action .button.added {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
}

/**
 * Single product
 */
/* ==========================================================================
   Сторінка одного товару (Single Product)
   ========================================================================== */
:root {
  --border-color: #e5e7eb;
}

.woo-single__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-block: 60px;
}
@media (max-width: 992px) {
  .woo-single__top {
    grid-template-columns: 1fr;
  }
}
.woo-single__gallery .woocommerce-product-gallery {
  position: relative;
  display: flex !important;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 20px;
  opacity: 1 !important;
  /* --- ГОЛОВНЕ ФОТО --- */
}
.woo-single__gallery .woocommerce-product-gallery .flex-viewport {
  flex: 1;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.woo-single__gallery .woocommerce-product-gallery .flex-viewport:hover {
  cursor: crosshair;
}
.woo-single__gallery .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.woo-single__gallery .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image a {
  display: block;
}
.woo-single__gallery .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
.woo-single__gallery .woocommerce-product-gallery {
  /* --- МІНІАТЮРИ --- */
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  max-height: 640px;
  overflow-y: auto;
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav::-webkit-scrollbar {
  display: none;
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav li {
  list-style: none;
  margin: 0;
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav li img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
  background: #fff;
}
.woo-single__gallery .woocommerce-product-gallery .flex-control-nav li img.flex-active, .woo-single__gallery .woocommerce-product-gallery .flex-control-nav li img:hover {
  opacity: 1;
  border-color: var(--primary);
}
.woo-single__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 99;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: transparent;
}
.woo-single__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%232c2a3f" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.woo-single__gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  display: none !important;
}
.woo-single__gallery .woocommerce-product-gallery {
  /* --- АДАПТИВ (Мобільні та Планшети) --- */
}
@media (max-width: 768px) {
  .woo-single__gallery .woocommerce-product-gallery {
    flex-direction: column;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-viewport {
    width: 100%;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 8px;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav li {
    flex-shrink: 0;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav li img {
    width: 80px;
    height: 80px;
  }
}
.woo-single__breadcrumbs .woocommerce-breadcrumb {
  margin: 0 0 12px 0;
  font-size: 13px;
  color: #9ca3af;
}
.woo-single__breadcrumbs .woocommerce-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.woo-single .product_title {
  font-size: 56px;
  font-weight: 700;
  color: #2c2a3f;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.woo-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 13px;
}
.woo-single__meta .woo-single__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.woo-single__meta .woo-single__stock .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.woo-single__meta .woo-single__stock.is-instock .dot {
  background-color: #10b981;
}
.woo-single__meta .woo-single__stock.is-outofstock .dot {
  background-color: #ef4444;
}
.woo-single__meta .woo-single__sku {
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
}
.woo-single__excerpt {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 32px;
}
.woo-single__buy-box {
  background-color: var(--gray);
  padding: 24px;
  border-radius: 4px;
}
.woo-single__buy-box .cart, .woo-single__buy-box .variations_form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 0;
}
.woo-single__buy-box .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 16px;
}
.woo-single__buy-box .price {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.woo-single__buy-box .price del {
  color: #9ca3af;
  font-size: 14px;
}
.woo-single__buy-box .price ins, .woo-single__buy-box .price > .amount, .woo-single__buy-box .price > bdi {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.woo-single__buy-box .quantity .qty {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.woo-single__buy-box .single_add_to_cart_button {
  height: 44px;
  padding: 0 32px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.woo-single__buy-box .single_add_to_cart_button:hover {
  background-color: rgb(220.9864864865, 60.8513513514, 16.0135135135);
}
.woo-single__buy-box .variations {
  width: 100%;
  margin-bottom: 20px;
}
.woo-single__buy-box .variations td {
  display: block;
  padding: 0;
}
.woo-single__buy-box .variations .label {
  display: none;
}
.woo-single {
  /* --- ТАБИ ТА ХАРАКТЕРИСТИКИ --- */
}
.woo-single__bottom {
  margin-top: 60px;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs {
  display: flex;
  background-color: var(--gray);
  margin: 0 0 32px 0;
  padding: 0;
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs::before {
  display: none;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li {
  margin: 0;
  padding: 0;
  border: none;
  border-right: 1px solid #e5e7eb;
  background: transparent;
  border-radius: 0;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li::before, .woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li::after {
  display: none;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li a {
  display: block;
  padding: 16px 32px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border-color: transparent;
  border-radius: 0px;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li.active {
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid transparent;
}
.woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li.active a {
  color: var(--primary);
}
.woo-single__bottom .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-bottom: 40px;
}
.woo-single__bottom .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.woo-single__bottom .woocommerce-product-attributes {
  width: 100%;
  border: none;
  margin: 0;
}
.woo-single__bottom .woocommerce-product-attributes tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  border: none;
}
.woo-single__bottom .woocommerce-product-attributes tr::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  border-bottom: 1px dotted #d1d5db;
  z-index: 1;
}
.woo-single__bottom .woocommerce-product-attributes tr th, .woo-single__bottom .woocommerce-product-attributes tr td {
  background-color: #fff;
  z-index: 2;
  padding: 0;
  border: none;
  font-size: 14px;
  line-height: 1;
}
.woo-single__bottom .woocommerce-product-attributes tr th {
  padding-right: 8px;
  font-weight: 400;
  color: #6b7280;
  text-align: left;
}
.woo-single__bottom .woocommerce-product-attributes tr td {
  padding-left: 8px;
  font-weight: 600;
  color: #2c2a3f;
  text-align: right;
}
.woo-single__bottom .woocommerce-product-attributes tr td p {
  margin: 0;
}

.variations_form {
  width: 100%;
}
.variations_form .variations {
  width: 100%;
  margin-bottom: 24px;
  border: none;
}
.variations_form .variations td, .variations_form .variations th {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
}
.variations_form .variations .label {
  display: none;
}
.variations_form .variations .value {
  position: relative;
}
.variations_form .variations .value select {
  display: none !important;
}
.variations_form .variations .value .reset_variations {
  display: none !important;
}
.variations_form .variations .value .woo-ca-swatches-single {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.variations_form .variations .value .woo-ca-swatches-single .woo-ca-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}
.variations_form .variations .value .woo-ca-swatches-single .woo-ca-swatch:hover {
  transform: scale(1.1);
}
.variations_form .variations .value .woo-ca-swatches-single .woo-ca-swatch.is-active {
  box-shadow: 0 0 0 2px var(--gray), 0 0 0 4px var(--primary);
  transform: scale(1.1);
}
.variations_form .single_variation_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

.woo-related {
  margin-top: 80px;
}
.woo-related__title {
  font-size: 32px;
  color: #2c2a3f;
  margin-bottom: 32px;
}
.woo-related__track {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.woo-related__track::-webkit-scrollbar {
  display: none;
}
.woo-related__track .woo-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}
@media (max-width: 1200px) {
  .woo-related__track .woo-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 992px) {
  .woo-related__track .woo-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .woo-related__track .woo-card {
    flex: 0 0 85%;
  }
}
.woo-related {
  /* --- КОНТРОЛИ (Стрілки + Пагінація) --- */
}
.woo-related__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.woo-related__controls .slider-arrow {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--primary, #f05a30);
  color: var(--primary, #f05a30);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woo-related__controls .slider-arrow:hover {
  background: var(--primary, #f05a30);
  color: #fff;
}
.woo-related__controls .slider-pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}
.woo-related__controls .slider-pagination__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.3s;
}
.woo-related__controls .slider-pagination__item.is-active {
  color: var(--primary, #f05a30);
  font-weight: 600;
}
.woo-related__controls .slider-pagination__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #2c2a3f;
  margin-left: 16px;
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.commentlist .review {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.2s ease;
}
.commentlist .review:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.commentlist .review .comment_container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .commentlist .review .comment_container {
    flex-direction: column;
    gap: 16px;
  }
}
.commentlist .review {
  /* --- Аватарка --- */
}
.commentlist .review .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  background-color: #f3f4f6;
}
.commentlist .review {
  /* --- Контент відгуку --- */
}
.commentlist .review .comment-text {
  flex: 1;
}
.commentlist .review .comment-text .star-rating {
  margin-bottom: 8px;
}
.commentlist .review .comment-text .meta {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.commentlist .review .comment-text .meta .woocommerce-review__author {
  color: #2c2a3f;
  font-weight: 600;
  font-size: 15px;
}
.commentlist .review .comment-text .meta .woocommerce-review__dash {
  color: #d1d5db;
}
.commentlist .review .comment-text .meta .woocommerce-review__published-date {
  font-size: 13px;
}
.commentlist .review .comment-text .description {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}
.commentlist .review .comment-text .description p {
  margin: 0;
}

@media (max-width: 768px) {
  .woo-single__gallery {
    max-width: 100%;
    overflow: hidden;
  }
  .woo-single__gallery .woocommerce-product-gallery {
    width: 100%;
    margin: 0;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-viewport {
    width: 100%;
    max-width: 100%;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 12px 0;
    width: 100%;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav li {
    flex: 0 0 70px !important;
    width: 70px;
  }
  .woo-single__gallery .woocommerce-product-gallery .flex-control-nav li img {
    width: 100%;
    height: 70px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .woo-single .product_title {
    font-size: 26px;
  }
  .woo-single__top {
    gap: 24px;
    margin-bottom: 40px;
  }
  .woo-single__buy-box {
    padding: 16px;
  }
  .woo-single__buy-box .single_variation_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .woo-single__buy-box .single_variation_wrap .woocommerce-variation-add-to-cart {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .woo-single__buy-box .single_variation_wrap .woocommerce-variation-add-to-cart .qty {
    width: 60px;
  }
  .woo-single__buy-box .single_variation_wrap .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
    flex: 1;
    padding: 0 16px;
  }
  .woo-single__bottom {
    margin-top: 40px;
  }
  .woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .woo-single__bottom .woocommerce-tabs ul.tabs.wc-tabs li a {
    padding: 12px 20px;
  }
  .woo-single__bottom .woocommerce-product-attributes tr {
    flex-direction: column;
    gap: 4px;
  }
  .woo-single__bottom .woocommerce-product-attributes tr::after {
    display: none;
  }
  .woo-single__bottom .woocommerce-product-attributes tr th {
    text-align: left;
    padding: 0;
  }
  .woo-single__bottom .woocommerce-product-attributes tr td {
    text-align: left;
    padding: 0;
  }
}
.custom-qty-ready button {
  height: 44px;
  padding: 0px 16px;
}

/**
 * Checkout
 */
/**
 * General WooCommerce components
 */
/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-header-cart .cart-contents {
  text-decoration: none;
}
.site-header-cart .widget_shopping_cart {
  display: none;
}
.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}
.star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--link);
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "S";
  color: var(--text);
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: var(--text);
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: var(--link);
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: var(--link);
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: var(--text);
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: var(--link);
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #0f834d;
}
.woocommerce-password-strength.short {
  color: #e2401c;
}
.woocommerce-password-strength.bad {
  color: #e2401c;
}
.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #0f834d;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #e2401c;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #0f834d;
  clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #3d9cd2;
}

.woocommerce-error {
  background-color: #e2401c;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #3d9cd2;
  z-index: 9999;
}

@media screen and (min-width: 48em) {
  /**
   * Header cart
   */
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    left: -999em;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block;
  }
}
.woo-ca-swatches-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.woo-ca-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.woo-ca-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.woo-ca-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.woo-ca-swatch.is-active {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--primary);
  transform: scale(1.1);
}

.custom-ordering {
  margin: 0;
}
.custom-ordering__wrapper {
  position: relative;
  display: inline-block;
}
.custom-ordering__btn {
  padding: 12px;
}
.custom-ordering__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.custom-ordering__list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-ordering__item {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.custom-ordering__item:hover {
  background-color: #f8fafc;
}
.custom-ordering__item.is-active {
  color: var(--primary);
  font-weight: 600;
  background-color: #fff3f0;
}

/**
 * WooCommerce widgets
 */
.woo-filters {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0px;
  padding: 16px;
  position: relative;
}
.woo-filters__group {
  border-bottom: 1px solid #f3f4f6;
  padding: 16px 0;
}
.woo-filters__group:first-child {
  padding-top: 0;
}
.woo-filters__group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.woo-filters__group.is-open .woo-filters__icon {
  transform: rotate(180deg);
}
.woo-filters__group.is-open .woo-filters__content {
  display: block;
}
.woo-filters__active-wrap {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e5e7eb;
}
.woo-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.woo-filters__tag {
  display: inline-flex;
  align-items: flex-start;
  background-color: #f3f4f6;
  color: var(--text);
  font-size: 13px;
  padding: 6px 10px 6px 12px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}
.woo-filters__tag:hover {
  background-color: #e5e7eb;
}
.woo-filters__tag-remove {
  background: transparent;
  border: none;
  border-radius: 50px;
  width: 16px;
  height: 16px;
  padding: 4px;
  margin-left: 12px;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.woo-filters__tag-remove:hover {
  opacity: 1;
}
.woo-filters__tag-remove::before, .woo-filters__tag-remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: #ef4444;
  transform-origin: center;
}
.woo-filters__tag-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.woo-filters__tag-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.woo-filters__clear-all {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.woo-filters__clear-all:hover {
  text-decoration: none;
}
.woo-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.woo-filters__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.woo-filters__icon {
  width: 18px;
  height: 18px;
  background-color: var(--primary);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.woo-filters__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.woo-filters__content {
  display: none;
  padding-top: 16px;
  animation: wooFiltersFadeIn 0.3s ease;
}
.woo-filters__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.woo-filters__price-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  -moz-appearance: textfield;
}
.woo-filters__price-input::-webkit-outer-spin-button, .woo-filters__price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woo-filters__price-input:focus {
  border-color: var(--primary);
}
.woo-filters__slider {
  position: relative;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.woo-filters__slider-track {
  position: absolute;
  height: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  left: 0%;
  right: 0%;
}
.woo-filters__slider-range {
  position: absolute;
  top: -5px;
  width: 100%;
  height: 16px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
}
.woo-filters__slider-range::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary);
  pointer-events: auto;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.woo-filters__slider-range::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary);
  pointer-events: auto;
  cursor: pointer;
}
.woo-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woo-filters__item {
  margin-bottom: 12px;
}
.woo-filters__item:last-child {
  margin-bottom: 0;
}
.woo-filters__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.woo-filters__checkbox:hover .woo-filters__checkbox-box {
  border-color: var(--primary);
}
.woo-filters__checkbox-input {
  display: none;
}
.woo-filters__checkbox-input:checked + .woo-filters__checkbox-box {
  background-color: var(--primary);
  border-color: var(--primary);
}
.woo-filters__checkbox-input:checked + .woo-filters__checkbox-box::after {
  display: block;
}
.woo-filters__checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.woo-filters__checkbox-box::after {
  content: "";
  display: none;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.woo-filters__checkbox-label {
  font-size: 14px;
  color: #4b5563;
}
.woo-filters__floating-apply {
  position: absolute;
  left: 100%;
  margin-left: -10px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.woo-filters__floating-apply.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.woo-filters__floating-apply .btn {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(240, 90, 48, 0.3);
}
.woo-filters__floating-apply .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  z-index: -1;
}

@keyframes wooFiltersFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.woo-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .woo-topbar__actions {
    justify-content: space-between;
    width: 100%;
  }
}

.woo-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.woo-filter-toggle::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
}
.woo-filter-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  margin-left: -22px;
}

.woo-filters-overlay {
  display: none;
}

.woo-filters__mobile-header {
  display: none;
}

/* ==========================================================================
   Мобільний Off-Canvas Сайдбар (Екрани < 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .woo-filter-toggle {
    display: flex;
  }
  /* Темний фон */
  .woo-filters-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 24, 39, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
  }
  .woo-filters-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  /* Сам сайдбар */
  .woo-filters {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 0;
    border: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    padding: 0;
  }
  .woo-filters.is-open {
    transform: translateX(100%);
  }
  .woo-filters form {
    padding: 24px;
  }
  .woo-filters {
    /* Плаваюча кнопка "Застосувати" на мобільному стає фіксованою знизу */
  }
  .woo-filters__floating-apply {
    position: fixed;
    left: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100%;
    margin: 0;
    transform: translateY(100%);
    padding: 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  .woo-filters__floating-apply.is-visible {
    transform: translateY(0);
  }
  .woo-filters__floating-apply .btn {
    width: 100%;
    padding: 12px;
  }
  .woo-filters__floating-apply .btn::before {
    display: none;
  }
  /* Шапка всередині мобільного сайдбару */
  .woo-filters__mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .woo-filters__mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
  }
  .woo-filters__close {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border: none;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .woo-filters__close::before, .woo-filters__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: #4b5563;
    transform-origin: center;
  }
  .woo-filters__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .woo-filters__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}/*# sourceMappingURL=woocommerce.css.map */