@charset "UTF-8";
/* WooCommerce Product Page Styles - Complete File */
:root {
  /* Colors */
  --shop-color-primary: #191919;
  --shop-color-secondary: #1a1a1a;
  --shop-color-text: #333333;
  --shop-color-text-light: #666666;
  --shop-color-text-lighter: #999999;
  --shop-color-text-lightest: #a6a6a6;
  --shop-color-text-muted: #ababab;
  --shop-color-white: #ffffff;
  --shop-color-bg-light: #f8f9fa;
  --shop-color-bg-lighter: #f0f0f0;
  --shop-color-bg-dark: #191919;
  --shop-color-border: #e0e0e0;
  --shop-color-border-light: #ededed;
  --shop-color-border-lighter: #e9ecef;
  --shop-color-border-lightest: #ddd;
  --shop-color-accent: #141eba;
  --shop-color-accent-dark: #151ab4;
  --shop-color-hover-bg: #ededed;
  --shop-color-hover-shadow: rgba(0, 0, 0, 0.15);
  --shop-color-button-primary: #ffd50c;
  --shop-color-button-text: #191919;
  --shop-color-button-primary-mobile: #141ab4;
  --shop-color-button-text-mobile: #fff;
  --shop-color-button-disabled: #ccc;
  --shop-color-success: #28a745;
  --shop-color-danger: #dc3545;
  --shop-color-warning: #f59e0b;
  --shop-color-warning-dark: #e08e00;
  --shop-color-star: #ffc107;
  --shop-color-star-empty: #e0e0e0;
  /* Shadows */
  --shop-shadow-default: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --shop-shadow-card: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shop-shadow-card-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  /* Spacing */
  --shop-container-max-width: 1280px;
  --shop-container-padding: 0;
  --shop-container-padding-mobile: 15px;
  --shop-section-padding: 20px;
  --shop-section-padding-mobile: 15px;
  --shop-grid-gap: 20px;
  --shop-grid-gap-mobile: 15px;
  --shop-products-grid-gap: 0px;
  --shop-filter-gap: 25px;
  --shop-filter-options-gap: 8px;
  /* Sizes */
  --shop-category-icon-size: 100px;
  --shop-category-icon-img-size: 50px;
  --shop-category-icon-inner-size: 40px;
  --shop-product-image-padding: 45px;
  --shop-star-size: 15px;
  --shop-action-icon-size: 34px;
  --shop-flag-width: 20px;
  --shop-flag-height: 15px;
  --shop-pagination-size: 40px;
  --shop-spinner-size: 24px;
  /* Typography */
  --shop-font-family-primary: "ActayWide", sans-serif;
  --shop-font-family-secondary: "Unbounded", sans-serif;
  --shop-font-family-tertiary: "Montserrat", sans-serif;
  /* Font sizes */
  --shop-font-size-title: 32px;
  --shop-font-size-filter-title: 18px;
  --shop-font-size-filter-subtitle: 16px;
  --shop-font-size-product-title: 13px;
  --shop-font-size-product-price: 18px;
  --shop-font-size-button: 13px;
  --shop-font-size-breadcrumb: 14px;
  --shop-font-size-small: 12px;
  --shop-font-size-smaller: 11px;
  --shop-font-size-smallest: 10px;
  /* Font weights */
  --shop-font-weight-bold: 700;
  --shop-font-weight-semibold: 600;
  --shop-font-weight-medium: 500;
  --shop-font-weight-regular: 400;
  --shop-font-weight-light: 300;
  --shop-font-weight-lighter: 200;
  /* Line heights */
  --shop-line-height-title: 22px;
  --shop-line-height-product-title: 19px;
  --shop-line-height-small: 15px;
  --shop-line-height-smaller: 13px;
  /* Border radius */
  --shop-radius-default: 6px;
  --shop-radius-small: 5px;
  --shop-radius-smaller: 4px;
  --shop-radius-smallest: 3px;
  --shop-radius-tiny: 2px;
  --shop-radius-large: 12px;
  /* Transitions */
  --shop-transition-default: all 0.3s ease;
  --shop-transition-fast: all 0.5s ease;
  /* Z-index */
  --shop-z-index-badge: 2;
  --shop-z-index-sticky: 20;
  /* Grid */
  --shop-grid-columns: 4;
  --shop-grid-columns-tablet: 3;
  --shop-grid-columns-mobile: 2;
  --shop-grid-columns-mobile-small: 1;
  --shop-sidebar-width: 215px;
  --shop-sidebar-width-tablet: 250px;
}

/* Dark theme overrides */
body.dark-theme {
  --shop-color-primary: #e0e0e0;
  --shop-color-secondary: #d0d0d0;
  --shop-color-text: #e0e0e0;
  --shop-color-text-light: #a0a0a0;
  --shop-color-text-lighter: #888888;
  --shop-color-text-lightest: #707070;
  --shop-color-white: #1a1a1a;
  --shop-color-bg-light: #252525;
  --shop-color-bg-lighter: #2d2d2d;
  --shop-color-border: #404040;
  --shop-color-border-light: #333333;
  --shop-color-hover-bg: #333333;
  --shop-shadow-default: 0px 4px 4px rgba(255, 255, 255, 0.1);
  --shop-shadow-card: 0 2px 10px rgba(255, 255, 255, 0.05);
  --shop-shadow-card-hover: 0 8px 25px rgba(255, 255, 255, 0.1);
  --shop-color-button-primary: #141ab4;
  --shop-color-button-text: #fff;
  --shop-color-button-primary-mobile: #ffd50c;
  --shop-color-button-text-mobile: #191919;
}

@keyframes smooth-appearance {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-item {
  position: relative;
  background: white;
  border: 1px solid #ededed;
  overflow: hidden;
  transition: var(--shop-transition-default);
  padding: 9px;
  opacity: 0;
  transform: translateY(-15px);
  animation: smooth-appearance 0.2s ease-in-out forwards var(--anim-delay, 0ms);
}
@media (hover: hover) and (pointer: fine) {
  .product-item:hover {
    transform: translateY(-5px);
  }
}
.product-item .category-product-link {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.product-item .category-product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  height: 160px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .product-item .category-product-image {
    padding: 0;
    height: 110px;
    min-height: 110px;
  }
}
.product-item .category-product-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.product-item .category-product-info {
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-item .category-product-info .category-product-title {
  font-family: var(--shop-font-family-secondary);
  font-weight: 200;
  font-size: 10px;
  line-height: 120%;
  color: #191919;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-title {
    font-family: var(--shop-font-family-tertiary);
    font-size: 12px;
  }
}
.product-item .category-product-info .category-product-title:hover {
  color: #000;
}
.product-item .category-product-info .category-product-rating .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}
.product-item .category-product-info .category-product-rating .star {
  font-size: 14px;
  color: var(--shop-color-star-empty);
}
.product-item .category-product-info .category-product-rating .star.filled {
  color: var(--shop-color-star);
}
.product-item .category-product-info .category-product-sku {
  margin: 10px 0 0;
  font-family: var(--shop-font-family-secondary);
  line-height: 120%;
  font-weight: 200;
  font-size: 10px;
  color: #a6a6a6;
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-sku {
    font-family: var(--shop-font-family-tertiary);
  }
}
.product-item .category-product-info .category-product-availability {
  font-family: var(--shop-font-family-secondary);
  font-weight: 500;
  font-size: 10px;
  color: #a6a6a6;
  line-height: 120%;
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-item .category-product-info .category-product-availability .availability-icon svg {
  width: 10px;
  height: auto;
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-availability {
    margin-top: 10px;
  }
}
.product-item .category-product-info .category-product-price {
  font-weight: 500;
  font-size: 15px;
  color: #191919;
  font-family: var(--shop-font-family-secondary);
  line-height: 120%;
  display: flex;
  margin-bottom: 8px;
  flex-direction: column;
  min-height: 38px;
  justify-content: flex-end;
}
.product-item .category-product-info .category-product-price del {
  font-size: var(--shop-font-size-smallest);
  font-weight: var(--shop-font-weight-light);
  text-decoration: line-through;
  color: var(--shop-color-text-muted);
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-price {
    font-family: var(--shop-font-family-tertiary);
    font-size: 17px;
    font-weight: 700;
  }
}
@media (max-width: 380px) {
  .product-item .category-product-info .category-product-price {
    font-size: 14px;
  }
}
.product-item .category-product-info .category-product-price ins {
  color: #f5b613;
}
.product-item .category-product-info .category-product-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 1280px) {
  .product-item .category-product-info .category-product-actions {
    gap: 5px;
    row-gap: 12px;
  }
}
@media (max-width: 1024px) {
  .product-item .category-product-info .category-product-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }
}
.product-item .category-product-info .category-product-actions .category-add-to-cart {
  background: var(--shop-color-button-primary);
  color: var(--shop-color-button-text);
  border: none;
  border-radius: var(--shop-radius-default);
  padding: 7px 10px;
  font-size: 10px;
  display: flex;
  font-weight: 500;
  gap: 8px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-family: var(--shop-font-family-secondary);
  position: relative;
}
.product-item .category-product-info .category-product-actions .category-add-to-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--shop-transition-fast);
}
.product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg {
  width: 20px;
  height: 20px;
  transition: var(--shop-transition-fast);
}
.product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg path {
  fill: var(--shop-color-button-text);
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg path {
    fill: var(--shop-color-button-text-mobile);
  }
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1024px) {
  .product-item .category-product-info .category-product-actions .category-add-to-cart {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions .category-add-to-cart {
    grid-column-start: 1;
    grid-column-end: 2;
    font-family: var(--shop-font-family-tertiary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    background: var(--shop-color-button-primary-mobile);
    color: var(--shop-color-button-text-mobile);
  }
}
.product-item .category-product-info .category-product-actions:hover::before {
  left: 100%;
}
.product-item .category-product-info .category-product-actions:hover:disabled {
  background: var(--shop-color-button-disabled);
  cursor: not-allowed;
}
.product-item .category-product-info .category-product-actions .action-icon {
  width: 30px;
  height: 30px;
  box-shadow: none;
  padding: 6px;
  border: 1px solid #a6a6a6;
}
.product-item .category-product-info .category-product-actions .action-icon svg {
  color: #a6a6a6;
}
.product-item .category-product-info .category-product-actions .action-icon.in-wishlist {
  border: 1px solid #191919;
}
.product-item .category-product-info .category-product-actions .action-icon.in-wishlist svg {
  color: #191919;
}
.product-item .category-product-info .category-product-actions .action-icon.in-compare {
  border: 1px solid #191919;
}
.product-item .category-product-info .category-product-actions .action-icon.in-compare svg {
  color: #191919;
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions .action-icon.wishlist-btn.add-to-wishlist.desktop, .product-item .category-product-info .category-product-actions .action-icon.wishlist-btn.login-required.desktop, .product-item .category-product-info .category-product-actions .action-icon.wishlist-btn.in-wishlist.desktop {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .product-item .category-product-info .category-product-actions .action-icon.wishlist-btn.add-to-wishlist.mobile, .product-item .category-product-info .category-product-actions .action-icon.wishlist-btn.in-wishlist.mobile {
    display: none !important;
  }
}
.product-item .category-product-info .category-product-actions .product-action-icons.corner {
  position: relative;
  flex-direction: row-reverse;
  display: flex;
  gap: 5px;
  z-index: 10;
  bottom: 0;
  right: 0;
  margin: 0;
}
.product-item .category-product-info .category-product-actions .category-product-country {
  height: 100%;
  width: 30px;
  padding-top: 3px;
}
@media (max-width: 768px) {
  .product-item .category-product-info .category-product-actions .category-product-country.desktop {
    display: none;
  }
}
.product-item .category-product-info .category-product-actions .category-product-country img {
  width: auto;
  object-fit: contain;
  object-position: top center;
}
.product-item .category-product-info .product-rating {
  padding-top: 10px;
  margin-top: auto;
}
.product-item .category-product-info .product-rating .product-stars {
  gap: 0;
}
.product-item .category-product-info .product-rating .product-reviews {
  display: none;
}
@media (max-width: 768px) {
  .product-item .category-product-info .product-rating {
    padding-top: 7px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .product-item .category-product-info .grid-product-info-container {
    display: flex;
    margin-top: auto;
  }
  .product-item .category-product-info .grid-product-info-container .product-left-content {
    width: 100%;
  }
}
.product-item .category-product-info .grid-product-info-container .product-right-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 15px;
  gap: 15px;
}
.product-item .category-product-info .grid-product-info-container .product-right-content .category-product-country {
  width: 30px;
  height: 20px;
}
.product-item .category-product-info .grid-product-info-container .product-right-content .category-product-country img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
@media (min-width: 768px) {
  .product-item .category-product-info .grid-product-info-container .product-right-content {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-item {
    padding: 4px 14px 9px;
  }
  .product-item .availability-text {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
  }
}

.badge {
  padding: 4px 8px;
  border-radius: var(--shop-radius-smaller);
  font-size: var(--shop-font-size-smallest);
  font-weight: var(--shop-font-weight-semibold);
  text-transform: uppercase;
}

.new-badge {
  background: var(--shop-color-accent);
  color: white;
}

.badge.new-badge {
  content: "";
  background: url(/wp-content/themes/slava/img/bg/new.png);
  background-blend-mode: overlay;
  color: #fff;
  background-position: center;
  background-size: cover;
}

/* Product badges */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: var(--shop-z-index-badge);
}
@media (max-width: 768px) {
  .product-badges {
    top: 0;
    left: 0;
  }
}

.badge {
  padding: 4px 8px;
  border-radius: var(--shop-radius-smaller);
  font-size: var(--shop-font-size-smallest);
  font-weight: var(--shop-font-weight-semibold);
  text-transform: uppercase;
}

.two_badge .sale-badge {
  top: 29px;
}

.sale-badge {
  position: absolute;
  top: 0;
  background: var(--shop-color-warning);
  color: white;
  padding: 4px 8px;
  border-radius: var(--shop-radius-smaller);
  font-size: var(--shop-font-size-smallest);
  font-weight: var(--shop-font-weight-semibold);
}

.badge.new-badge {
  content: "";
  background: url(/wp-content/themes/slava/img/bg/new.png);
  background-blend-mode: overlay;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.sale-badge {
  color: #000000;
  content: "";
  background: url(/wp-content/themes/slava/img/bg/sale.png);
  background-blend-mode: overlay;
  background-position: center;
  background-size: cover;
}

.new-badge {
  background: var(--shop-color-accent);
  color: white;
}

.product-rating {
  margin-bottom: 10px;
}
.product-rating .product-stars {
  display: flex;
  gap: 2px;
}

.product-star {
  width: var(--shop-star-size);
  height: var(--shop-star-size);
  background: var(--shop-color-primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shop-color-bg-light);
  color: var(--shop-color-text-light);
  font-size: var(--shop-font-size-breadcrumb);
}

.action-icon.wishlist-btn,
.action-icon.compare-btn {
  width: var(--shop-action-icon-size);
  height: var(--shop-action-icon-size);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--shop-radius-default);
  border: 1px solid var(--shop-color-border-lightest);
  background: transparent;
  cursor: pointer;
}

@media (max-width: 768px) {
  .action-icon.wishlist-btn {
    width: 30px;
    height: 30px;
    box-shadow: none;
  }
  .action-icon.wishlist-btn.add-to-wishlist {
    border: 1px solid #a6a6a6;
  }
  .action-icon.wishlist-btn.add-to-wishlist svg {
    color: #a6a6a6;
  }
  .action-icon.wishlist-btn.add-to-wishlist:hover {
    background: white;
    transform: translateY(0) scale(1);
    border: 1px solid #a6a6a6;
  }
  .action-icon.wishlist-btn.in-wishlist {
    border: 1px solid #191919;
    color: #191919;
  }
  .action-icon.wishlist-btn.login-required {
    border: 1px solid #a6a6a6;
  }
  .action-icon.wishlist-btn.login-required svg {
    color: #a6a6a6;
  }
}
.wishlist-icon,
.compare-icon {
  margin-top: 4px;
}

.product-action-icons {
  display: flex;
  gap: 8px;
}

/* Root variables for Product Page */
:root {
  /* Colors */
  --product-color-primary: #191919;
  --product-color-primary-reverse: #ffffff;
  --product-color-primary-grey: #191919;
  --product-color-secondary: #1a1a1a;
  --product-color-accent: #1420bd;
  --product-color-accent-hover: #1421bd;
  --product-color-blue: #3b82f6;
  --product-color-blue-dark: #2563eb;
  --product-color-blue-darker: #007cba;
  --product-color-blue-darkest: #005a87;
  --product-color-blue-focus: #007bff;
  --product-color-text: #333333;
  --product-color-text-dark: #191919;
  --product-color-text-light: #666666;
  --product-color-text-lighter: #999999;
  --product-color-text-lightest: #a6a6a6;
  --product-color-text-muted: #878282;
  --product-color-text-muted-alt: #8e8e8e;
  --product-color-text-review: #9b9999;
  --product-color-text-code: #495057;
  --product-color-white: #ffffff;
  --product-color-bg-light: #f8f9fa;
  --product-color-bg-lighter: #f9f9f9;
  --product-color-bg-lightest: #eff3f3;
  --product-color-border: #e0e0e0;
  --product-color-border-light: #ededed;
  --product-color-border-lighter: #f4f4f4a6;
  --product-color-border-lightest: #ddd;
  --product-color-border-subtle: #ababab26;
  --product-color-border-alt: #eee;
  --product-color-button-primary: #ffd50c;
  --product-color-button-primary-hover: #ffdd39;
  --product-color-button-secondary: #181818;
  --product-color-button-disabled: #ccc;
  --product-color-success: #28a745;
  --product-color-success-dark: #218838;
  --product-color-danger: #dc3545;
  --product-color-danger-alt: #e74c3c;
  --product-color-warning: #f59e0b;
  --product-color-warning-dark: #e08e00;
  --product-color-star: #ffc107;
  --product-color-star-empty: #e0e0e0;
  --product-color-star-dark: #313131;
  --product-color-gray: #6c757d;
  --product-color-gray-dark: #545b62;
  --product-color-black-alt: #050505;
  --product-color-thumb-border: #252525;
  --product-color-black: #000000;
  /* Shadows */
  --product-shadow-default: 0 2px 10px rgba(0, 0, 0, 0.1);
  --product-shadow-hover: 0 4px 12px rgba(0, 123, 255, 0.3);
  --product-shadow-button: 0 4px 12px rgba(40, 167, 69, 0.3);
  --product-shadow-focus: 0 0 0 3px rgba(0, 123, 255, 0.1);
  --product-shadow-focus-red: 0 0 0 3px rgba(220, 53, 69, 0.1);
  --product-shadow-focus-blue: 0 0 0 3px rgba(0, 124, 186, 0.1);
  /* Gradient */
  --product-gradient-overlay: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.8) 30%,
    #ffffff 100%
  );
  --product-gradient-shimmer: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  --product-gradient-slide: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* Dark theme overrides */
body.dark-theme {
  --product-color-primary: #fff;
  --product-color-primary-reverse: #191919;
  --product-color-primary-grey: #a6a6a6;
  --product-color-secondary: #d0d0d0;
  --product-color-text: #e0e0e0;
  --product-color-text-light: #a0a0a0;
  --product-color-text-lighter: #888888;
  --product-color-text-lightest: #707070;
  --product-color-white: #1a1a1a;
  --product-color-bg-light: #252525;
  --product-color-bg-lighter: #2d2d2d;
  --product-color-bg-lightest: #333333;
  --product-color-border: #404040;
  --product-color-border-light: #333333;
  --product-color-text-dark: #878282;
  --product-shadow-default: 0 2px 10px rgba(255, 255, 255, 0.05);
  --product-shadow-hover: 0 4px 12px rgba(255, 255, 255, 0.1);
  --product-gradient-overlay: linear-gradient(
    transparent,
    rgba(26, 26, 26, 0.8) 30%,
    #1a1a1a 100%
  );
}

/* Main product container */
body.dark-theme .related-products .product-star.filled {
  background: #191919;
}
body.dark-theme .related-products .product-star.empty {
  background: #191919;
  opacity: 0.4;
}
.related-products .wishlist-icon-svg {
  color: #191919;
}

.single-product::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/wp-content/themes/slava/img/bg/bg_top_products.webp);
  background-blend-mode: overlay;
  opacity: 0.08;
  z-index: -1;
}

.product-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  background: var(--product-color-white);
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .product-breadcrumbs {
    margin-top: 150px !important;
  }
}

/* Breadcrumbs */
.product-breadcrumbs {
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--product-color-text-light);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  padding-left: 0;
  font-family: "ActayWide", sans-serif;
  width: 100%;
}
@media (max-width: 768px) {
  .product-breadcrumbs {
    margin-right: 35px;
    margin-left: 35px;
    width: auto;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    overflow-x: scroll;
    margin-top: 100px;
  }
}

.product-navigate {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 0;
  padding-left: 0;
  background: var(--product-color-white);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  gap: 45px;
  width: 100%;
}

.product-navigate a {
  color: var(--product-color-text-lightest);
  font-weight: 400;
  line-height: 22px;
  min-width: 170px;
  text-align: center;
  padding-bottom: 23px;
}

.product-breadcrumbs a {
  color: var(--product-color-text-light);
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  color: var(--product-color-accent-hover);
}

/* Product layout - two columns */
.product-main-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.product-main-content .product-title-hide {
  position: absolute;
  color: transparent;
  font-size: 1px;
}
@media (max-width: 768px) {
  .product-main-content {
    display: flex;
    flex-direction: column;
  }
}

/* ==================== PRODUCT GALLERY WITH SWIPER ==================== */
/* Main gallery container */
.product-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Main gallery slider */
.product-main-gallery.swiper {
  border-radius: 12px;
  overflow: hidden;
  background: var(--product-color-white);
  aspect-ratio: 1;
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
}
@media (max-width: 768px) {
  .product-main-gallery.swiper {
    height: 160px;
  }
}

.product-main-gallery .swiper-wrapper {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
}

.product-main-gallery .swiper-slide {
  background: var(--product-color-bg-light);
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  flex-shrink: 0 !important;
}

.product-main-gallery .swiper-zoom-container {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  background: var(--product-color-white);
}

.tab-panel_atts {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--product-color-primary);
  margin-top: 40px;
}

.product-main-gallery .main-product-img {
  width: 100% !important;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block !important;
  padding: 50px;
  background: var(--product-color-white);
}

/* Zoom state */
.product-main-gallery .swiper-slide-zoomed .swiper-zoom-container {
  cursor: zoom-out;
}

/* Navigation arrows for gallery */
.product-gallery-prev,
.product-gallery-next {
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: var(--product-color-text) !important;
  font-size: 16px !important;
  font-weight: bold !important;
  margin-top: -20px !important;
  transition: all 0.3s ease !important;
  box-shadow: var(--product-shadow-default) !important;
  z-index: 10 !important;
}

.product-gallery-prev:hover,
.product-gallery-next:hover {
  background: transparent !important;
  color: var(--product-color-black-alt) !important;
  transform: scale(1.1) !important;
}

.product-gallery-prev::after,
.product-gallery-next::after {
  font-size: 27px !important;
  font-weight: 900 !important;
}

/* Thumbnails slider */
.product-thumbs-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  gap: 8px;
  position: relative;
}

.product-thumbs-gallery.swiper {
  width: 498px;
  max-width: 498px;
  height: auto;
  margin-top: 0;
  flex-shrink: 0;
}
.product-thumbs-gallery .swiper-slide-thumb-active .thumbnail-item {
  border: 1px solid black;
  padding: 1px;
}
.product-thumbs-gallery .thumbnail-item {
  width: 85px;
  height: 85px;
  transition: border-color 0.3s ease;
  background: var(--product-color-white);
}
.product-thumbs-gallery .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbs-prev,
.product-thumbs-next {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: var(--product-color-text-lightest);
  border: 0;
  background: transparent;
  position: absolute;
}
.product-thumbs-prev svg,
.product-thumbs-next svg {
  width: 12px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.product-thumbs-prev.swiper-button-disabled,
.product-thumbs-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.product-thumbs-prev:hover:not(.swiper-button-disabled),
.product-thumbs-next:hover:not(.swiper-button-disabled) {
  opacity: 0.6;
}

.product-thumbs-prev {
  transform: rotate(180deg);
  left: 0;
}

.product-thumbs-next {
  right: 0;
}

.cfvsw-product-page table.variations .label label {
  color: var(--product-color-text-lightest);
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
}

/* No image placeholder */
.product-no-image {
  aspect-ratio: 1;
  background: var(--product-color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-image-placeholder {
  text-align: center;
  color: var(--product-color-text-lighter);
  font-size: 18px;
  padding: 40px 20px;
}

/* Reset any conflicting styles */
.product-gallery .swiper,
.product-gallery .swiper-wrapper,
.product-gallery .swiper-slide {
  box-sizing: border-box !important;
}

/* Hide broken elements if any */
.product-gallery .swiper-scrollbar {
  display: none !important;
}

/* ==================== PRODUCT INFO SECTION ==================== */
.meta_info {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.product-sku {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: var(--product-color-text-lightest);
}

button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt {
  height: 35px;
  background: #ffd50c;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 13px;
  color: var(--product-color-primary);
  transition: all 0.3s ease;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "ActayWide", sans-serif;
}
body.dark-theme button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt {
  background: #141ab4;
}
body.dark-theme button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt::before {
  filter: brightness(0) invert(1);
}

.single_add_to_cart_button {
  position: relative;
  padding-left: 35px !important;
}

.single_add_to_cart_button::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/slava/img/product/shopcart.svg") no-repeat center;
  background-size: contain;
}

button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt:hover {
  background: var(--product-color-button-primary-hover);
}

button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--product-gradient-shimmer);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
nav.woocommerce-breadcrumb {
  display: flex;
  font-weight: 700;
  font-size: 12px !important;
  line-height: 15px;
  color: var(--product-color-text-lightest) !important;
  font-weight: 600;
  gap: 17px;
  margin: 0 !important;
}

.product-info {
  padding-left: 20px;
  padding-top: 40px;
}

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

/* Product brand */
.product-brand {
  font-size: 14px;
  color: var(--product-color-text-light);
  margin-bottom: 10px;
}

/* Product title */
.product-title {
  margin: 0 0 15px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  color: var(--product-color-primary);
  font-family: "ActayWide", sans-serif;
}

/* Star rating */
.product-rating {
  display: flex;
  gap: 10px;
  flex-direction: row;
  width: 75%;
}

.product-rating .star-rating {
  font-size: 16px;
}

.product-rating .star-rating::before {
  color: var(--product-color-star-empty);
}

.product-rating .star-rating span::before {
  color: var(--product-color-star);
}

.rating-count {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: var(--product-color-text-lightest);
}

/* Stock status */
.product-stock {
  margin-bottom: 10px;
  margin-top: 15px;
}

.price_stock_info {
  margin-bottom: 15px;
}

.product-stock .in-stock {
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  color: var(--product-color-text-lightest);
  font-family: "ActayWide", sans-serif;
}

.product-stock .out-of-stock {
  color: var(--product-color-danger);
  font-weight: 500;
}

/* Price */
.product-price {
  font-style: normal;
  font-weight: 500;
  font-size: 27px;
  display: flex;
  line-height: 38px;
  font-family: "Unbounded", sans-serif;
  color: var(--product-color-primary);
  flex-direction: column;
}

.product-price .amount {
  color: var(--product-color-secondary);
}

.product-price del {
  color: var(--product-color-text-lighter);
  font-size: 24px;
  height: 31px;
  margin-right: 10px;
}

.product-price ins .amount {
  color: #f5b613;
}

.product-price del .amount {
  color: #ababab;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 300;
  color: #ababab;
}

/* ==================== WOOCOMMERCE CART SECTION ==================== */
.wishlist-icon-svg {
  color: #a6a6a6;
  fill: #a6a6a6;
}

.product-cart-section {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  align-items: flex-end;
}
.product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn:hover svg {
  color: #a6a6a6;
}
.product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist {
  background: white;
  border: 1px solid #a6a6a6;
}
.product-cart-section .product-cart-actions .cart-action-btn.compare-btn svg {
  color: #a6a6a6;
}
.product-cart-section .product-cart-actions .cart-action-btn.compare-btn:hover svg {
  color: #a6a6a6;
}
.product-cart-section .product-cart-actions .cart-action-btn.in-wishlist svg {
  color: #a6a6a6;
}
.product-cart-section .variations {
  width: 100%;
  border: none;
  margin-bottom: 0;
}
.product-cart-section .variations tr {
  border: none;
  display: block;
  margin-bottom: 0;
}
.product-cart-section .variations .label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--product-color-text);
  padding: 0;
  text-align: left;
  margin-top: 10px;
}
.product-cart-section .variations .value {
  display: block;
  padding: 0;
}
.product-cart-section .variations select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--product-color-border);
  border-radius: 6px;
  font-size: 16px;
  background: white;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.product-cart-section .variations select:focus {
  outline: none;
  border-color: var(--product-color-blue);
}
.product-cart-section .variations .cart {
  margin-bottom: 0;
}
.product-cart-section .variations .cart .quantity {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .product-cart-section .variations .cart .quantity {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.product-cart-section .variations .cart .quantity .qty {
  width: 80px;
  height: 48px;
  text-align: center;
  border: 1px solid var(--product-color-border);
  border-radius: 6px;
  font-size: 16px;
  padding: 0;
}
.product-cart-section .variations .cart .quantity .qty:focus {
  outline: none;
  border-color: var(--product-color-blue);
}
.product-cart-section .single_add_to_cart_button {
  background: var(--product-color-warning);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  height: 48px;
  display: inline-block;
  vertical-align: top;
}
.product-cart-section .single_add_to_cart_button:hover {
  background: var(--product-color-warning-dark);
}
.product-cart-section .single_add_to_cart_button:disabled {
  background: var(--product-color-button-disabled);
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .product-cart-section .single_add_to_cart_button {
    width: 100%;
  }
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.add-to-wishlist {
  background: #303030;
  border: 1px solid #303030;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.add-to-wishlist .wishlist-icon-svg {
  color: #a6a6a6;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist {
  background: #303030;
  border: 1px solid #303030;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist .wishlist-icon-svg {
  color: white;
}
body.dark-theme .product-cart-section .product-cart-actions.login-required {
  background: #303030;
  border: 1px solid #303030;
}
body.dark-theme .product-cart-section .product-cart-actions.login-required .wishlist-icon-svg {
  color: white;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.add-to-compare {
  background: #303030;
  border: 1px solid #303030;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.add-to-compare svg {
  color: #a6a6a6;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.in-compare {
  background: #303030;
  border: 1px solid #303030;
}
body.dark-theme .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.in-compare svg {
  color: white;
}

a.reset_variations {
  font-size: 10px;
  color: var(--product-color-text-muted-alt);
}

/* Product actions (wishlist, etc) */
.product-actions {
  margin-top: 0;
  display: flex;
  align-items: flex-start;
}

/* Quantity selector wrapper */
.select-number {
  display: flex;
  align-items: center;
  border: var(--main-color-bg-light);
  border-radius: 6px;
  background: var(--main-color-bg-light);
  overflow: hidden;
  width: fit-content;
  height: 35px;
}
.select-number:focus-within {
  border-color: var(--main-color-green-dark);
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.product-form {
  display: flex;
  gap: 10px;
}

.product-action-icons {
  display: flex;
  gap: 10px;
}

.product-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: "Unbounded", sans-serif;
  border: transparent;
  border-radius: 6px;
  background: transparent;
  text-decoration: none;
  color: var(--product-color-text-lightest);
  font-size: 10px;
  line-height: 12px;
  font-weight: 300;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-actions .action-btn:hover {
  border-color: var(--product-color-blue);
  color: var(--product-color-blue);
}

/* ==================== PAYMENT AND DELIVERY INFO ==================== */
.payment-delivery-info {
  border-top: 1px solid var(--product-color-border);
  padding-top: 25px;
  margin-top: 30px;
  font-family: "Unbounded", sans-serif;
}

.payment-delivery-info h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: var(--product-color-primary);
  margin-bottom: 17px;
  font-family: "ActayWide", sans-serif;
}

.payment-delivery-info .payment-methods,
.payment-delivery-info .delivery-methods {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--product-color-border-light);
  padding-bottom: 20px;
}

.payment-delivery-info .payment-item,
.payment-delivery-info .delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  margin-bottom: 10px;
  line-height: 16px;
  color: var(--product-color-text);
}

.payment-item.card_blockfl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card_title {
  display: flex;
  gap: 10px;
}

.card_row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.card_row img {
  width: 35px;
}
.card_row .white_bacground {
  background: white;
  width: 30px;
  padding: 3px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.payment-delivery-info .icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

span.notice_swap ul {
  font-size: 11px;
  color: var(--product-color-text-muted);
  font-weight: 300;
  margin-left: 12px;
  margin-bottom: 10px;
}

span.notice_swap {
  font-size: 11px;
  color: var(--product-color-text-muted);
  font-weight: 300;
}

.payment-delivery-info .guarantee {
  padding-top: 0;
  border-bottom: 1px solid var(--product-color-border-light);
  padding-bottom: 20px;
}

p.daydeliv {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: var(--product-color-primary);
}

.swap {
  margin-top: 26px;
}

.payment-delivery-info .guarantee h4 {
  margin-bottom: 10px;
}

span.notice_guarantee p,
span.notice_swap p {
  font-size: 11px;
  color: var(--product-color-text-muted);
  font-weight: 300;
}

.payment-delivery-info .guarantee p {
  margin: 0;
  margin-bottom: 10px;
}

/* ==================== PRODUCT TABS ==================== */
.product-tabs {
  margin-top: 0;
  padding-top: 20px;
}

.tab-navigation {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--product-color-border);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .tab-navigation {
    gap: 20px;
  }
}

.tab-btn {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--product-color-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.tab-btn.active {
  color: var(--product-color-blue);
  border-bottom-color: var(--product-color-blue);
}

.tab-panel {
  padding: 20px 0px 0px 0px;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  color: var(--product-color-primary);
}
.tab-panel p {
  margin-bottom: 13px;
}
.tab-panel ul {
  margin-left: 16px;
  margin-bottom: 15px;
}
.tab-panel h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: var(--product-color-primary);
  font-family: "ActayWide", sans-serif;
  margin-bottom: 15px;
}
.tab-panel.active {
  display: block;
}

.tab-panel_atts h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "ActayWide", sans-serif;
}

.specifications-table {
  width: 100%;
  border-collapse: collapse;
}

.specifications-table tr {
  border-bottom: 1px solid var(--product-color-border-lighter);
}

.specifications-table .spec-label {
  padding: 15px 0;
  width: 320px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--product-color-primary);
}

.specifications-table .spec-value {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--product-color-primary);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--product-color-secondary);
  font-family: "ActayWide", sans-serif;
}

.reviews-summary p {
  font-size: 12px;
  color: var(--product-color-primary);
  margin-bottom: 4px;
}

/* ==================== RELATED PRODUCTS ==================== */
.related-products {
  margin-top: 60px;
  border-top: 1px solid var(--product-color-border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

.related-products h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  font-family: "ActayWide", sans-serif;
  color: var(--product-color-primary);
}

.related-products .related-products-grid {
  display: block;
  margin: 0;
  max-width: 1019px;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 378px;
  padding-top: 5px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .related-products .related-products-grid {
    height: 310px;
  }
}
.related-products .product-item {
  height: 100%;
}

.related-progress {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: rgb(229, 231, 235);
  border-radius: 3px;
  margin: 0 auto 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color;
  overflow: hidden;
  max-width: 1020px;
}

.related-product-item {
  background: white;
  border: 1px solid var(--product-color-border-light);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-product-sku {
  font-family: "Unbounded", sans-serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 26px;
  color: var(--product-color-text-lightest);
  margin-top: 10px;
}

.related-product-item:hover {
  transform: translateY(-5px);
}

.related-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 45px;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-info {
  padding: 20px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  /* background: #f9f9f9; */
}

.related-product-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: var(--product-color-primary);
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 38px;
}

.related-product-availability {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
  color: var(--product-color-text-lightest);
  margin-bottom: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
  align-content: center;
}

.related-product-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.related-product-price {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 19px;
  min-height: 38px;
  color: var(--product-color-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.related-product-price del {
  font-size: 11px;
  font-weight: 300;
  text-decoration: line-through;
  color: #ababab;
}

.related-add-to-cart {
  background: var(--product-color-button-secondary);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  display: flex;
  font-weight: 400;
  gap: 8px;
  min-width: 113px;
  cursor: pointer;
  font-family: "ActayWide", sans-serif;
  transition: all 0.3s ease;
  width: auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

button.action-icon.wishlist-btn,
button.action-icon.compare-btn {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--product-color-border-lightest);
  background: transparent;
}

span.wishlist-icon,
span.compare-icon {
  margin-top: 4px;
}

.related-add-to-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--product-gradient-slide);
  transition: left 0.5s ease;
}

.related-add-to-cart:hover::before {
  left: 100%;
}

.specifications-table-wrapper {
  position: relative;
  overflow: hidden;
}

.specifications-table {
  width: 100%;
  border-collapse: collapse;
  transition: all 0.3s ease;
}

.specifications-table tr {
  border-bottom: 1px solid var(--product-color-border-alt);
}

.specifications-table .spec-label,
.specifications-table .spec-value {
  padding: 12px 0px;
  text-align: left;
  vertical-align: top;
}

.specifications-table .spec-label {
  font-weight: 600;
  color: var(--product-color-text);
  width: 40%;
}

.specifications-table .spec-value {
  color: var(--product-color-text-light);
  width: 60%;
}

.specifications-table tr.hidden-attribute {
  display: none;
}

.attributes-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--product-gradient-overlay);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.attributes-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .attributes-overlay {
    height: 60px;
  }
}

.show-all-attributes {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 15px 0px;
  margin-top: 15px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-family: "ActayWide", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--product-color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .show-all-attributes {
    padding: 12px 16px;
    font-size: 13px;
  }
}
.show-all-attributes:hover {
  color: var(--product-color-accent) !important;
  transform: translateY(-1px);
}
.show-all-attributes:active {
  transform: translateY(0);
}
.show-all-attributes .arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}
.show-all-attributes .arrow svg {
  width: 100%;
  height: 100%;
}
.show-all-attributes .arrow svg path {
  fill: currentColor;
}
.show-all-attributes.expanded .arrow {
  transform: rotate(180deg);
}
.show-all-attributes.hidden {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.specifications-table tr.hidden-attribute.show {
  display: table-row;
  animation: fadeInUp 0.5s ease forwards;
}

.product-navigate a.active {
  color: var(--product-color-primary);
  border-bottom: 2px solid var(--product-color-primary);
  font-weight: 600;
  line-height: 22px;
  min-width: 170px;
  text-align: center;
  padding-bottom: 23px;
}

/* WooCommerce review form styles */
/* Hide form by default */
#respond {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(-20px);
}

/* Show form when active */
#respond.show-form {
  max-height: 1000px; /* Large enough value */
  opacity: 1;
  transform: translateY(0);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* "Write review" button styles */
.write-review-btn {
  background: var(--product-color-primary);
  color: var(--product-color-primary-reverse);
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "ActayWide", sans-serif;
  transition: transform 0.3s ease;
  margin-top: 0;
}
.write-review-btn:hover {
  transform: translateY(-2px);
}

.write-review-btn:hover {
  transform: translateY(-2px);
}

.write-review-btn:active {
  transform: translateY(0);
}

/* Button state when form is open */
.write-review-btn.form-open {
  background: var(--product-color-gray);
}

.write-review-btn.form-open:hover {
  background: var(--product-color-gray-dark);
}

/* Animation for form fields appearance */
#respond.show-form .comment-form-rating,
#respond.show-form .comment-form-comment,
#respond.show-form .comment-form-author,
#respond.show-form .comment-form-email,
#respond.show-form .form-submit {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

#respond.show-form .comment-form-rating {
  animation-delay: 0.1s;
}

#respond.show-form .comment-form-comment {
  animation-delay: 0.2s;
}

#respond.show-form .comment-form-author {
  animation-delay: 0.3s;
}

#respond.show-form .comment-form-email {
  animation-delay: 0.4s;
}

#respond.show-form .form-submit {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Rating select field styles */
#respond.show-form .comment-form-rating select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--product-color-border-lightest);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background-color: white;
  transition: border-color 0.3s ease;
}

#respond.show-form .comment-form-rating select:focus {
  border-color: var(--product-color-blue-focus);
  outline: none;
  box-shadow: var(--product-shadow-focus);
}

#respond.show-form .comment-form-rating label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--product-color-primary);
}

#respond.show-form .comment-form-rating .required {
  color: var(--product-color-danger);
}

/* Error state for validation */
#respond.show-form select[style*="border-color: rgb(220, 53, 69)"],
#respond.show-form textarea[style*="border-color: rgb(220, 53, 69)"] {
  border-color: var(--product-color-danger) !important;
  box-shadow: var(--product-shadow-focus-red) !important;
}

/* Enhanced form styles */
#respond.show-form h3#reply-title {
  margin-bottom: 20px;
  color: var(--product-color-text);
  font-size: 24px;
}

#respond.show-form .comment-form-rating {
  margin-bottom: 15px;
}

#respond.show-form .comment-form-comment textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--product-color-border-lightest);
  border-radius: 6px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}

#respond.show-form .comment-form-comment textarea:focus {
  border-color: var(--product-color-blue-focus);
  outline: none;
  box-shadow: var(--product-shadow-focus);
}

#respond.show-form .comment-form-author input,
#respond.show-form .comment-form-email input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--product-color-border-lightest);
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

#respond.show-form .comment-form-author input:focus,
#respond.show-form .comment-form-email input:focus {
  border-color: var(--product-color-blue-focus);
  outline: none;
  box-shadow: var(--product-shadow-focus);
}

#respond.show-form .form-submit input[type=submit] {
  background: var(--product-color-success);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#respond.show-form .form-submit input[type=submit]:hover {
  background: var(--product-color-success-dark);
  transform: translateY(-2px);
  box-shadow: var(--product-shadow-button);
}

.cfvsw-swatches-container {
  grid-gap: 4px;
}

/* Description block styles */
.description-wrapper {
  position: relative;
  overflow: hidden;
}

.description-content {
  transition: all 0.3s ease;
}

.description-content.collapsed {
  max-height: 120px;
  overflow: hidden;
}

.description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--product-gradient-overlay);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.description-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.show-full-description {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 15px 0px;
  margin-top: 7px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-family: "ActayWide", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--product-color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.show-full-description:hover {
  color: var(--product-color-accent) !important;
  transform: translateY(-1px);
}

.show-full-description:active {
  transform: translateY(0);
}

.show-full-description .arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.show-full-description .arrow svg {
  width: 100%;
  height: 100%;
}

.show-full-description .arrow svg path {
  fill: currentColor;
}

.show-full-description.expanded .arrow {
  transform: rotate(180deg);
}

.show-full-description.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.description-content.show-full {
  animation: fadeIn 0.3s ease forwards;
}

.product-reviews-list {
  margin-bottom: 30px;
  position: relative;
}
.product-reviews-list .attributes-overlay {
  height: 110px !important;
}

.product-reviews-list h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.show-all-reviews {
  position: relative;
  z-index: 1;
}

.product-commentlist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  max-height: 270px;
  overflow: hidden;
  transition: all 0.4s linear;
}
.product-commentlist.is_open {
  max-height: 1320px;
}
@media (max-width: 768px) {
  .product-commentlist {
    flex-direction: column;
    gap: 0px;
    max-height: 210px;
    flex-wrap: nowrap;
  }
}

.single-review-item {
  border: 1px solid var(--product-color-border);
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  padding: 20px;
  flex: 0 1 calc(50% - 9px);
  margin-bottom: 15px;
  background: white;
}

.comment-form {
  max-width: 600px;
  margin-top: 40px;
  /* margin: 0 auto; */
  padding: 20px;
  background: var(--product-color-bg-lightest);
  border-radius: 4px;
}

.comment-form-rating {
  margin-bottom: 20px;
}

.comment-form-rating label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--product-color-text);
  font-size: 14px;
}

.comment-form-rating .stars {
  margin: 0;
  padding: 0;
}

.comment-form-rating .stars span {
  display: flex;
  gap: 5px;
  width: max-content;
  position: relative;
}
.comment-form-rating .stars span::after {
  content: "*";
  font-size: 14px;
  right: -10px;
  font-weight: 600;
  top: -10px;
  position: absolute;
  color: var(--product-color-danger-alt);
}

#lang-comments-link {
  display: none;
}

.woocommerce-variation.single_variation {
  display: none !important;
}

.comment-form-rating .stars a {
  display: inline-block;
  /* width: 24px; */
  height: 24px;
  text-decoration: none;
  position: relative;
  color: var(--product-color-border-lightest);
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s ease;
}

.woocommerce p.stars:hover a::before {
  content: "\e020";
  color: var(--product-color-primary);
}

.woocommerce p.stars.selected a:not(.active)::before {
  content: "\e020";
  color: var(--product-color-primary);
}

.comment-form-rating .stars a::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a[aria-checked=true] {
  color: var(--product-color-primary);
}

.comment-form-rating .stars a.star-1:hover ~ a,
.comment-form-rating .stars a.star-2:hover ~ a,
.comment-form-rating .stars a.star-3:hover ~ a,
.comment-form-rating .stars a.star-4:hover ~ a,
.comment-form-rating .stars a.star-5:hover ~ a {
  color: var(--product-color-border-lightest);
}

.comment-form-rating .stars:hover a {
  color: var(--product-color-border-lightest);
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a:hover ~ a {
  color: var(--product-color-black);
}

.comment-form-comment {
  margin-bottom: 20px;
}

.comment-form-comment label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--product-color-primary);
  font-size: 14px;
}

.comment-form-comment .required {
  color: var(--product-color-danger-alt);
  font-weight: bold;
}

.comment-form-comment textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 2px solid var(--product-color-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.comment-form-comment textarea:focus {
  outline: none;
  border-color: var(--product-color-blue-darker);
  box-shadow: var(--product-shadow-focus-blue);
}

.form-submit {
  margin: 0;
  padding: 0;
}

.form-submit .submit {
  background: var(--product-color-blue-darker);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit .submit:hover {
  background: var(--product-color-blue-darkest);
}

.form-submit .submit:active {
  transform: translateY(1px);
}

.woocommerce #review_form #respond .form-submit input {
  background: var(--product-color-primary);
  color: var(--product-color-primary-reverse);
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "ActayWide", sans-serif;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.woocommerce #review_form #respond p {
  color: var(--product-color-primary);
  width: max-content;
}
@media (max-width: 768px) {
  .woocommerce #review_form #respond p {
    width: auto;
  }
}
.woocommerce #review_form #respond p .required {
  color: var(--product-color-danger-alt);
}

span#reply-title {
  display: none;
}

.single-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 19px;
  flex-wrap: wrap;
  font-size: 13px;
  align-content: center;
}

.single-review-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.single-review-date {
  font-size: 10px;
  display: flex;
  color: var(--product-color-text-review);
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.single-review-stars .product-star-rating {
  display: inline-block;
  position: relative;
  font-family: star;
  font-size: 12px;
}

.single-review-stars .product-star-rating::before {
  content: "SSSSS";
  color: var(--product-color-button-disabled);
}

.single-review-stars .product-star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--product-color-star-dark);
}

.single-review-stars .product-star-rating span::before {
  content: "SSSSS";
}

.single-review-text {
  line-height: 1.6;
  color: var(--product-color-primary);
  font-size: 13px;
}

.single-review-text p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #191919;
  padding: 5px;
}

.product-star.filled {
  background: var(--product-color-primary);
}

.product-star.empty {
  background: var(--product-color-primary);
  opacity: 0.4;
}

.product-review-toggle {
  margin: 20px 0;
}

.product-write-review-btn {
  background: var(--product-color-blue-darker);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.product-write-review-btn:hover {
  background: var(--product-color-blue-darkest);
}

#product_review_form_wrapper {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--product-color-border-lightest);
  border-radius: 8px;
  background: var(--product-color-bg-lighter);
}

.woocommerce-Reviews {
  margin-top: 20px;
}

/*/OPTIONAL BORDER FOR PRODUCT GALLERY /*/
.product-main-gallery {
  border: 1px solid var(--product-color-border-subtle);
}

/* End of file */
.product-main-content-hide {
  display: none;
}

.cfvsw-swatches-option.selected {
  border: unset !important;
}

.variations.cfvsw-variation-disable-logic .cfvsw-swatches-option:not(.cfvsw-label-option, .cfvsw-image-option) .cfvsw-swatch-inner {
  border: unset;
}
.variations.cfvsw-variation-disable-logic .cfvsw-swatches-option.selected.cfvsw-selected-swatch .cfvsw-swatch-inner {
  border: 2px solid #bebebe;
}

.cfvsw-checkmark {
  border: unset;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
}

.tabs__list {
  display: none;
}

.payment-delivery-info .guarantee h4 span {
  display: none;
}

div.product-gallery-prev,
div.product-gallery-next {
  background: unset !important;
  box-shadow: unset !important;
}
@media (max-width: 768px) {
  div.product-gallery-prev,
  div.product-gallery-next {
    width: 35px !important;
    height: 35px !important;
    margin-top: -17px !important;
  }
}
div.product-gallery-prev::after,
div.product-gallery-next::after {
  color: #878282;
}
@media (max-width: 768px) {
  div.product-gallery-prev::after,
  div.product-gallery-next::after {
    font-size: 12px !important;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal.product-gallery-pagination {
  bottom: 15px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal.product-gallery-pagination .swiper-pagination-bullet {
  background: #a6a6a6;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  transition: all 0.4s ease-in-out;
}
.swiper-pagination-bullets.swiper-pagination-horizontal.product-gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #191919;
}
@media (min-width: 768px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal.product-gallery-pagination {
    display: none;
  }
}

@media (min-width: 768px) {
  .product-text-hint {
    display: none;
  }
}

.product-item .category-product-info .category-product-actions .category-add-to-cart {
  background: #181818;
  color: white;
}

.product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg path {
  fill: white;
}

.select-number-btn {
  width: 30px;
  height: 45px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--main-color-text-light);
  font-size: 18px;
  padding: 0px 0px 0px 0px;
  font-weight: 500;
  user-select: none;
}
.select-number-btn:hover:not(.disabled) {
  background: #e9ecef;
  color: var(--main-color-black);
}
.select-number-btn:active:not(.disabled) {
  background: #dee2e6;
}
.select-number-btn.disabled {
  color: var(--main-color-disabled);
  cursor: not-allowed;
}

/* Plus button */
.select-number-btn-plus::before {
  content: "+";
}

/* Minus button */
.select-number-btn-minus::before {
  content: "-";
}

.input-block {
  margin: 0;
  display: flex;
}

.select-number-input {
  width: 24px;
  height: 44px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background: var(--main-color-bg-light);
  color: var(--main-color-text);
  -moz-appearance: textfield; /* Firefox */
}
.select-number-input::-webkit-outer-spin-button, .select-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 768px) {
  .left-column_product,
  .product-info {
    display: none;
  }
  .product-title {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
    font-size: 12px;
  }
  .product-page-container {
    padding: 10px;
    margin: 0 35px;
  }
  .product-main-content {
    gap: 10px;
    margin-bottom: 0;
  }
  .product-title {
    margin: 0;
  }
  .meta_info .product-rating {
    margin: 0;
  }
  .product-sku {
    width: 50%;
    text-align: right;
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 10px;
  }
  .product-reviews {
    margin-top: 10px;
    font-weight: 400;
    font-size: 10px;
    font-family: var(--shop-font-family-tertiary);
  }
  .product-thumbs-gallery.swiper {
    display: none;
  }
  .product-cart-section .variations .label {
    margin-top: 3px;
  }
  .product-cart-section .variations select {
    border: 0.5px solid #191919;
    font-weight: 400;
    font-size: 12px;
    font-family: var(--shop-font-family-tertiary);
    height: 35px;
    padding: 0px 35px 0 10px;
    border-radius: 2px;
    width: fit-content;
  }
  .cfvsw-label-inline .product-cart-section table.variations td.value {
    display: flex !important;
    gap: 15px;
    align-items: center;
  }
  .stock.in-stock {
    line-height: 25px;
    display: none;
  }
  .cfvsw-product-page table.variations .label label {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 12px;
  }
  a.reset_variations {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 12px;
    color: var(--product-color-text-lightest);
  }
  .product-stock {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .product-stock .in-stock {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 600;
    font-size: 12px;
    color: var(--product-color-primary-grey);
  }
  .product-price {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
    font-size: 20px;
  }
  .product-price .amount {
    color: var(--product-color-primary);
    line-height: 1;
  }
  .product-price del {
    display: flex;
    height: 15px;
    margin: 10px 0 0;
  }
  .product-price ins {
    height: 25px;
    display: flex;
    margin: 10px 0 0;
  }
  .product-price .woocommerce-Price-amount {
    margin: 10px 0 0;
  }
  .select-number {
    width: 75px;
    height: 35px;
    position: relative;
    border-radius: 3px;
    justify-content: center;
    min-width: 75px;
  }
  .select-number .select-number-input {
    font-weight: 400;
    font-size: 15px;
    color: var(--product-color-primary-grey);
    font-family: var(--shop-font-family-tertiary);
    width: auto;
    height: auto;
    background: transparent;
  }
  .select-number .select-number-btn {
    width: auto;
    height: auto;
    position: absolute;
  }
  .select-number .select-number-btn.select-number-btn-minus {
    left: 10px;
    z-index: 5;
    font-size: 16px;
  }
  .select-number .select-number-btn.select-number-btn-plus {
    right: 10px;
  }
  .select-number .input-block {
    position: absolute;
  }
  .product-cart-section {
    margin: 0;
    gap: 6px;
  }
  .product-cart-section .product-cart-actions {
    margin: 0;
  }
  .product-cart-section .product-cart-actions .cart-action-btn {
    width: 35px;
    height: 35px;
  }
  .product-cart-section .product-cart-actions .cart-action-btn svg {
    color: #a6a6a6;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist {
    border: 1px solid #191919;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist svg {
    color: #191919;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.in-compare {
    border: 1px solid #191919;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.compare-btn.in-compare svg {
    color: #191919;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist {
    background: transparent;
  }
  .product-cart-section .product-cart-actions .cart-action-btn.in-compare {
    background: transparent;
  }
  button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt {
    min-width: auto;
    background: #141ab4;
    color: white;
    font-weight: 600;
    font-size: 12px;
    font-family: var(--shop-font-family-tertiary);
    padding: 0 15px;
  }
  body.dark-theme button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt {
    background: #ffd50c;
    color: #191919;
  }
  body.dark-theme button.btn.product-btn.add-to-cart-btn.single_add_to_cart_button.button.alt::before {
    filter: brightness(0) invert(0);
  }
  .single_add_to_cart_button::before {
    filter: brightness(0) invert(1);
    left: 8px;
  }
  .tabs__list {
    display: flex;
    gap: 30px;
    padding-bottom: 12px;
  }
  .tabs__list .tabs__tab {
    font-weight: 600;
    font-size: 12px;
    color: #a6a6a6;
    font-family: var(--shop-font-family-tertiary);
    transition: all 0.3s ease-in-out;
    position: relative;
    /* для другого таба анімація справа наліво */
    /* для першого таба анімація зліва направо */
  }
  .tabs__list .tabs__tab::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--product-color-primary-grey);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out, transform-origin 0.3s ease-in-out;
  }
  .tabs__list .tabs__tab:first-child::after {
    transform-origin: right;
  }
  .tabs__list .tabs__tab:last-child::after {
    transform-origin: left;
  }
  .tabs__list .tabs__tab.is-active {
    color: var(--product-color-primary);
  }
  .tabs__list .tabs__tab.is-active::after {
    transform: scaleX(1);
  }
  .tabs__list .tabs__indicator {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #191919;
    transition: transform 0.3s ease-in-out;
  }
  .payment-delivery-info {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  .tabs__panel h4 {
    display: none;
  }
  .tabs__panel:not(.active-panel) {
    display: none;
  }
  .tabs__panels {
    margin-top: 10px;
  }
  .payment-delivery-info .payment-item,
  .payment-delivery-info .delivery-item {
    font-weight: 400;
    font-size: 12px;
    color: var(--product-color-primary);
    font-family: var(--shop-font-family-tertiary);
  }
  .payment-delivery-info .guarantee {
    margin-top: 10px;
    padding-bottom: 0;
  }
  .payment-delivery-info .guarantee h4 {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 600;
    font-size: 12px;
    color: var(--product-color-primary);
  }
  .payment-delivery-info .guarantee h4 span {
    display: inline;
  }
  .payment-delivery-info .guarantee p {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #191919;
    font-family: var(--shop-font-family-tertiary);
  }
  body.dark-theme .payment-delivery-info .guarantee p {
    color: #a6a6a6;
  }
  .payment-delivery-info .guarantee .daydeliv {
    display: none;
  }
  .payment-delivery-info .swap {
    margin-top: 13px;
  }
  .payment-delivery-info .swap h4 {
    font-weight: 600;
    font-size: 12px;
    color: var(--product-color-primary);
    font-family: var(--shop-font-family-tertiary);
    line-height: 100%;
  }
  .payment-delivery-info .swap span.notice_swap {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #191919;
    font-family: var(--shop-font-family-tertiary);
  }
  body.dark-theme .payment-delivery-info .swap span.notice_swap {
    color: #a6a6a6;
  }
  .payment-delivery-info .swap span.notice_swap p {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #191919;
    font-family: var(--shop-font-family-tertiary);
  }
  body.dark-theme .payment-delivery-info .swap span.notice_swap p {
    color: #a6a6a6;
  }
  .payment-delivery-info .swap span.notice_swap ul {
    margin-top: 7px;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #191919;
    font-family: var(--shop-font-family-tertiary);
    padding-left: 5px;
  }
  body.dark-theme .payment-delivery-info .swap span.notice_swap ul {
    color: #a6a6a6;
  }
  .payment-delivery-info .payment-methods,
  .payment-delivery-info .delivery-methods {
    margin: 0;
    padding: 0;
  }
  .product-tabs {
    padding: 0;
  }
  .tab-content .tab-panel {
    padding: 0;
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 12px;
    color: #191919;
  }
  body.dark-theme .tab-content .tab-panel {
    color: #a6a6a6;
  }
  .tab-content .tab-panel h4 {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
    font-size: 12px;
    color: var(--product-color-primary);
  }
  .tab-content .show-full-description {
    font-weight: 400;
    font-size: 12px;
    color: var(--product-color-primary);
    font-family: var(--shop-font-family-tertiary);
    padding: 0;
  }
  .tab-panel_atts {
    margin-top: 10px;
  }
  .tab-panel_atts h4 {
    font-weight: 700;
    font-size: 12px;
    color: var(--product-color-primary);
    font-family: var(--shop-font-family-tertiary);
    margin-bottom: 0;
  }
  .tab-panel_atts .specifications-table-wrapper .specifications-table .spec-label,
  .tab-panel_atts .specifications-table-wrapper .specifications-table .spec-value {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 12px;
    color: var(--product-color-primary);
    padding: 10px 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .tab-panel_atts .specifications-table-wrapper .specifications-table .spec-label,
  .tab-panel_atts .specifications-table-wrapper .specifications-table .spec-value {
    padding: 10px 12px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .tab-panel_atts .specifications-table-wrapper .specifications-table .spec-value {
    text-align: right;
  }
  .tab-panel_atts .specifications-table-wrapper .specifications-table tr {
    border-bottom: none;
  }
  .tab-panel_atts .show-all-attributes {
    font-weight: 400;
    font-size: 12px;
    color: var(--product-color-primary);
    font-family: var(--shop-font-family-tertiary);
    padding: 0;
  }
  .reviews-header h3 {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
    font-size: 12px;
    color: var(--product-color-primary);
  }
  .reviews-header h3 span {
    color: #a6a6a6;
  }
  .reviews-header .reviews-summary {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 12px;
    color: #191919;
  }
  .write-review-btn {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 600;
    color: #fff;
    border-radius: 3px;
    background: #141ab4;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  .product-navigate {
    margin: 10px 35px;
    padding: 10px;
    gap: 5px;
    justify-content: space-between;
    width: auto;
  }
  .product-navigate a {
    padding: 0;
    margin: 0;
    min-width: auto;
  }
  .product-navigate a.active {
    padding: 0;
    margin: 0;
    min-width: auto;
  }
  .product-navigate .reviews_navigate {
    display: inline;
  }
  button.action-icon.wishlist-btn,
  button.action-icon.compare-btn {
    width: 30px;
    height: 30px;
    box-shadow: none;
  }
  .product-item {
    padding: 4px 5px 9px;
  }
  .product-main-gallery .main-product-img {
    padding: 0;
  }
  .product-main-gallery {
    border: none;
  }
  .product-gallery {
    display: flex;
    flex-direction: column;
  }
  .product-text-hint {
    margin: 20px auto 0;
    font-family: var(--shop-font-family-tertiary);
    font-weight: 400;
    font-size: 10px;
    color: #a6a6a6;
  }
  .related-products h2 {
    font-family: var(--shop-font-family-tertiary);
    font-weight: 700;
    font-size: 12px;
    color: var(--product-color-primary);
  }
  .product-item .category-product-info .category-product-actions .category-add-to-cart {
    background: #141ab4;
    color: white;
  }
  body.dark-theme .product-item .category-product-info .category-product-actions .category-add-to-cart {
    background: #ffd50c;
    color: #191919;
  }
  .product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg path {
    fill: white;
  }
  body.dark-theme .product-item .category-product-info .category-product-actions .category-add-to-cart .cart-icon svg path {
    fill: #191919;
  }
}
.single-review-content {
  display: flex;
  flex-direction: column;
}
.single-review-content .single-review-author {
  color: #191919;
}
.single-review-content .single-review-date {
  color: #191919;
}

div.swiper-button-prev,
div.swiper-button-next {
  background: var(--main-color-star-border);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
div.swiper-button-prev::after,
div.swiper-button-next::after {
  color: var(--swiper-scrollbar-horizontal-background-color);
  font-size: 11.5px;
  font-weight: 600;
}

/*# sourceMappingURL=product.css.map */
