/*
  Стилі магазина — технічна оптимізація
  - Змінні теми (кольори, тривалості, радіуси)
  - Уніфікація transition/transform
  - Фокуси для доступності
  Увага: функціонал і каскад збережено
*/

:root {
  /* Кольори теми */
  --color-accent: #df4979;
  --color-border: #ebebeb;
  --color-text: #666666;
  --color-white: #ffffff;

  /* Радіуси */
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-full: 9999px;

  /* Тривалості та анімації */
  --duration-fast: 0.2s;
  --duration: 0.3s;
  --duration-slow: 0.5s;
  --duration-xslow: 1.2s;
  --easing: ease-in-out;
  --transition-base: all var(--duration) var(--easing) 0s;
  --transition-slow: all var(--duration-slow) var(--easing) 0s;
  --transition-xslow: all var(--duration-xslow) ease 0s;

  /* Фокус-ринги для доступності */
  --focus-ring: 2px solid var(--color-accent);
  --focus-offset: 2px;

  /* Кольори градієнтів */
  --grad-color-2: #e36b31;
  --grad-color-1: #df4979;

  /* Типографіка */
  --font-family-base: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --line-16: 16px;
  --line-19: 19px;
  --line-20: 20px;
  --line-30: 30px;
  --line-35: 35px;
}

/* Category tiles */
.jshop_list_category .row-fluid {
  margin-left: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.jshop_categ.category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.jshop_categ.category .image {
  display: none;
}

.jshop_categ.category .category_name h2 {
  margin: 0;
  font-size: var(--font-size-16);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jshop_categ.category .category_name h2::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-accent);
}

.jshop_categ.category .category_name a {
  color: inherit;
  text-decoration: none;
}

/* Base styles for category grid */
.jshop_list_category .row-fluid {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  padding-right: 0;
}

.row-fluid .sblock3 {
  box-sizing: border-box;
  float: none;
  display: block;
}

.jshop_categ.category .category_name h2,
.jshop_categ.category .category_name a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .jshop_list_category .row-fluid {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row-fluid .sblock3 {
    flex: 0 0 33.333%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .jshop_categ.category {
    padding: 12px 0;
  }
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 991px) {
  .jshop_list_category .row-fluid {
    margin-left: -6px;
    margin-right: -6px;
  }

  .row-fluid .sblock3 {
    flex: 0 0 calc(33.333% - 12px) !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    float: none !important;
    display: block !important;
    width: auto !important;
  }

  .jshop_categ.category {
    padding: 10px 0;
  }
}

/* Mobile: 2 columns with auto-fallback to 1 column if text doesn't fit */
@media (max-width: 767px) {
  .jshop_list_category .row-fluid {
    margin-left: -3px;
    margin-right: -3px;
  }

  .row-fluid .sblock3 {
    flex: 0 0 calc(50% - 6px) !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
    float: none !important;
    display: block !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    width: auto !important;
  }

  .jshop_categ.category {
    padding: 4px 0;
    gap: 6px;
    width: 100%;
  }

  .jshop_categ.category .category_name {
    flex: 1;
    min-width: 0;
  }

  .jshop_categ.category .category_name h2 {
    font-size: var(--font-size-14);
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .jshop_categ.category .category_name a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ДОСТУПНІСТЬ: фокуси для клавіатури */
.product-buttons .btn:focus-visible,
.button_buy:focus-visible,
div a.sj_jshopping_quickview_handler:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Фокус = ховер для основних інтерактивних елементів */
.product-buttons .btn:focus-visible,
.product-buttons .btn:hover,
.product-buttons .btn:active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.button_buy:focus-visible,
.button_buy:hover,
.button_buy:active {
  color: var(--color-white);
  background-color: var(--color-accent) !important;
}

div a.sj_jshopping_quickview_handler:focus-visible,
div a.sj_jshopping_quickview_handler:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
/*
  Стилі магазину (оновлено)
  - Збережено весь функціонал, впорядковано структуру коментарями
  - Виправлено префікс -webkit- для transition
  - Видалено застарілий IE-фільтр opacity
  Примітка: порядок правил не змінювався, щоби не порушити каскад.
*/

/* ШВИДКИЙ ПЕРЕГЛЯД: кнопка/іконка в картці товару */
div a.sj_jshopping_quickview_handler {
  position: absolute;
  top: 60px;
  background: var(--color-white);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  line-height: var(--line-30);
  font-size: var(--font-size-12);
  padding: 0;
  right: -100%;
  text-align: center;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: var(--transition-slow);
  transition-delay: 0.3s;
}
div a.sj_jshopping_quickview_handler i {
  line-height: var(--line-30);
}
div a.sj_jshopping_quickview_handler i:before {
  content: "";
  display: inline-block;
}
div a.sj_jshopping_quickview_handler:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* КНОПКИ В КАРТЦІ ТОВАРУ: wishlist/порівняння/перегляд */
.product-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: var(--transition-slow);
}
.product-buttons .btn {
  float: left;
  display: inline-block;
  background: var(--color-white);
  border-radius: 100%;
  margin: 0px !important;
  width: 30px;
  height: 30px;
  line-height: var(--line-30);
  font-size: var(--font-size-12);
  color: var(--color-text);
  padding: 0;
  border: none;
  text-align: center;
  border: 1px solid var(--color-border);
}
.product-buttons .btn i:before {
  display: inline-block;
}
.product-buttons .btn:hover,
.product-buttons .btn:active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.product-buttons .btn:focus {
  box-shadow: none;
}
.product-buttons .btn.button_buy {
  display: none;
}

/* Уніфіковані розміри для залитих та незалитих іконок wishlist на картках товарів */
.product-buttons .button_wishlist i.fa-heart-o,
.product-buttons .button_wishlist i.fa-heart {
  font-size: 12px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
}

/* КНОПКА КУПИТИ: плаваюча кнопка в картці */
.button_buy {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  line-height: var(--line-35);
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-18);
  color: var(--color-accent);
  border: none;
  background-color: var(--color-border) !important;
  transition: var(--transition-base);
}
.button_buy i {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-top: 8px;
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon-cart2.svg);
  mask-image: url(../images/icon-cart2.svg);
}
.button_buy i:before {
  display: none;
}
.button_buy:hover,
.button_buy:active {
  color: var(--color-white);
  background-color: var(--color-accent) !important;
}
.button_buy:hover i,
.button_buy:active i {
  background-color: var(--color-white);
}

/* КАРТКА ТОВАРУ: контейнер, зображення, ефекти */
.product {
  margin-bottom: 30px;
}
.product .product-inner {
  position: relative;
  overflow: hidden;
}
.product .item-image {
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 9px;
  background: var(--color-white);
  -webkit-transition: var(--transition-base);
  -o-transition: var(--transition-base);
  transition: var(--transition-base);
}
.product .item-image img {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
  -webkit-transition: -webkit-transform var(--duration-xslow)
    cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform var(--duration-xslow) cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform;
  width: 100% !important;
  height: auto !important;
  max-width: 2000px;
  max-height: 2000px;
  object-fit: contain;
}
.product .item-title {
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: var(--line-18);
}
.product .jshop_price {
  font-size: var(--font-size-18);
}
.product .review_mark {
  margin: 0 0 10px;
  margin-bottom: 5px;
  height: 12px;
  height: 19px;
  display: inline-block;
}
.product:hover .item-image {
  border: none;
}
.product:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
/* Плавніший зум саме для зображення товару */
.product:hover .item-image img {
  -webkit-transform: translateZ(0) scale(1.04);
  transform: translateZ(0) scale(1.04);
}
.product:hover .product-buttons,
.product:hover a.sj_jshopping_quickview_handler {
  right: 20px;
}
.product:hover .button_buy {
  color: var(--color-white);
  background-color: var(--color-accent) !important;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}
.product:hover .button_buy i {
  background-color: var(--color-white);
}
.product_label {
  position: absolute;
  top: 20px;
  left: 20px;
  margin: 0 !important;
}
.product_label .label-name {
  display: block;
  padding: 5px 12px;
  background: linear-gradient(
    to right,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  color: var(--color-white);
  line-height: var(--line-16);
  font-weight: 500;
  font-size: var(--font-size-11);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
  border-radius: var(--radius-xs);
}
.addtocart {
  display: inline-block;
  padding: 0 25px;
  line-height: 40px;
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  color: #df4979;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.addtocart:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
/* JoomShopping rating stars (showMarkStar output) — restored: required for
   the star bar to render on product page, listings and the reviews module. */
div.stars_active {
  background-image: url("../images/star.png");
  background-position: 0px -19px;
  background-repeat: repeat-x;
  height: 19px;
}
div.stars_no_active {
  height: 19px;
  background-image: url("../images/star.png");
  background-position: 0px 0px;
  transform: scale(0.6);
  margin-left: -20px;
}
.item-prices {
  margin: 4px 0 0px;
  color: #df4979;
  font-weight: 400;
  line-height: 18px;
}
.jshop_price {
  color: var(--color-accent);
  display: inline-block;
  font-size: var(--font-size-14);
  font-weight: 700;
}
.jshop_price.price-new {
  color: var(--color-accent);
  font-weight: 700;
}
.old_price {
  color: #8d979e;
  text-decoration: line-through;
  display: inline-block;
  font-size: var(--font-size-14);
  font-weight: 500;
}
#jshop_module_wishlist {
  line-height: 15px;
}
#jshop_module_wishlist #jshop_summ_product,
#jshop_module_wishlist #jshop_summ_wishlist_product {
  display: none;
}
#jshop_module_wishlist #jshop_quantity_products {
  display: inline;
}
#jshop_module_wishlist a {
  font-size: var(--font-size-16);
  display: inline-block;
  line-height: 14px;
  font-weight: 500;
  width: 20px;
  height: 18px;
  background-color: #df4979;
  -webkit-mask-image: url(../images/wishlist.svg);
  mask-image: url(../images/wishlist.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
#jshop_module_wishlist a:hover {
  background-color: var(--color-accent);
}
#jshop_module_wishlist a span {
  font-size: 0;
}
#jshop_module_cart {
  position: relative;
  height: 30px;
}
#jshop_module_cart .shopcart {
  display: flex;
}
#jshop_module_cart .shopcart span.icon-c {
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/icon-cart.png);
  mask-image: url(../images/icon-cart.png);
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-block;
  margin-right: 20px;
}
#jshop_module_cart .shopcart .shopcart-inner {
  color: #df4979;
  margin-top: -2px;
}
#jshop_module_cart .shopcart .shopcart-inner .text-shopping-cart {
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
}
#jshop_module_cart .shopcart .shopcart-inner .total-shopping-cart {
  font-size: var(--font-size-12);
  line-height: 15px;
  font-weight: 400;
  color: var(--color-text);
  display: block;
}
#sp-right .sp-module.jshop-cat,
#sp-left .sp-module.jshop-cat {
  flex: auto;
}
#sp-right .sp-module.jshop-cat .sp-module-title,
#sp-left .sp-module.jshop-cat .sp-module-title {
  margin: 0 0 5px;
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0,
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a {
  margin-top: 10px;
  margin-bottom: 10px;
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0:last-child,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0:last-child {
  margin-bottom: 0px;
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a {
  font-weight: 400 !important;
  color: var(--color-accent);
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_1,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a {
  margin-top: 10px;
  margin-bottom: 10px;
}
#sp-right .sp-module.jshop-cat .sp-module-content,
#sp-left .sp-module.jshop-cat .sp-module-content {
  overflow-y: auto;
  max-height: 500px;
}
#sp-right .sp-module .sj-js-extraslider,
#sp-left .sp-module .sj-js-extraslider {
  padding-top: 10px;
}
#sp-right .sp-module .sj-js-extraslider .extraslider-control,
#sp-left .sp-module .sj-js-extraslider .extraslider-control {
  display: none;
}
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-image,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-image {
  width: auto;
  margin: 0 20px 0px 0;
  float: left;
}
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-image
  img,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-image
  img {
  width: auto;
}
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-title,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .item-title {
  font-weight: normal;
}
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .sj_jshopping_quickview_handler,
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .product-buttons,
#sp-right
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .product_label,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .sj_jshopping_quickview_handler,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .product-buttons,
#sp-left
  .sp-module
  .sj-js-extraslider
  .extraslider-inner
  .item-wrap.style2
  .product_label {
  display: none;
}
#sp-right .sp-module .sj-js-extraslider .line:last-child .item-wrap.style2,
#sp-left .sp-module .sj-js-extraslider .line:last-child .item-wrap.style2 {
  margin-bottom: 0;
}
#sp-component div.jshop table .button {
  margin: 10px 0;
  background: #ff5722;
  box-shadow: none;
  color: var(--color-white);
  border: none;
  padding: 5px 10px;
}
#sp-component div.jshop table .button:hover {
  background: #222;
}
.jshop.login,
.jshop.register {
  background: var(--color-white);
  padding: 15px;
}
.jshop.login h1,
.jshop.register h1 {
  color: #000;
  text-transform: none;
  font-size: var(--font-size-18);
}
.jshop.login .login_block td,
.jshop.login .register_block td,
.jshop.register .login_block td,
.jshop.register .register_block td {
  padding: 10px 5px;
}
.jshop.login .login_block #remember_me,
.jshop.login .register_block #remember_me,
.jshop.register .login_block #remember_me,
.jshop.register .register_block #remember_me {
  margin-top: 5px;
}
div.jshop_register {
  padding: 0;
}
div.jshop_register td {
  padding: 10px 0px;
}
div.jshop_register .name {
  min-width: 150px;
}
.jshop.search-form h2.heading {
  font-size: var(--font-size-18);
  color: #df4979;
}
.jshop.search-form #category_id {
  margin-bottom: 15px;
}
.jshop.search-form input[type="text"]:not(.form-control),
.jshop.search-form input[type="email"]:not(.form-control),
.jshop.search-form input[type="url"]:not(.form-control),
.jshop.search-form input[type="date"]:not(.form-control),
.jshop.search-form input[type="password"]:not(.form-control),
.jshop.search-form input[type="search"]:not(.form-control),
.jshop.search-form input[type="tel"]:not(.form-control),
.jshop.search-form input[type="number"]:not(.form-control),
.jshop.search-form select:not(.form-control),
.jshop.search-form input[type="text"] {
  display: inline-block;
  width: 70%;
}
.jshop.search-form input[type="submit"] {
  border-radius: var(--radius-sm);
  background: #df4979;
  color: var(--color-white);
  line-height: 40px;
  border: none;
  padding: 0 25px;
}
.jshop.search-form input[type="submit"]:hover {
  background: var(--color-accent);
}
span#mxcpr {
  display: none;
}
.productfull .product-form {
  margin-bottom: 20px;
  padding: 0 0 30px;
}
.productfull .product-info h1.title {
  font-size: 26px;
  color: #bfa7a4;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: none;
  line-height: 32px;
}
.productfull .product-info .rating {
  margin-bottom: 10px;
}
.productfull .product-info .rating span.pro-rate {
  display: inline-block;
  vertical-align: text-bottom;
}
.productfull .product-info .rating .count_commentar {
  display: inline-block;
  font-size: 0.87rem;
}
.productfull .product-info .price {
  margin-bottom: 25px;
}
.productfull .product-info .price strong {
  font-size: var(--font-size-14);
  color: #df4979;
  font-weight: 500;
  display: inline-block;
}
.productfull .product-info .price #block_price {
  color: var(--color-accent);
  font-size: var(--font-size-20);
  font-weight: 700;
}
.productfull .product-info .price #old_price {
  color: #999;
  font-size: var(--font-size-16);
  text-decoration: line-through;
  padding: 0px 5px;
}
.productfull .product-info .price .prod_price {
  display: inline-block;
}
.productfull .product-info .jshop_prod_description {
  color: #8a8a8a;
  margin: 0 0 15px;
  padding: 0;
}
.productfull .product-info .jshop-manuafacture {
  display: inline-block;
  margin-right: 40px;
}
.productfull .product-info .jshop-manuafacture span {
  color: #000;
}
.productfull .product-info .productweight {
  display: inline-block;
  margin-right: 40px;
}
.productfull .product-info .jshop_code_prod {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 15px;
  color: #8a8a8a;
  font-size: var(--font-size-16);
}
.productfull .product-info .jshop_code_prod #product_code {
  color: #000;
  font-size: var(--font-size-16);
}
.productfull .product-info .qty_in_stock {
  color: #06c270;
  margin-bottom: 12px;
}
.productfull .product-info .qty_in_stock i {
  font-size: 26px;
  margin-right: 5px;
}
.productfull .product-info .attributes_title {
  margin-bottom: 15px;
}
.productfull .product-info .attributes_title .attributes_name {
  color: #757575;
}
.productfull .product-info .jshop_prod_attributes {
  padding: 0;
}
/* Атрибути в одну колонку: назва, опис, список */
.productfull .product-info .jshop_prod_attributes .row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.productfull .product-info .jshop_prod_attributes .row .col-lg-2,
.productfull .product-info .jshop_prod_attributes .row .col-lg-10 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 0;
  padding-right: 0;
}
.productfull .product-info .jshop_prod_attributes .attributes_title {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.productfull .product-info .jshop_prod_attributes .attributes_name {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #757575;
}
.productfull .product-info .jshop_prod_attributes .attributes_description {
  display: block;
  font-size: var(--font-size-12);
  font-style: italic;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 8px;
  line-height: 1.4;
}
.productfull .product-info .jshop_prod_attributes select {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}
.productfull .product-info .jshop_prod_attributes .prod_attr_img {
  display: inline-block;
}
.productfull .product-info .jshop_prod_attributes span.prod_attr_img {
  height: 31px;
  width: 31px;
}
/* Radio атрибути - красиві картки в 2 колонки */
.productfull .product-info .jshop_prod_attributes #block_attr_sel_2,
.productfull .product-info .jshop_prod_attributes [id^="block_attr_sel_"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
/* Radio атрибути - красиві картки */
.productfull .product-info .jshop_prod_attributes .input_type_radio {
  position: relative;
  display: block;
  margin-bottom: 0;
  width: 100%;
}
.productfull .product-info .jshop_prod_attributes .input_type_radio:last-child {
  margin-bottom: 0;
}
.productfull .product-info .jshop_prod_attributes .input_type_radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_custom {
  display: flex;
  padding: 12px 16px;
  margin: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--duration) var(--easing);
  text-align: left;
  min-height: 44px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_custom:hover {
  border-color: var(--color-accent);
  background: rgba(223, 73, 121, 0.02);
  transform: translateX(2px);
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  input:checked
  ~ .radio_custom {
  border-color: var(--color-accent);
  background: rgba(223, 73, 121, 0.05);
  box-shadow: 0 0 0 3px rgba(223, 73, 121, 0.1);
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  input:focus-visible
  ~ .radio_custom {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_attr_label {
  display: flex;
  align-items: center;
  width: 100%;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_label {
  display: block;
  font-size: var(--font-size-16);
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  input:checked
  ~ .radio_custom
  .radio_label {
  color: var(--color-accent);
  font-weight: 500;
}
/* Для radio з зображеннями - зберігаємо круглу форму */
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_custom.radio_img {
  border-radius: 100%;
  border: 2px solid var(--color-border);
  padding: 0;
  width: 50px;
  height: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_custom.radio_img:hover {
  border-color: var(--color-accent);
  transform: scale(1.05);
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  input:checked
  ~ .radio_custom.radio_img {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(223, 73, 121, 0.1);
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_custom.radio_img
  span.radio_label {
  display: none;
}
.productfull
  .product-info
  .jshop_prod_attributes
  .input_type_radio
  .radio_attr_label
  img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
/* Прибираємо <br> між radio елементами */
.productfull .product-info .jshop_prod_attributes #block_attr_sel_2 br,
.productfull .product-info .jshop_prod_attributes #block_attr_sel_2 > br,
.productfull .product-info .jshop_prod_attributes [id^="block_attr_sel_"] br {
  display: none;
}
/* Адаптивність: на мобільних 2 колонки */
@media (max-width: 767px) {
  /* Відступи від краю екрана для блоку атрибутів */
  .productfull .product-info .jshop_prod_attributes {
    padding-left: 10px;
    padding-right: 10px;
  }

  .productfull .product-info .jshop_prod_attributes #block_attr_sel_2,
  .productfull .product-info .jshop_prod_attributes [id^="block_attr_sel_"] {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Зменшуємо padding для radio карток на мобільних */
  .productfull
    .product-info
    .jshop_prod_attributes
    .input_type_radio
    .radio_custom {
    padding: 10px 12px;
    min-height: 40px;
  }

  /* Зменшуємо розмір шрифту для radio опцій */
  .productfull
    .product-info
    .jshop_prod_attributes
    .input_type_radio
    .radio_label {
    font-size: var(--font-size-14);
    line-height: 1.4;
  }

  /* Зменшуємо розмір зображень атрибутів на мобільних */
  .productfull
    .product-info
    .jshop_prod_attributes
    .input_type_radio
    .radio_custom.radio_img {
    width: 45px;
    height: 45px;
    min-height: 45px;
  }

  .productfull
    .product-info
    .jshop_prod_attributes
    .input_type_radio
    .radio_attr_label
    img {
    width: 28px;
    height: 28px;
  }

  /* Адаптивність для select атрибутів */
  .productfull .product-info .jshop_prod_attributes select {
    font-size: var(--font-size-14);
    padding: 8px 12px;
    height: auto;
  }

  /* Зменшуємо відступи між атрибутами */
  .productfull .product-info .jshop_prod_attributes .row {
    margin-bottom: 16px;
  }

  /* Зменшуємо розмір назв атрибутів */
  .productfull .product-info .jshop_prod_attributes .attributes_name {
    font-size: var(--font-size-14);
    margin-bottom: 6px;
  }

  /* Зменшуємо розмір описів атрибутів */
  .productfull .product-info .jshop_prod_attributes .attributes_description {
    font-size: var(--font-size-11);
    margin-bottom: 6px;
  }
}
.productfull .product-info .not_available span {
  display: inline-block;
  padding: 0 20px;
  border-radius: 20px;
  background: #bbb;
  color: var(--color-white);
  line-height: 32px;
  margin: 0;
}
.productfull .product-info .box-viewed {
  margin: 0 0 2px;
  font-size: 1rem;
}
.productfull .product-info .pro-hits,
.productfull .product-info .social-content {
  display: inline-block;
  margin: 0 20px;
  color: #555;
}
.productfull .product-info .social-share {
  margin-top: 20px;
}
.productfull .product-info .social-share .pro-label {
  vertical-align: 15px;
}
.productfull .product-info .price_prod_qty_list_head {
  font-size: var(--font-size-14);
  color: #df4979;
  font-weight: 500;
}
.productfull .product-info .price_prod_qty_list {
  margin-bottom: 15px;
}
.productfull .product-info .prod_buttons {
  margin-top: 20px;
  margin-bottom: 40px;
  /* Align qty + buttons on a single top line */
  display: flex;
  align-items: flex-start; /* align by top edge */
  gap: 12px;
  flex-wrap: wrap; /* keep layout OK on small widths */
}
.productfull .product-info .prod_buttons .prod_qty_input {
  display: flex;
  align-items: flex-start;
}
.productfull .product-info .prod_buttons .buttons {
  display: flex;
  align-items: flex-start;
}
/* Neutralize legacy vertical-align shift that caused misalignment */
.productfull .prod_qty_input {
  vertical-align: top;
}
.productfull .product-info .prod_buttons .prod_qty {
  font-size: var(--font-size-14);
  color: #df4979;
  font-weight: 500;
}
.productfull .product-info .prod_buttons .prod_qty_input {
  padding: 0;
}
.productfull .product-info .prod_buttons #quantity {
  width: 56px;
  padding: 0;
  height: 56px;
  margin: 0 0px;
  text-align: center;
  font-weight: 500;
  font-size: var(--font-size-16);
  color: #df4979;
  background: #f0f0f0;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-sm);
}
.productfull .product-info .prod_buttons .buttons {
  padding: 0;
}
.productfull .product-info .prod_buttons .buttons .button_buy {
  position: unset;
  margin: 0 10px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  border-radius: var(--radius-sm);
  border: none;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-16);
  padding: 18px 20px;
  line-height: var(--line-16);
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: 210px;
  height: 56px;
}
.productfull .product-info .prod_buttons .buttons .button_buy:hover {
  background: linear-gradient(
    90deg,
    var(--grad-color-1) 37.36%,
    var(--grad-color-2) 71.43%
  );
}
.productfull .product-info .prod_buttons .buttons .button_wishlist {
  padding: 0 0px;
  line-height: 56px;
  border: none;
  color: #df4979;
}
.productfull .product-info .prod_buttons .buttons .button_wishlist:focus,
.productfull .product-info .prod_buttons .buttons .button_wishlist:active {
  box-shadow: none;
  border: none;
}
.productfull .product-info .prod_buttons .buttons .button_wishlist i {
  /* Render custom SVG via mask instead of Font Awesome */
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  font-size: 0; /* hide any font fallback */
  background-color: currentColor; /* icon inherits button color */
  -webkit-mask-image: url(../images/favorite.svg);
  mask-image: url(../images/favorite.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  /* Animation baseline */
  transition: transform var(--duration) var(--easing);
  will-change: transform;
}
.productfull .product-info .prod_buttons .buttons .button_wishlist i:before {
  /* Do not draw pseudo-element content when using masked SVG */
  display: none;
}
.productfull .product-info .prod_buttons .buttons .button_wishlist:hover i,
.productfull
  .product-info
  .prod_buttons
  .buttons
  .button_wishlist:focus-visible
  i {
  transform: translateY(-2px) scale(1.08);
}
.productfull .product-info .prod_buttons .buttons .button_wishlist:active i {
  transform: translateY(0) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .productfull .product-info .prod_buttons .buttons .button_wishlist i,
  .productfull .product-info .prod_buttons .buttons .button_wishlist:hover i,
  .productfull
    .product-info
    .prod_buttons
    .buttons
    .button_wishlist:focus-visible
    i,
  .productfull .product-info .prod_buttons .buttons .button_wishlist:active i {
    transition: none;
    transform: none;
  }
}
.productfull .product-info .prod_buttons .buttons .button_wishlist i.fa {
  /* Override masked SVG icon to use Font Awesome glyph */
  width: auto;
  height: auto;
  font-size: 24px !important;
  line-height: 1;
  background: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.productfull .product-info .prod_buttons .buttons .button_wishlist i.fa:before {
  display: inline-block;
}
.productfull
  .product-info
  .prod_buttons
  .buttons
  .button_wishlist.is-in-wishlist {
  color: var(--color-accent);
}
.productfull .product-info .prod_buttons .buttons .button_wishlist:hover {
  color: var(--color-accent);
}

/* Уніфіковані розміри для залитих та незалитих іконок на сторінці товара */
.productfull .product-info .prod_buttons .buttons .button_wishlist i.fa-heart-o,
.productfull .product-info .prod_buttons .buttons .button_wishlist i.fa-heart,
.productfull .product-buttons-detail .button_wishlist i.fa-heart-o,
.productfull .product-buttons-detail .button_wishlist i.fa-heart,
.productfull .buttons.product-buttons-detail .button_wishlist i.fa-heart-o,
.productfull .buttons.product-buttons-detail .button_wishlist i.fa-heart {
  font-size: 24px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
}
.productfull .jshop_list_product_related {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 100px;
  overflow: hidden;
  padding: 0 10px;
}

/* Карусель для схожих товарів з циклічним гортанням */
.jshop_list_product .list_product.list_related {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important; /* Fallback для горизонтального розташування */
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none; /* Firefox - приховуємо скролбар */
  -ms-overflow-style: none; /* IE and Edge - приховуємо скролбар */
}

.jshop_list_product .list_product.list_related::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera - приховуємо скролбар */
}

/* Обгортка для каруселі */
.related-carousel-wrapper {
  position: relative;
  width: 100%;
}

/* Контейнер з горизонтальною прокруткою */
.related-carousel-scroll {
  display: flex !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  cursor: grab;
  contain: layout style;
  overscroll-behavior-x: contain;
}

.related-carousel-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.related-carousel-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* Елементи каруселі */
.jshop_list_product .list_product.list_related .jshop_related {
  flex: 0 0 calc(25% - 23px) !important;
  min-width: calc(25% - 23px) !important;
  max-width: calc(25% - 23px) !important;
  width: calc(25% - 23px) !important;
  margin-right: 30px !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important; /* Запобігає стисканню */
  scroll-snap-align: start;
}

.related-carousel-scroll .jshop_related:last-child {
  margin-right: 0 !important;
}

.productfull .jshop_list_product_related .jshop_related .product {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}

.jshop_list_product .list_product.list_related .jshop_related .product {
  width: 100%;
  max-width: 100%;
}

/* Індикатори каруселі (точки внизу) */
.related-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.related-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  outline: none;
}

.related-carousel-indicator:hover {
  background: var(--grad-color-2, #e36b31);
  transform: scale(1.2);
}

.related-carousel-indicator.active {
  background: var(--grad-color-2, #e36b31);
  width: 12px;
  height: 12px;
}

/* Адаптивність для каруселі схожих товарів */
@media (max-width: 575px) {
  .jshop_list_product .list_product.list_related .jshop_related {
    flex: 0 0 calc(100% - 20px) !important;
    min-width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
  }

  .related-carousel-indicators {
    margin-top: 15px;
    gap: 6px;
  }

  .related-carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .related-carousel-indicator.active {
    width: 10px;
    height: 10px;
  }
}

/* ОНОВЛЕНО: Брейкпоінт змінено з 767px на 719px для коректного визначення планшетів */
@media (min-width: 576px) and (max-width: 719px) {
  .jshop_list_product .list_product.list_related .jshop_related {
    flex: 0 0 calc(50% - 15px) !important;
    min-width: calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
    width: calc(50% - 15px) !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
  }
}

/* ОНОВЛЕНО: Брейкпоінт змінено з 768px на 720px для планшетів (Samsung Galaxy Tab S8 = 753px) */
@media (min-width: 720px) and (max-width: 991px) {
  .jshop_list_product .list_product.list_related .jshop_related {
    flex: 0 0 calc(33.333333% - 17px) !important;
    min-width: calc(33.333333% - 17px) !important;
    max-width: calc(33.333333% - 17px) !important;
    width: calc(33.333333% - 17px) !important;
    margin-right: 25px !important;
    flex-shrink: 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .jshop_list_product .list_product.list_related .jshop_related {
    flex: 0 0 calc(33.333333% - 17px) !important;
    min-width: calc(33.333333% - 17px) !important;
    max-width: calc(33.333333% - 17px) !important;
    width: calc(33.333333% - 17px) !important;
    margin-right: 25px !important;
    flex-shrink: 0 !important;
  }
}

@media (min-width: 1200px) {
  .jshop_list_product .list_product.list_related .jshop_related {
    flex: 0 0 calc(25% - 23px) !important;
    min-width: calc(25% - 23px) !important;
    max-width: calc(25% - 23px) !important;
    width: calc(25% - 23px) !important;
    margin-right: 30px !important;
    flex-shrink: 0 !important;
  }
}
.productfull
  .jshop_list_product_related
  .jshop_related
  .product-item-info
  .item-image {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  margin-bottom: 5px;
  position: relative;
}
.productfull
  .jshop_list_product_related
  .jshop_related
  .product-item-info
  .item-image
  img {
  transition: var(--transition-base);
}
.productfull
  .jshop_list_product_related
  .jshop_related
  .product-item-info
  .details
  .review_mark {
  margin: 0 auto 10px;
}
.productfull .jshop_list_product_related .related_header {
  text-align: center;
  color: #df4979;
  font-weight: 700;
  line-height: 45px;
  border-bottom: none;
  margin: 0 0 30px;
  text-transform: none;
  font-size: 36px;
}
.productfull .buttons {
  padding: 0;
}
.product-image-photo {
  margin: 0 auto;
}
.category_title {
  font-size: 26px;
  text-transform: none;
  font-weight: 600;
  line-height: 33px;
  color: #df4979;
  display: inline-block;
  width: 100%;
  position: relative;
  margin-top: 0;
  margin-bottom: 10px;
}
label.select-mask {
  position: relative;
  display: inline-block;
  margin: 0px;
}
label.select-mask select {
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-weight: normal;
  border: none;
  background-color: #f5f5f5;
  width: 140px;
  height: 40px !important;
  margin-bottom: 0px;
  padding: 0px 20px;
  border-radius: 0px;
  box-shadow: none;
}
label.select-mask select:focus {
  background-color: #f5f5f5;
  border: none;
}
label.select-mask:after {
  content: "";
  font-family: "FontAwesome";
  font-size: var(--font-size-14);
  color: #222;
  right: 0px;
  top: 0px;
  padding: 0px 12px;
  position: absolute;
  pointer-events: none;
  cursor: pointer;
}
label.select-mask:before {
  content: "";
  right: 1px;
  top: 1px;
  width: 28px;
  height: 40px;
  position: absolute;
  pointer-events: none;
  display: block;
}
.jshop_list_product #sort_count {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 13px 0px 13px;
  margin-bottom: 23px;
  display: inline-block;
  border-radius: 0px;
  width: 100%;
}
.jshop_list_product #sort_count .box_products_sorting {
  float: left;
}
.jshop_list_product #sort_count .box_products_sorting span.first {
  display: inline-block;
  display: none;
}
.jshop_list_product #sort_count .box_products_sorting .select-mask {
  display: inline-block;
}
.jshop_list_product #sort_count .box_products_sorting .btn_sortting {
  margin: -4px 0px;
  cursor: pointer;
  display: inline-block;
}
.jshop_list_product #sort_count .box_products_count_to_page {
  float: right;
  color: #8d979e !important;
}
.jshop_list_product
  #sort_count
  .box_products_count_to_page
  label.select-mask
  select {
  min-width: 50px;
}
.jshop_list_product #sort_count .box_products_sorting,
.jshop_list_product #sort_count .box_products_count_to_page {
  padding: 0px 0px;
  color: #df4979;
  display: inline-block;
  font-size: var(--font-size-16);
}
.jshop_list_product #sort_count p {
  display: inline-block;
  color: #999;
}
.jshop_list_product #sort_count .inputbox {
  margin: 0px 5px;
}
.jshop_list_product #sort_count label.select-mask {
  background: #f5f5f5;
  line-height: 40px;
  padding: 0 0px;
  border-radius: var(--radius-sm);
}
.jshop_list_product #sort_count label.select-mask select {
  width: auto;
  height: 40px;
  min-width: 70px;
  font-size: var(--font-size-16);
  color: #df4979;
  font-weight: 500;
  margin: 0;
  padding: 0px 20px;
  border-radius: var(--radius-sm);
}
.jshop_list_product #sort_count label.select-mask select:focus {
  box-shadow: none;
}
.jshop_list_product .list_product .product .jshop_price {
  font-size: var(--font-size-18);
}
.jshop_list_product .list_product .product .review_mark {
  margin: 0 0 0px;
  height: 12px;
  height: 19px;
  display: inline-block;
}
.jshop_list_product .list_product .product .count_commentar,
.jshop_list_product .list_product .product .description,
.jshop_list_product .list_product .product .available {
  display: none;
}
.jshop_list_product .list_product.columns-1 .product {
  overflow: hidden;
}
.jshop_list_product .list_product.columns-1 .product .right-block {
  padding-top: 55px;
  margin-left: 330px;
}
.jshop_list_product .list_product.columns-1 .product .item-image {
  float: left;
  width: 300px;
  margin-right: 30px;
  margin-bottom: 0px;
}
.jshop_list_product
  .list_product.columns-1
  .product
  .item-image
  .product-buttons {
  right: calc(100% - 280px);
}
.jshop_list_product .list_product.columns-1 .product .jshop_price {
  color: var(--color-accent);
}
.jshop_list_product .list_product.columns-1 .product .description {
  display: block;
  font-size: var(--font-size-16);
  line-height: var(--line-20);
  padding: 5px 0 15px;
}
.jshop_list_product .list_product.columns-1 .product .button_buy {
  right: calc(100% - 280px);
  bottom: 20px;
}
.jshop_list_product
  .list_product.columns-1
  .product:hover
  .sj_jshopping_quickview_handler {
  right: calc(100% - 280px);
}
.jshop-listing-product > h1 {
  font-size: 24px;
  line-height: var(--line-20);
  color: #222;
  text-transform: none;
  margin-bottom: 25px;
  font-weight: 400;
}
#sp-right .sp-module .jshop_menu_level_0_a a,
#sp-right .sp-module .jshop_menu_level_0 a {
  color: #df4979;
}
#sp-right .sp-module .jshop_menu_level_0_a a:hover,
#sp-right .sp-module .jshop_menu_level_0 a:hover {
  color: var(--color-accent);
}
#sp-right .sp-module .sj-extraslider.style2-dev .extraslider-control {
  display: none;
}
#sp-right .sp-module .sj-extraslider.style2-dev .line .item-wrap {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
#sp-right .sp-module .sj-extraslider.style2-dev .line .item-wrap .item-image {
  float: left;
  width: 85px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 1px solid #ddd;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-image
  img {
  transition: var(--transition-base);
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-image:hover {
  border-color: var(--color-accent);
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-image:hover
  img {
  transform: scale(1.15);
}
#sp-right .sp-module .sj-extraslider.style2-dev .line .item-wrap .item-info {
  margin-left: 100px;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  .item-content
  .main-price
  .price-sale {
  display: none;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  .item-content
  .main-price
  .item-price
  .old-price {
  color: #aaa;
  text-decoration: line-through;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  .item-content
  .main-price
  .item-price
  .price {
  font-size: var(--font-size-16);
  color: #df4979;
  font-weight: 600;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  .review_mark {
  display: table;
  margin-bottom: 7px;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  h3.item-title {
  font-size: var(--font-size-14);
  margin-bottom: 8px;
  font-weight: normal;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  h3.item-title
  a {
  color: #df4979;
}
#sp-right
  .sp-module
  .sj-extraslider.style2-dev
  .line
  .item-wrap
  .item-info
  h3.item-title
  a:hover {
  color: var(--color-accent);
}
select::-ms-expand {
  display: none;
}
div.jshop_register {
  width: 100%;
}
.sj_jshopping_search-wrapper .search .select_category select {
  border-radius: 0;
}
.fancybox-wrap .productfull .jshop_list_product_related,
.fancybox-wrap .productfull .pro-more-info {
  display: none;
}
.fancybox-wrap .productfull .product-info-inn h1.title {
  font-size: 1.2rem;
}
.fancybox-wrap .productfull .product-info-inn .price {
  margin-bottom: 15px;
}
.fancybox-wrap .productfull .product-info-inn .jshop_code_prod,
.fancybox-wrap .productfull .product-info-inn .box-viewed,
.fancybox-wrap .productfull .product-info-inn .social-share {
  display: none;
}
.sj-listing-tabs .ltabs-tabs-container .ltabs-tabs li.ltabs-tab > span {
  font-weight: 400;
}
.jshop.login table {
  font-size: var(--font-size-14);
}
.list_product .product .item-image .product_label {
  z-index: 2;
}
.form-horizontal .form_sort_count {
  margin-bottom: 0;
}
.form-horizontal .form_sort_count .jshop.filters {
  margin-top: 15px;
}
.productfull .text_zoom {
  display: none;
}
.jshop.productfull .block_rating_hits table {
  float: none;
}
.jshop.productfull .block_rating_hits {
  margin: 2px 0;
}
.jshop.productfull .prod_qty_input {
  vertical-align: -2px;
}
.jshop.productfull .jshop_list_product_related .list_related .owl2-stage-outer {
  overflow: visible;
}
.jshop.productfull .jshop_list_product_related .list_related .owl2-stage {
  display: flex;
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  > div {
  opacity: 0;
  background: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: none;
  line-height: 40px;
  text-align: center;
  color: #df4979;
  display: inline-block;
  position: absolute;
  top: 50%;
  font-size: 0;
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  > div:before {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font-family: fontawesome;
  font-size: 26px;
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  > div:hover {
  color: var(--color-accent);
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  .owl2-prev {
  left: 1px;
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  .owl2-next {
  right: 1px;
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  .owl2-prev:before {
  content: "";
}
.jshop.productfull
  .jshop_list_product_related
  .list_related
  .owl2-controls
  .owl2-nav
  .owl2-next:before {
  content: "";
}
.jshop.productfull
  .jshop_list_product_related
  .list_related:hover
  .owl2-controls
  .owl2-nav
  > div {
  opacity: 1;
}
.jshop.productfull.fancybox-content .pro-more-info {
  display: none;
}
.jshop.productfull.fancybox-content .jshop_list_product_related {
  display: none;
}

/* Old wishlist mobile styles removed */
.login_block .form-horizontal .controls {
  margin-bottom: 15px;
}
.jshop_list_product .block_product:hover {
  box-shadow: none;
}
.jshop > h1 {
  text-transform: none;
  font-weight: 600;
  line-height: var(--line-20);
  letter-spacing: normal;
  color: #df4979;
  font-size: 26px;
}
.jshop_list_category .category_name,
.jshop_list_manufacturer .manufacturer_name,
.jshop_list_vendor .vendor_name {
  font-size: var(--font-size-16);
  font-weight: 600;
}
.backg-gradient {
  background: linear-gradient(
    90deg,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  font-size: var(--font-size-14);
  line-height: 17px;
  color: var(--color-white);
  font-weight: 400;
  text-transform: none;
  padding: 14px 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: inline-block;
}
.backg-gradient:hover {
  background: linear-gradient(
    90deg,
    var(--grad-color-1) 37.36%,
    var(--grad-color-2) 71.43%
  );
}
.modtitle .sppb-addon-title {
  margin-bottom: 14px;
  font-size: 36px;
  color: #df4979;
  font-weight: 700;
  line-height: 45px;
  text-transform: none;
}
.sppb-addon-single-image img {
  transition: var(--transition-base);
}
.sppb-addon-single-image img:hover {
  opacity: 0.9;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}
.counters-num {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 60px;
  margin-bottom: 0;
  margin-right: 30px;
  font-size: var(--font-size-14);
  line-height: 17px;
  color: var(--color-white);
  font-weight: 400;
  text-transform: none;
  border-radius: var(--radius-sm);
}
.counters-num .item {
  text-align: center;
  font-size: 50px;
  line-height: 63px;
  font-weight: 700;
  color: var(--color-white);
  width: 33.33%;
  border-right: 1px solid var(--color-white);
}
.counters-num .item:last-child {
  border-right: none;
}
.counters-num .item .js-counter {
  margin-bottom: 4px;
}
.counters-num .item p {
  font-size: var(--font-size-18);
  line-height: 23px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
}
/* Анімація рухомого градієнту для кнопки пошуку */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Інлайн поле пошуку */
.search-joomshop-inline {
  position: relative;
  width: 100%;
}

.mod-shop-search-inline {
  position: relative;
  width: 100%;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-base);
}

.search-input {
  flex: 1;
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-16);
  line-height: var(--line-20);
  color: var(--color-text);
  background-color: transparent;
  border: none;
  outline: none;
  transition: var(--transition-base);
  font-family: var(--font-family-base);
}

.search-input::placeholder {
  color: var(--color-text);
  opacity: 0.6;
}

.search-input::-moz-placeholder {
  color: var(--color-text);
  opacity: 0.6;
}

.search-input:-ms-input-placeholder {
  color: var(--color-text);
  opacity: 0.6;
}

.search-input::-webkit-input-placeholder {
  color: var(--color-text);
  opacity: 0.6;
}

/* Анімація при фокусі на поле вводу */
.search-input:focus {
  outline: none;
}

.search-input-wrapper:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(223, 73, 121, 0.1);
  transform: translateY(-1px);
}

/* Кнопка пошуку з градієнтом */
.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--brand-gradient);
  background-size: 200% 200%;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-base);
  flex-shrink: 0;
  animation: gradient-shift 3s ease infinite;
}

.search-button i {
  font-size: 18px;
  line-height: 1;
}

/* Hover ефект для кнопки */
.search-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(223, 73, 121, 0.3);
}

/* Активний стан кнопки */
.search-button:active {
  transform: scale(0.98);
}

/* Фокус для доступності */
.search-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Посилання на розширений пошук */
.mod-shop-search-inline .adv_search_link {
  margin-top: 8px;
  text-align: right;
}

.mod-shop-search-inline .adv_search_link a {
  font-size: var(--font-size-14);
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.mod-shop-search-inline .adv_search_link a:hover {
  color: var(--grad-color-2);
  text-decoration: underline;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 767px) {
  .search-input {
    padding: 10px 14px;
    font-size: var(--font-size-14);
  }
  
  .search-button {
    width: 44px;
    height: 44px;
  }
  
  .search-button i {
    font-size: 16px;
  }
}
#slider .yt-content-slider .yt-content-wrap .caption {
  position: static;
  padding: 0;
  background: transparent;
  position: unset;
}
#slider .yt-content-slider .yt-content-wrap .caption .container {
  position: relative;
  padding: 0;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-warp {
  max-width: 45%;
  position: absolute;
  bottom: 200px;
  left: 15px;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-title {
  opacity: 0;
  font-size: var(--font-size-14);
  line-height: 17px;
  color: var(--color-white);
  font-weight: 400;
  text-transform: none;
  padding: 14px 15px;
  background: linear-gradient(
    90deg,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: inline-block;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-title:hover {
  background: linear-gradient(
    90deg,
    var(--grad-color-1) 37.36%,
    var(--grad-color-2) 71.43%
  );
  cursor: pointer;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-title2 {
  opacity: 0;
  font-size: 60px;
  color: #df4979;
  font-weight: 700;
  line-height: 75px;
  text-transform: none;
  margin: 0;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-descrip {
  opacity: 0;
  font-size: var(--font-size-16);
  line-height: 1.4;
  color: #8d979e;
  font-weight: 400;
  padding-left: 16px;
  border-left: 2px solid #dcdcdc;
  margin-bottom: 22px;
}
#slider .yt-content-slider .yt-content-wrap .caption .slide-button {
  opacity: 0;
}
#slider .yt-content-slider .yt-content-wrap .caption .link-button {
  float: left;
  display: inline-block;
  font-size: var(--font-size-18);
  line-height: 24px;
  color: var(--color-white);
  font-weight: 500;
  background: linear-gradient(
    90deg,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  text-align: center;
  text-transform: none;
  padding: 12px 30px;
  margin-right: 15px;
  border-radius: var(--radius-sm);
}
#slider .yt-content-slider .yt-content-wrap .caption .link-button:hover {
  background: linear-gradient(
    90deg,
    var(--grad-color-1) 37.36%,
    var(--grad-color-2) 71.43%
  );
}
#slider .yt-content-slider .yt-content-wrap .caption .video-slider {
  display: inline-block;
  float: left;
  font-weight: 400;
  font-size: var(--font-size-18);
  line-height: 48px;
  color: #8a8a8a;
}
#slider .yt-content-slider .yt-content-wrap .caption .video-slider i {
  font-family: inherit;
  font-weight: 400;
  line-height: 48px;
}
#slider .yt-content-slider .yt-content-wrap .caption .video-slider i:before {
  display: inline-block;
  float: left;
  font-family: "FontAwesome";
  color: var(--color-accent);
  margin-right: 9px;
  vertical-align: middle;
  font-size: var(--font-size-16);
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 100%;
  text-align: center;
  background: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}
#slider .yt-content-slider .yt-content-wrap .caption .video-slider:hover {
  color: var(--color-accent);
}
#slider
  .yt-content-slider
  .yt-content-wrap
  .caption
  .video-slider:hover
  i:before {
  color: var(--color-white);
  background: linear-gradient(
    to right,
    var(--grad-color-1) 0%,
    var(--grad-color-2) 100%
  );
}
#slider .owl2-item.active .yt-content-slide .caption .slide-title {
  opacity: 1 !important;
  animation: myeffect-slideshow 3s ease-in-out;
  -webkit-animation: myeffect-slideshow 3s ease-in-out;
  -moz-animation: myeffect-slideshow 3s ease-in-out;
  -o-animation: myeffect-slideshow 3s ease-in-out;
}
#slider .owl2-item.active .yt-content-slide .caption .slide-title2 {
  opacity: 1 !important;
  animation: myeffect-slideshow 2.5s ease-in-out;
  -webkit-animation: myeffect-slideshow 2.5s ease-in-out;
  -moz-animation: myeffect-slideshow 2.5s ease-in-out;
  -o-animation: myeffect-slideshow 2.5s ease-in-out;
}
#slider .owl2-item.active .yt-content-slide .caption .slide-descrip {
  opacity: 1 !important;
  animation: myeffect-slideshow 2s ease-in-out;
  -webkit-animation: myeffect-slideshow 2s ease-in-out;
  -moz-animation: myeffect-slideshow 2s ease-in-out;
  -o-animation: myeffect-slideshow 2s ease-in-out;
}
#slider .owl2-item.active .yt-content-slide .caption .slide-button {
  opacity: 1 !important;
  animation: myeffect-slideshow 1.5s ease-in-out;
  -webkit-animation: myeffect-slideshow 1.5s ease-in-out;
  -moz-animation: myeffect-slideshow 1.5s ease-in-out;
  -o-animation: myeffect-slideshow 1.5s ease-in-out;
}
#slider .owl2-controls {
  height: 0;
  margin: 0 auto;
  position: relative;
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  #slider .owl2-controls {
    max-width: 1630px;
  }
}
#slider .owl2-controls .owl-dots {
  position: absolute;
  bottom: 35px;
  left: 15px;
  right: auto;
  z-index: 10;
}
#slider .owl2-controls .owl-dots .owl-dot {
  background: transparent !important;
  padding: 0;
  transition: all 0.3s ease 0s;
  float: none;
  display: inline-block;
  color: #707070;
  font-weight: 400;
}
#slider .owl2-controls .owl-dots .owl-dot:after {
  content: "/";
  display: inline-block;
  color: #707070;
  margin: 0 10px;
}
#slider .owl2-controls .owl-dots .owl-dot:last-child:after {
  display: none;
}
#slider .owl2-controls .owl-dots .owl-dot:before {
  content: "01";
  display: inline-block;
}
#slider .owl2-controls .owl-dots .owl-dot span {
  display: none;
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(2):before {
  content: "02";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(3):before {
  content: "03";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(4):before {
  content: "04";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(5):before {
  content: "05";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(6):before {
  content: "06";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(7):before {
  content: "07";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(8):before {
  content: "08";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(9):before {
  content: "09";
}
#slider .owl2-controls .owl-dots .owl-dot:nth-child(10):before {
  content: "10";
}
#slider .owl2-controls .owl-dots .owl-dot:hover,
#slider .owl2-controls .owl-dots .owl-dot.active {
  color: #df4979;
  cursor: pointer;
}
#slider .owl2-controls .owl-dots .owl-dot:hover span,
#slider .owl2-controls .owl-dots .owl-dot.active span {
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #df4979;
}
#slider .owl2-controls .owl2-nav {
  position: relative;
}
#slider .owl2-controls .owl2-nav > div {
  border: none;
  border-radius: 0;
  width: 93px;
  height: 84px;
  line-height: 88px;
  background-color: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  text-align: center;
  text-transform: none;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  opacity: 1;
  z-index: 99;
  top: auto;
  bottom: 40px;
  font-size: var(--font-size-12);
  font-weight: 500;
  color: #df4979;
  transition: var(--transition-base);
}
#slider .owl2-controls .owl2-nav > div:before {
  font-family: "FontAwesome";
  content: "";
  display: inline-block;
  text-indent: 0 !important;
  width: 31px;
  height: 14px;
  background: #df4979;
}
#slider .owl2-controls .owl2-nav > div:hover {
  color: #df4979;
}
#slider .owl2-controls .owl2-nav > div:hover:before {
  background: var(--color-accent);
}
#slider .owl2-controls .owl2-nav .owl-prev {
  left: auto;
  right: 135px;
}
#slider .owl2-controls .owl2-nav .owl-prev:before {
  -webkit-mask-image: url(../images/icon-arrow-l.svg);
  mask-image: url(../images/icon-arrow-l.svg);
}
#slider .owl2-controls .owl2-nav .owl-next {
  left: auto;
  right: 15px;
}
#slider .owl2-controls .owl2-nav .owl-next:before {
  -webkit-mask-image: url(../images/icon-arrow-r.svg);
  mask-image: url(../images/icon-arrow-r.svg);
}
#slider:hover .owl2-controls .owl2-nav > div {
  opacity: 1;
}
.banner1 img {
  border-radius: 10px;
}
.block-policy {
  padding: 0px 15px;
}
.block-policy .item {
  padding: 0px 15px;
  display: flex;
  flex-wrap: wrap;
}
.block-policy .item .icon {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  margin-left: -9px;
  float: left;
}
.block-policy .item .icon img {
  transition: var(--transition-base);
}
.block-policy .item .info-cont {
  padding-top: 5px;
  width: calc(100% - 95px);
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  .block-policy .item .info-cont {
    padding-right: 30px;
  }
}
.block-policy .item .info-cont a {
  font-size: var(--font-size-18);
  font-weight: 700;
  line-height: 23px;
  color: #df4979;
  margin-bottom: 7px;
}
.block-policy .item .info-cont a:hover {
  color: var(--color-accent);
}
.block-policy .item .info-cont p {
  color: #df4979;
  line-height: 18px;
  font-size: var(--font-size-14);
  margin-bottom: 0;
}
.block-policy .item:hover {
  cursor: pointer;
}
.block-policy .item:hover img {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}
.block-policy .item:hover .info-cont a {
  color: var(--color-accent);
}
.block-tesnimal {
  text-align: center;
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) and (max-width: 1366px) {
  .block-tesnimal {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.block-tesnimal .modcontent {
  padding-top: 24px;
  align-items: center;
  text-align: left;
  margin-left: -15px;
  margin-right: -15px;
}
.block-tesnimal .modcontent > div {
  padding-left: 15px;
  padding-right: 15px;
}
/* АДАПТИВ: >= 1367px (widescreen) */
@media (min-width: 1367px) {
  .block-tesnimal .modcontent {
    margin-left: -50px;
    margin-right: -50px;
  }
  .block-tesnimal .modcontent > div {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.block-tesnimal .modcontent .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 65px;
  position: relative;
}
.block-tesnimal .modcontent .item.item-1:before {
  content: "";
  width: 117px;
  height: 90px;
  border-radius: var(--radius-sm);
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  opacity: 0.4;
  position: absolute;
  bottom: -100px;
  left: 75px;
}
.block-tesnimal .modcontent .item.item-3:before {
  content: "";
  width: 117px;
  height: 90px;
  border-radius: var(--radius-sm);
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  opacity: 0.4;
  position: absolute;
  top: -100px;
  left: 0px;
}
.block-tesnimal .modcontent .item.item-3:after {
  content: "";
  width: 232px;
  height: 232px;
  display: inline-block;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(
    to right,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  opacity: 0.4;
  position: absolute;
  bottom: -160px;
  left: -116px;
  background-size: 50% 50%;
  background-position: 100% 100%, 0% 100%, 100% 0%, 100% 100%;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.block-tesnimal .modcontent .item.item-3 .item-box {
  position: relative;
}
.block-tesnimal .modcontent .item.item-3 .item-box:after {
  content: "";
  width: 31px;
  height: 62px;
  border-radius: 62px 0 0 62px;
  display: inline-block;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  margin-top: -31px;
  left: -31px;
}
.block-tesnimal .modcontent .item .item-box {
  padding: 50px;
  border-radius: 15px;
  background: var(--color-white);
  transition: var(--transition-base);
}
.block-tesnimal .modcontent .item .item-box .info-thumb {
  float: left;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  margin-right: 25px;
  overflow: hidden;
  transition: var(--transition-base);
}
.block-tesnimal .modcontent .item .item-box .info-thumb img {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transition: var(--transition-xslow);
}
.block-tesnimal .modcontent .item .item-box .info-content h3 {
  margin: 5px 0 2px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #df4979;
}
.block-tesnimal .modcontent .item .item-box .info-content .rate .fa {
  color: #ffc12b;
  font-size: 0;
}
.block-tesnimal .modcontent .item .item-box .info-content .rate .fa:before {
  font-size: var(--font-size-18);
}
.block-tesnimal .modcontent .item .item-box .info-des {
  margin-top: 23px;
  font-size: var(--font-size-16);
  line-height: var(--line-20);
}
.block-tesnimal .modcontent .item .item-box:hover {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
}
.block-tesnimal .modcontent .item .item-box:hover h3 {
  color: var(--color-accent);
}
.block-tesnimal .modcontent .item .item-box:hover .info-thumb img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  .block-newsletter {
    padding-right: 48% !important;
  }
}
.block-newsletter .block_content .form-inline {
  display: flex;
  margin: 0;
}
.block-newsletter .block_content .form-inline input {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  height: 52px;
  line-height: 52px;
  font-size: var(--font-size-16);
  color: #8a8a8a;
  border: none;
  margin-right: 20px;
  box-shadow: none;
  padding-left: 20px;
  max-width: 352px;
}
.block-newsletter .block_content .form-inline input::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}
.block-newsletter .block_content .form-inline input:-ms-input-placeholder {
  color: #8a8a8a;
}
.block-newsletter .block_content .form-inline input::-webkit-input-placeholder {
  color: #8a8a8a;
}
.block-newsletter .block_content .form-inline input:focus {
  z-index: 0;
}
.block-newsletter .block_content button {
  border: 0 none;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-16);
  height: 52px;
  line-height: 52px;
  padding: 0 28px;
  text-transform: none;
  margin-bottom: 0;
  background: linear-gradient(
    90deg,
    var(--grad-color-2) 37.36%,
    var(--grad-color-1) 71.43%
  );
  border-radius: var(--radius-sm);
}
.block-newsletter .block_content button .fas {
  font-size: var(--font-size-16);
  margin-left: 8px;
}
.block-newsletter .block_content button:hover {
  background: linear-gradient(
    90deg,
    var(--grad-color-1) 37.36%,
    var(--grad-color-2) 71.43%
  );
}
.block-newsletter .block_content button:focus {
  box-shadow: none;
}
.listingtab-layout1 .sp-module .sp-module-title {
  text-align: center;
}
div.sj-listing-tabs {
  overflow: visible;
}
div.sj-listing-tabs .pre-text {
  margin-bottom: 20px;
}
div.sj-listing-tabs .ltabs-wrap .ltabs-tabs-container {
  margin: 0 0 30px;
  text-align: center;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab {
  display: inline-block;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  line-height: 100%;
  border-radius: var(--radius-sm);
  float: none;
  margin: 0 5px;
  padding: 11px 10px;
  transition: all 0.2s ease-in-out 0s;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab
  span {
  color: #df4979;
  display: block;
  font-size: var(--font-size-14);
  line-height: 18px;
  font-weight: 400;
  padding: 0;
  text-transform: none;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab.tab-sel,
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab:hover {
  border: 1px solid var(--color-accent);
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab.tab-sel
  span,
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-tabs-container
  ul.ltabs-tabs
  li.ltabs-tab:hover
  span {
  color: var(--color-accent);
}
div.sj-listing-tabs .ltabs-wrap .ltabs-items-container {
  margin: 0 -15px;
}
div.sj-listing-tabs .ltabs-wrap .ltabs-items-container .ltabs-loadmore {
  margin: 0px auto;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-loadmore
  .ltabs-loadmore-btn {
  background: transparent;
  font-weight: 500;
  color: #df4979;
  border: 1px solid #df4979;
  padding: 10px 30px 10px;
  transition: all 0.3s ease 0s;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-loadmore
  .ltabs-loadmore-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-loadmore
  .ltabs-loadmore-btn
  img.add-loadmore {
  display: none;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-loadmore
  .ltabs-loadmore-btn
  .ltabs-image-loading {
  background-color: var(--color-accent);
  -webkit-mask-image: url(../images/spinner.svg);
  mask-image: url(../images/spinner.svg);
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-items
  .ltabs-item {
  margin-bottom: 0;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-items
  .ltabs-item
  .product:last-child {
  margin-bottom: 0;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-items
  .ltabs-item
  .product-inner {
  margin: 0 15px;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-items
  .ltabs-item
  .item-prices {
  margin-bottom: 0;
}
div.sj-listing-tabs
  .ltabs-wrap
  .ltabs-items-container
  .ltabs-items
  .ltabs-item
  .item-rating {
  margin-bottom: 5px;
  line-height: 12px;
  margin-bottom: 0px;
}
div.sj-listing-tabs .owl2-controls .owl2-nav .owl2-prev:hover,
div.sj-listing-tabs .owl2-controls .owl2-nav .owl2-next:hover {
  border: 1px solid var(--color-accent);
  color: var(--color-white);
  background: var(--color-accent);
}
div.sj-listing-tabs .ltabs-items .ltabs-loading {
  background: url(../images/spinner.gif) no-repeat scroll center center
    transparent;
}
.block-countdown .modtitle {
  margin-bottom: 30px;
}
.block-countdown .time-endin .time-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: #df4979;
  margin-bottom: 34px;
}
.block-countdown .time-endin .time-title strong {
  color: var(--color-accent);
}
.block-countdown .time-endin #block-clock div {
  margin: 0 5px;
  display: inline-block;
  min-width: 60px;
  font-weight: 600;
  font-size: 50px;
  color: #df4979;
  margin-right: 40px;
  font-weight: 700;
  width: auto;
  line-height: 63px;
  text-align: center;
  margin-bottom: 0;
}
.block-countdown .time-endin #block-clock div span {
  color: var(--color-accent);
  display: block;
  font-size: var(--font-size-16);
  font-weight: 400;
  text-transform: none;
  margin-top: 8px;
  line-height: 18px;
}
.block-countdown .time-endin #block-clock div:last-child {
  margin: 0 !important;
}
/* АДАПТИВ: <= 1367px (laptops) */
@media (max-width: 1367px) {
  .sppb-section.row-deal {
    margin-top: 0 !important;
    max-width: 100%;
    padding: 0 !important;
  }
}
.js-extra-slider-deal {
  padding: 60px 160px;
  background-color: var(--color-white);
  box-shadow: 8px 10px 53px #edf0f5;
}
.js-extra-slider-deal .sj-js-extraslider {
  margin: 0px -15px;
  position: relative;
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-inner {
  border: none;
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-inner .item .line {
  border: none;
  margin: 0;
  padding: 0;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-inner
  .item
  .line
  .product {
  margin: 0;
  padding: 0;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-inner
  .item
  .line
  .product
  .product-inner {
  margin: 0 15px;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-inner
  .item
  .line
  .product
  .product-inner
  .item-info {
  padding: 0;
  margin: 0;
  background: transparent;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-inner
  .item
  .line
  .product
  .product-inner
  .item-info
  .item-title {
  padding: 0;
  font-weight: 500;
  margin-bottom: 8px;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-inner
  .item
  .line
  .product
  .product-inner
  .item-info
  .item-content {
  margin: 0;
  line-height: 12px;
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-control {
  padding: 0px;
  height: auto;
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-control .nav-page {
  display: none;
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-control .btn-arrow {
  background: var(--color-white);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border: none;
  line-height: 54px;
  text-align: center;
  float: left;
  position: absolute;
  top: 50%;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  z-index: 99;
  font-size: var(--font-size-18);
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-control
  .btn-arrow
  i:before {
  display: block;
  width: 100%;
  height: 100%;
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-control
  .btn-arrow.button-prev {
  left: -50px;
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  .js-extra-slider-deal
    .sj-js-extraslider
    .extraslider-control
    .btn-arrow.button-prev {
    left: -105px;
  }
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-control
  .btn-arrow.button-prev
  i:before {
  content: "";
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-control
  .btn-arrow.button-next {
  right: -50px;
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  .js-extra-slider-deal
    .sj-js-extraslider
    .extraslider-control
    .btn-arrow.button-next {
    right: -105px;
  }
}
.js-extra-slider-deal
  .sj-js-extraslider
  .extraslider-control
  .btn-arrow.button-next
  i:before {
  content: "";
}
.js-extra-slider-deal .sj-js-extraslider .extraslider-control .btn-arrow:hover {
  color: var(--color-accent);
}
.js-extra-slider-deal .sj-extraslider.preset02-3 .extraslider-inner .product {
  width: 33.333%;
  float: left;
}
.block-team {
  text-align: center;
}
.block-team img {
  transition: var(--transition-base);
}
.block-team img:hover {
  opacity: 0.8;
}
/* АДАПТИВ: 720–1024px портрет (tablet) - ОНОВЛЕНО з 768px */
@media (min-width: 720px) and (max-width: 1024px) and (orientation: portrait) {
  .product-image,
  .product-info {
    width: 100% !important;
    float: none !important;
  }
  .block-main {
    display: flex;
    flex-direction: column;
  }
  .product-image {
    margin-bottom: 20px;
  }
}
@-ms-viewport {
  width: device-width;
}
/* АДАПТИВ: <= 400px (small phones) + viewport fix */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: 320px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
/* АДАПТИВ: 992–1199px (lg) */
@media (min-width: 992px) and (max-width: 1199px) {
  .row * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row:before,
  .row:after {
    content: " ";
    display: table;
  }
  .row:after {
    clear: both;
  }
  .sp-contact-info {
    display: none;
  }
  .search-joomshop {
    display: none;
  }
  #sp-header .logo,
  .header-container .logo {
    width: 98px;
  }
  .logo-image {
    height: auto !important;
  }
  #sp-menu {
    padding-left: 80px;
  }
  .sp-megamenu-parent > li {
    margin-right: 10px;
  }
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li > span {
    font-size: var(--font-size-16);
  }
  #sp-top3 .sp-column {
    gap: 20px;
    gap: 0;
  }
  #my_account {
    padding-left: 40px;
    display: none;
  }
  #my_account .text-or {
    display: none;
  }
  #jshop_module_cart .shopcart span.icon-c {
    margin-right: 10px;
  }
  #slider .owl2-controls {
    max-width: 960px;
  }
  #slider .owl2-controls .owl2-nav {
    display: none;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-button,
  #slider .yt-content-slider .yt-content-wrap .caption .slide-title {
    display: none;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-title2 {
    font-size: 32px;
    line-height: 45px;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-warp {
    bottom: 100px;
  }
  .block-countdown .time-endin .time-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .block-countdown .time-endin #block-clock div {
    font-size: 40px;
    margin-right: 20px;
  }
  .modtitle .sppb-addon-title > br {
    display: none;
  }
  .block-counters .modtitle .sppb-addon-title {
    font-size: 33px !important;
    line-height: 33px !important;
  }
  .counters-num {
    padding: 30px 30px;
    margin: 0 !important;
  }
  .counters-num .item {
    font-size: 30px;
    line-height: 40px;
  }
  .block-tesnimal .modcontent .item {
    gap: 30px;
  }
  .block-tesnimal .modcontent .item .item-box {
    padding: 30px 20px;
  }
  .block-tesnimal .modcontent .item .item-box .info-content h3 {
    font-size: var(--font-size-16);
  }
  .block-tesnimal .modcontent .item.item-1:before,
  .block-tesnimal .modcontent .item.item-3:before,
  .block-tesnimal .modcontent .item.item-3:after,
  .block-tesnimal .modcontent .item.item-3 .item-box:after {
    display: none;
  }
  .block-newsletter {
    padding: 50px 30px 50px !important;
  }
  #sp-bottom .sp-module {
    margin-bottom: 50px;
  }
  #sp-bottom .sp-module .sp-module-title {
    margin-bottom: 40px;
  }
  #sp-bottom #sp-bottom3 .sp-module,
  #sp-bottom #sp-bottom4 .sp-module {
    margin-bottom: 0px;
  }
  .productfull .block-main {
    display: block;
  }
  .productfull .product-image,
  .productfull .product-info {
    float: left;
  }
  body.com-jshopping #sp-main-body #sp-left,
  body.com-jshopping #sp-main-body #sp-component,
  body.com-jshopping #sp-main-body #sp-right {
    float: left;
  }
  body.rtl #sp-menu {
    padding-left: 15px;
    padding-right: 80px;
  }
  body.rtl .sp-megamenu-parent > li {
    margin-right: 0px;
    margin-left: 10px;
  }
  body.rtl #my_account {
    padding-left: 0px;
    padding-right: 40px;
  }
  body.rtl #jshop_module_cart .shopcart span.icon-c {
    margin-right: 0px;
    margin-left: 10px;
  }
  body.rtl .block-countdown .time-endin #block-clock div {
    margin-right: 0px;
    margin-left: 20px;
  }
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) and (max-width: 1366px) {
  #slider .owl2-controls {
    max-width: 1366px;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-title2 {
    font-size: 32px;
    line-height: 45px;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-warp {
    bottom: 170px;
  }
  #sp-top3 .sp-column {
    gap: 20px;
  }
  #my_account .text-or,
  #jshop_module_cart .jshop_summ_product {
    display: none;
  }
}
.productfull {
  padding-bottom: 20px;
}
.productfull .block-main {
  display: block;
}
.product-image,
.product-info {
  float: none;
  display: block;
  width: 100%;
  margin: 0 auto;
}
/* АДАПТИВ: <= 719px (mobile) - ОНОВЛЕНО з 767px */
@media (max-width: 719px) {
  .productfull .block-main {
    display: block;
  }
  .product-image,
  .product-info {
    float: none;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
/* АДАПТИВ: 720–991px (tablet) - ОНОВЛЕНО з 768px */
@media (min-width: 720px) and (max-width: 991px) {
  .productfull .block-main {
    display: block;
  }
  .product-image,
  .product-info {
    float: none;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
/* АДАПТИВ: 992–1199px (lg) */
@media (min-width: 992px) and (max-width: 1199px) {
  .productfull .block-main {
    display: block;
  }
  .product-image,
  .product-info {
    float: none;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
/* АДАПТИВ: >= 1200px (desktop) */
@media (min-width: 1200px) {
  .productfull .block-main {
    display: flex;
    justify-content: space-between;
  }
  .product-image {
    width: 50%;
  }
  .product-info {
    width: 45%;
  }
}
/* АДАПТИВ: <= 480px (small phones) */
@media (max-width: 480px) {
  body.site .jshop_list_product #sort_count label.select-mask select {
    width: 90px;
  }
  body.site .jshop_list_product #sort_count {
    padding: 10px 5px;
  }
  body.site .productfull .product-info .prod_buttons .buttons .button_buy {
    width: auto;
  }
  body.site .sj_jshopping_quickview_handler {
    display: none;
  }
  body.site .productfull .buttons {
    display: inline-block;
  }
  body.site .productfull .prod_qty_input {
    margin-top: 0px;
    display: inline-block;
  }
  body.site .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
    margin: 0 0 5px;
  }
  body.site .form-vertical .login-greeting {
    line-height: 14px;
  }
}
/* АДАПТИВ: <= 719px (mobile) - ОНОВЛЕНО з 767px */
@media (max-width: 719px) {
  .body-innerwrapper {
    overflow-x: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  body,
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .body-innerwrapper > * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .hidden-xs {
    display: none;
  }
  .sj_jshopping_quickview_handler {
    display: none !important;
  }
  #sp-header.header-sticky {
    height: auto !important;
  }
  #sp-menu {
    z-index: 1;
  }
  #sp-right .sp-module:first-child {
    margin-top: 30px;
  }
  #sp-logo {
    text-align: center;
    padding-bottom: 20px;
  }
  #sp-header .logo,
  .header-container .logo {
    width: auto;
  }
  .logo-image {
    height: auto !important;
  }
  #sp-top3 .sp-column {
    justify-content: space-between;
    gap: 0px;
  }
  .sp-contact-info {
    display: none;
  }
  #slider .owl2-controls .owl-dots {
    bottom: 20px;
  }
  #slider .owl2-controls .owl2-nav {
    display: none;
  }
  #slider .yt-content-slider .yt-content-wrap .caption .slide-button,
  #slider .yt-content-slider .yt-content-wrap .caption .slide-title,
  #slider .yt-content-slider .yt-content-wrap .caption .slide-descrip,
  #slider .yt-content-slider .yt-content-wrap .caption .slide-title2 {
    display: none;
  }
  .block-policy .item {
    margin-bottom: 30px;
  }
  .block-policy .item:last-child {
    margin-bottom: 0;
  }
  .block-policy .item .icon {
    width: 50px;
  }
  .block-policy .item .info-cont {
    padding-top: 0;
    width: 82%;
    margin-top: -5px;
  }
  div.sj-listing-tabs .ltabs-wrap .ltabs-tabs-container {
    margin: 0 0 20px;
  }
  div.sj-listing-tabs
    .ltabs-wrap
    .ltabs-tabs-container
    ul.ltabs-tabs
    li.ltabs-tab {
    display: block;
    border-radius: 0;
    padding: 5px 10px;
    border: none !important;
  }
  div.sj-listing-tabs
    .ltabs-wrap
    .ltabs-tabs-container
    .ltabs-tabs-wrap.ltabs-selectbox
    .ltabs-tabs {
    padding-top: 10px;
  }
  .block-countdown .time-endin .time-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .block-countdown .time-endin #block-clock div {
    font-size: 36px;
    margin-right: 15px;
  }
  .block-countdown .time-endin #block-clock div:last-child {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .js-extra-slider-deal {
    padding: 60px 15px 100px !important;
  }
  .section-countdeal .sppb-container-inner {
    max-width: 720px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .section-countdeal
    .js-extra-slider-deal
    .sj-js-extraslider
    .extraslider-control
    .btn-arrow.button-prev {
    left: 0px;
  }
  .section-countdeal
    .js-extra-slider-deal
    .sj-js-extraslider
    .extraslider-control
    .btn-arrow.button-next {
    right: 0;
  }
  .section-countdeal
    .js-extra-slider-deal
    .sj-extraslider.preset02-3
    .extraslider-inner
    .product {
    width: 100%;
    margin-bottom: 30px;
  }
  .section-countdeal
    .js-extra-slider-deal
    .sj-extraslider.preset02-3
    .extraslider-inner
    .product:last-child {
    margin-bottom: 0px;
  }
  .modtitle .sppb-addon-title > br {
    display: none;
  }
  .counters-num {
    padding: 30px 30px;
    margin: 0 !important;
  }
  .counters-num .item {
    font-size: 30px;
    line-height: 40px;
  }
  .block-tesnimal .modcontent .item {
    gap: 30px;
  }
  .block-tesnimal .modcontent .item.item-1 {
    margin-bottom: 30px;
  }
  .block-tesnimal .modcontent .item.item-3 {
    margin-top: 30px;
  }
  .block-tesnimal .modcontent .item .item-box {
    padding: 30px 20px;
  }
  .block-tesnimal .modcontent .item .item-box .info-content h3 {
    font-size: var(--font-size-16);
  }
  .block-tesnimal .modcontent .item.item-1:before,
  .block-tesnimal .modcontent .item.item-3:before,
  .block-tesnimal .modcontent .item.item-3:after,
  .block-tesnimal .modcontent .item.item-3 .item-box:after {
    display: none;
  }
  .block-newsletter {
    padding: 50px 30px 50px !important;
  }
  .block-newsletter .promotext {
    display: none;
  }
  .block-newsletter .block_content button em {
    display: none;
  }
  .block-newsletter .block_content .form-inline input {
    margin-right: 10px;
  }
  #sp-bottom .sp-module {
    margin-bottom: 50px;
  }
  #sp-bottom .sp-module .sp-module-title {
    margin-bottom: 40px;
  }
  #sp-bottom #sp-bottom4 .sp-module {
    margin-bottom: 0px;
  }
  ul.social-icons {
    justify-content: center;
  }
  .jshop_list_product .list_product.columns-1 .product .item-image {
    float: none !important;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .jshop_list_product
    .list_product.columns-1
    .product
    .item-image
    .product-buttons {
    right: 20px;
  }
  .jshop_list_product .list_product.columns-1 .product .right-block {
    padding-top: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
  }
  .jshop_list_product
    .list_product.columns-1
    .product
    .right-block
    .button_buy {
    right: 20px;
    bottom: auto;
    top: -55px;
  }
  .productfull .product-info-inn {
    padding: 50px 0 0 !important;
  }
  .productfull .product-info-inn h1.title {
    font-size: 1.5rem;
  }
  .productfull .product-form {
    padding: 0px;
  }
  .productfull .block-tab .nav-tabs li {
    margin: 0 10px;
  }
  .jshop_list_product #sort_count label.select-mask select {
    width: 90px;
  }
  .jshop_list_product #sort_count {
    padding: 10px 5px;
  }
  .jshop_list_product #sort_count .box_products_count_to_page {
    float: right;
  }
  .row-fluid .sblock6 {
    width: 50%;
  }
  .article-list .cols-1 .article {
    flex-wrap: wrap;
  }
  .article-list .cols-1 .article .article-intro-image {
    width: auto;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }
  .article-list .cols-1 .article .article-body {
    width: auto;
  }
  .form-horizontal .controls {
    margin-left: 150px;
  }
  .registration .input-group,
  .profile-edit .input-group {
    flex-wrap: nowrap;
  }
  .search .form-group .input-group,
  .search .form-group select:not(.form-control) {
    width: 100%;
  }
  .search .form-group .input-group {
    padding: 0;
  }
  #myLogin .modal-dialog {
    width: auto;
    z-index: 999;
  }
  div.contact-ajax .ctajax-element .el-ctajax-form input {
    width: 100%;
  }
  div.contact-ajax .ctajax-element .el-ctajax-form textarea {
    width: 100%;
  }
  #sp-left {
    order: 1;
    margin-top: 50px;
  }
  #sp-left .sp-module:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  body.rtl .block-countdown .time-endin #block-clock div {
    margin-right: 0px;
    margin-left: 15px;
  }
  body.rtl .block-countdown .time-endin #block-clock div:last-child {
    margin: 0 !important;
  }
  body.rtl .block-newsletter .block_content .form-inline input {
    margin-right: 0px;
    margin-left: 10px;
  }
  body.rtl .jshop_list_product #sort_count .box_products_count_to_page {
    float: left;
  }
  body.rtl
    .jshop_list_product
    .list_product.columns-1
    .product
    .item-image
    .product-buttons {
    left: 20px;
    right: auto;
  }
  body.rtl
    .jshop_list_product
    .list_product.columns-1
    .product
    .right-block
    .button_buy {
    left: 20px;
    right: auto;
  }
  body.rtl .form-horizontal .controls {
    margin-right: 150px;
    margin-left: 0px;
  }
  body.rtl
    .sj-listing-tabs
    .ltabs-tabs-container
    .ltabs-tabs-wrap.ltabs-selectbox {
    text-align: right;
  }
}
/* АДАПТИВ: <= 667px (phones) */
@media (max-width: 667px) {
  .section-countdeal .sppb-container-inner {
    max-width: 540px;
  }
}
/* АДАПТИВ: 720–991px (tablet) - ОНОВЛЕНО з 768px */
@media (min-width: 720px) and (max-width: 991px) {
  .productfull .block-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .productfull .product-image,
  .productfull .product-info {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .productfull .product-info {
    padding: 0 15px;
  }
}
/* АДАПТИВ: 720–991px (tablet) - ОНОВЛЕНО з 768px */
@media (min-width: 720px) and (max-width: 991px) {
  .body-innerwrapper {
    overflow-x: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  body,
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .body-innerwrapper > * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .sj_jshopping_quickview_handler {
    display: none !important;
  }
  #sp-right .sp-module:first-child {
    margin-top: 30px;
  }
  .sp-contact-info {
    display: none;
  }
  #sp-header .logo,
  .header-container .logo {
    width: 98px;
  }
  .logo-image {
    height: auto !important;
  }
  #sp-menu {
    padding: 0 15px !important;
  }
  .sp-megamenu-parent > li {
    margin-right: 10px;
  }
  .sp-megamenu-parent > li > a,
  .sp-megamenu-parent > li > span {
    font-size: var(--font-size-16);
  }
  #sp-top3 .sp-column {
    gap: 20px;
  }
  #my_account {
    padding-left: 40px;
  }
  #my_account .text-or {
    display: none;
  }
  .productfull {
    padding-bottom: 20px;
  }
  .productfull .block-main {
    display: block;
  }
  .productfull .product-image,
  .productfull .product-info {
    float: none !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .productfull .product-image img {
    max-width: 100%;
    height: auto;
  }
  #sp-bottom .sp-module {
    margin-bottom: 50px;
  }
  #sp-bottom .sp-module-title {
    margin-bottom: 40px;
  }
}
/* АДАПТИВ: >= 1199px (desktop) */
@media (min-width: 1199px) {
  .search .form-group .chzn-container .chzn-drop,
  .search .form-group .chzn-container .chzn-single {
    width: 50%;
  }
  .search .form-group.search-display .chzn-container .chzn-drop,
  .search .form-group.search-display .chzn-container .chzn-single {
    width: 20%;
  }
  .search .form-group.search-only {
    width: 100%;
  }
}
/* АДАПТИВ: 720–1024px портрет (tablet) - ОНОВЛЕНО з 768px */
@media (min-width: 720px) and (max-width: 1024px) and (orientation: portrait) {
  .block-main {
    display: flex !important;
    flex-direction: column !important;
  }
  .product-image,
  .product-info {
    width: 100% !important;
    float: none !important;
  }
  .product-image {
    margin-bottom: 20px;
  }
}

/* ДОСТУПНІСТЬ: фокус для посилань у шапці та футері */
#sp-header a:focus-visible,
#sp-footer a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* ДОСТУПНІСТЬ: фокус для пунктів головного меню */
.sp-megamenu-parent > li > a:focus-visible,
.sp-megamenu-parent > li > span:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}
/*
 * ===================================================================
 * ПАГІНАЦІЯ МАГАЗИНА (уніфікація стилю)
 * ===================================================================
 */

/* 1. Приховуємо текстовий лічильник */
body.com-jshopping .pagination-counter {
  display: none;
}

/* 2. Контейнер пагінації: по центру, з верхньою межею */
body.com-jshopping .jshop_list_product .jshop_pagination {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
body.com-jshopping .jshop_list_product .jshop_pagination .pagination {
  display: flex;
  justify-content: center;
}

/* 3. Кнопки сторінок */
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > a,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) !important;
  background: var(--color-white);
  color: #df4979;
  box-shadow: none !important;
  transition: var(--transition-base);
  padding: 0;
}

/* 4. Активна/ховер/фокус */
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li.active
  > a,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li.active
  > span,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li:hover
  > a,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li:hover
  > span,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > a:focus-visible,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > span:focus-visible {
  background: linear-gradient(
    to right,
    var(--grad-color-2),
    var(--grad-color-1)
  );
  border-color: transparent;
  color: var(--color-white);
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* 5. Внутрішні спани номерів */
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > a
  span,
body.com-jshopping
  .jshop_list_product
  .jshop_pagination
  .pagination
  .pagination
  > li
  > span
  span {
  border: none;
  height: auto;
  padding: 0;
  min-width: auto;
  background: transparent;
}

/* ПАГІНАЦІЯ: прибрати текст типу "Показано X–Y із Z" */
body.com-jshopping .jshop_list_product .jshop_pagination .counter,
body.com-jshopping .jshop_list_product .jshop_pagination .page-info,
body.com-jshopping .jshop_list_product .jshop_pagination .display-number,
body.com-jshopping .jshop_list_product .jshop_pagination .pagination-result,
body.com-jshopping .jshop_list_product .jshop_pagination > p,
body.com-jshopping .jshop_list_product .jshop_pagination > span {
  display: none !important;
}

/* ПАГІНАЦІЯ: глобально приховати лічильник результатів */
.pagination_result_counter {
  display: none !important;
}
/* -------------------------------------------
   Overrides: Quickview + Product title size
   ------------------------------------------- */
/* Hide the Quick View handler on product cards */
div a.sj_jshopping_quickview_handler {
  display: none !important;
}

/* Reduce product list item titles */
.product .item-title,
.product .item-title a {
  font-size: var(--font-size-18);
  line-height: var(--line-20);
}
.product .item-title {
  color: #a67b5b !important;
}
/* -------------------------------------------
   Category Menu: modernized styling and spacing
   ------------------------------------------- */
/* Add breathing room above the category module */
#sp-right .sp-module.jshop-cat,
#sp-left .sp-module.jshop-cat {
  margin-top: 24px;
}

/* Decorative gradient line under the module title */
#sp-right .sp-module.jshop-cat .sp-module-title,
#sp-left .sp-module.jshop-cat .sp-module-title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  position: relative;
}
#sp-right .sp-module.jshop-cat .sp-module-title::after,
#sp-left .sp-module.jshop-cat .sp-module-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}

/* Subtle card look for the menu list */
#sp-right .sp-module.jshop-cat .sp-module-content,
#sp-left .sp-module.jshop-cat .sp-module-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Item spacing and thin separators */
#sp-right .sp-module.jshop-cat .jshop_menu_level_0,
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0:last-child,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0:last-child {
  border-bottom: none;
}

/* Links: tidy spacing + animated underline + subtle shift */
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a {
  display: inline-block;
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing),
    background-size var(--duration) var(--easing);
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a a:hover,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a:hover,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a:hover,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a a:hover,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a:hover,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a:hover {
  color: var(--color-accent);
  transform: translateX(2px);
  background-size: 100% 1px;
}

/* Small decorative bullet that reacts on hover */
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a a::before,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a::before,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a a::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-border);
  vertical-align: middle;
  transition: background-color var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_0_a a:hover::before,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a:hover::before,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a:hover::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_0_a a:hover::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a:hover::before,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a:hover::before {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* Indentation for nested levels (optional, subtle) */
#sp-right .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_1 a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_1 a {
  padding-left: 8px;
}
#sp-right .sp-module.jshop-cat .jshop_menu_level_2_a a,
#sp-right .sp-module.jshop-cat .jshop_menu_level_2 a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2_a a,
#sp-left .sp-module.jshop-cat .jshop_menu_level_2 a {
  padding-left: 16px;
}
/* -------------------------------------------
   Category Menu (scoped): .shopcat-modern
   Apply this via Module Class Suffix: " shopcat-modern" (note leading space)
   ------------------------------------------- */
/* Spacing above to avoid sticking */
.sp-module.shopcat-modern,
.moduletable.shopcat-modern {
  margin-top: 24px;
}

/* Title with decorative gradient underline */
.sp-module.shopcat-modern .sp-module-title,
.moduletable.shopcat-modern .sp-module-title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  position: relative;
}
.sp-module.shopcat-modern .sp-module-title::after,
.moduletable.shopcat-modern .sp-module-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}

/* Subtle card look for list */
.sp-module.shopcat-modern .sp-module-content,
.moduletable.shopcat-modern .sp-module-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Item spacing + thin separators */
.shopcat-modern .jshop_menu_level_0,
.shopcat-modern .jshop_menu_level_0_a,
.shopcat-modern .jshop_menu_level_1,
.shopcat-modern .jshop_menu_level_1_a,
.shopcat-modern .jshop_menu_level_2,
.shopcat-modern .jshop_menu_level_2_a {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.shopcat-modern .jshop_menu_level_0:last-child {
  border-bottom: none;
}

/* Links: animated underline and subtle shift */
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a {
  display: inline-block;
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing),
    background-size var(--duration) var(--easing);
}
.shopcat-modern .jshop_menu_level_0_a a:hover,
.shopcat-modern .jshop_menu_level_1_a a:hover,
.shopcat-modern .jshop_menu_level_2_a a:hover {
  color: var(--color-accent);
  transform: translateX(2px);
  background-size: 100% 1px;
}

/* Decorative bullet reacting on hover */
.shopcat-modern .jshop_menu_level_0_a a::before,
.shopcat-modern .jshop_menu_level_1_a a::before,
.shopcat-modern .jshop_menu_level_2_a a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-border);
  vertical-align: middle;
  transition: background-color var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}
.shopcat-modern .jshop_menu_level_0_a a:hover::before,
.shopcat-modern .jshop_menu_level_1_a a:hover::before,
.shopcat-modern .jshop_menu_level_2_a a:hover::before {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* Indentation for nested levels */
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_1 a {
  padding-left: 8px;
}
.shopcat-modern .jshop_menu_level_2_a a,
.shopcat-modern .jshop_menu_level_2 a {
  padding-left: 16px;
}
/* -------------------------------------------
   Category Menu (scoped): .shopcat-modern — simplified card
   ------------------------------------------- */
/* Unified card container with subtle shadow */
.sp-module.shopcat-modern,
.moduletable.shopcat-modern {
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-top: 24px;
  overflow: hidden;
}

/* Title: no heavy separation, no underline */
.sp-module.shopcat-modern .sp-module-title,
.moduletable.shopcat-modern .sp-module-title {
  margin: 0;
  padding: 14px 16px 6px;
  border: 0;
}
.sp-module.shopcat-modern .sp-module-title::after,
.moduletable.shopcat-modern .sp-module-title::after {
  display: none !important;
}

/* Content: no inner border, part of same card */
.sp-module.shopcat-modern .sp-module-content,
.moduletable.shopcat-modern .sp-module-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 8px 16px 14px;
}

/* Items: no separators, comfortable spacing */
.shopcat-modern .jshop_menu_level_0,
.shopcat-modern .jshop_menu_level_0_a,
.shopcat-modern .jshop_menu_level_1,
.shopcat-modern .jshop_menu_level_1_a,
.shopcat-modern .jshop_menu_level_2,
.shopcat-modern .jshop_menu_level_2_a {
  margin: 0;
  padding: 6px 0;
  border: 0;
}

/* Links: gray by default, subtle hover */
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a {
  display: inline-block;
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}
.shopcat-modern .jshop_menu_level_0_a a:hover,
.shopcat-modern .jshop_menu_level_1_a a:hover,
.shopcat-modern .jshop_menu_level_2_a a:hover {
  color: #333333;
  transform: translateX(1px);
}

/* Active/current item: accent but not oversized */
.shopcat-modern .jshop_menu_level_0_a a.active,
.shopcat-modern .jshop_menu_level_1_a a.active,
.shopcat-modern .jshop_menu_level_2_a a.active,
.shopcat-modern .jshop_menu_level_0_a a.current,
.shopcat-modern .jshop_menu_level_1_a a.current,
.shopcat-modern .jshop_menu_level_2_a a.current,
.shopcat-modern .jshop_menu_level_0.active > a,
.shopcat-modern .jshop_menu_level_1.active > a,
.shopcat-modern .jshop_menu_level_2.active > a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Decorative bullet: subtle gray, no accent on hover */
.shopcat-modern .jshop_menu_level_0_a a::before,
.shopcat-modern .jshop_menu_level_1_a a::before,
.shopcat-modern .jshop_menu_level_2_a a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #dcdcdc;
  vertical-align: middle;
  transition: transform var(--duration) var(--easing),
    background-color var(--duration) var(--easing);
}
.shopcat-modern .jshop_menu_level_0_a a:hover::before,
.shopcat-modern .jshop_menu_level_1_a a:hover::before,
.shopcat-modern .jshop_menu_level_2_a a:hover::before {
  background: #bfbfbf;
  transform: scale(1.05);
}

/* Nested indentation (kept subtle) */
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_1 a {
  padding-left: 8px;
}
.shopcat-modern .jshop_menu_level_2_a a,
.shopcat-modern .jshop_menu_level_2 a {
  padding-left: 16px;
}
/* -------------------------------------------
   Category Menu (scoped): .shopcat-modern — flat, borderless, transparent
   ------------------------------------------- */
/* Container: no borders, no shadows, transparent */
.sp-module.shopcat-modern,
.moduletable.shopcat-modern {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* Title with thick partial gradient line */
.sp-module.shopcat-modern .sp-module-title,
.moduletable.shopcat-modern .sp-module-title {
  margin: 0 0 10px;
  padding: 0 16px 10px;
  position: relative;
  border: 0;
}
.sp-module.shopcat-modern .sp-module-title::after,
.moduletable.shopcat-modern .sp-module-title::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  height: 5px;
  width: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}
/* Content: transparent, no frame */
.sp-module.shopcat-modern .sp-module-content,
.moduletable.shopcat-modern .sp-module-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 16px 8px;
}
/* Items: remove any borders set earlier */
.shopcat-modern .jshop_menu_level_0,
.shopcat-modern .jshop_menu_level_0_a,
.shopcat-modern .jshop_menu_level_1,
.shopcat-modern .jshop_menu_level_1_a,
.shopcat-modern .jshop_menu_level_2,
.shopcat-modern .jshop_menu_level_2_a {
  border: 0 !important;
  margin: 0;
  padding: 0;
}
/* Links: gray text, underline as a thin light line that grows + turns pink on hover */
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a {
  display: block;
  position: relative;
  padding: 10px 0;
  color: var(--color-text);
  text-decoration: none;
  background: none !important; /* cancel previous bg-underline trick */
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing);
}
/* Base thin light-gray line */
.shopcat-modern .jshop_menu_level_0_a a::after,
.shopcat-modern .jshop_menu_level_1_a a::after,
.shopcat-modern .jshop_menu_level_2_a a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  transition: height var(--duration) var(--easing),
    background-color var(--duration) var(--easing);
}
/* Hover effect: slight move and thicker pink line */
.shopcat-modern .jshop_menu_level_0_a a:hover,
.shopcat-modern .jshop_menu_level_1_a a:hover,
.shopcat-modern .jshop_menu_level_2_a a:hover {
  color: #333333;
  transform: translateX(3px);
}
.shopcat-modern .jshop_menu_level_0_a a:hover::after,
.shopcat-modern .jshop_menu_level_1_a a:hover::after,
.shopcat-modern .jshop_menu_level_2_a a:hover::after {
  height: 3px;
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}
/* Active/current item: keep text gray, emphasize line */
.shopcat-modern .jshop_menu_level_0_a a.active,
.shopcat-modern .jshop_menu_level_1_a a.active,
.shopcat-modern .jshop_menu_level_2_a a.active,
.shopcat-modern .jshop_menu_level_0_a a.current,
.shopcat-modern .jshop_menu_level_1_a a.current,
.shopcat-modern .jshop_menu_level_2_a a.current,
.shopcat-modern .jshop_menu_level_0.active > a,
.shopcat-modern .jshop_menu_level_1.active > a,
.shopcat-modern .jshop_menu_level_2.active > a {
  color: #333333;
  font-weight: 600;
}
.shopcat-modern .jshop_menu_level_0_a a.active::after,
.shopcat-modern .jshop_menu_level_1_a a.active::after,
.shopcat-modern .jshop_menu_level_2_a a.active::after,
.shopcat-modern .jshop_menu_level_0_a a.current::after,
.shopcat-modern .jshop_menu_level_1_a a.current::after,
.shopcat-modern .jshop_menu_level_2_a a.current::after {
  height: 3px;
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}
/* Remove bullets completely */
.shopcat-modern .jshop_menu_level_0_a a::before,
.shopcat-modern .jshop_menu_level_1_a a::before,
.shopcat-modern .jshop_menu_level_2_a a::before {
  content: none !important;
  display: none !important;
}
/* Nested indentation (optional, subtle) */
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_1 a {
  padding-left: 8px;
}
.shopcat-modern .jshop_menu_level_2_a a,
.shopcat-modern .jshop_menu_level_2 a {
  padding-left: 16px;
}
/* -------------------------------------------
   Category Menu (scoped): .shopcat-modern — final overrides
   Purpose: enforce requested look regardless of earlier rules
   ------------------------------------------- */
/* Remove bullets and default list spacing */
.shopcat-modern ul.jshop_menu_level_0,
.shopcat-modern ul.jshop_menu_level_1,
.shopcat-modern ul.jshop_menu_level_2 {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Title underline: thick, partial, gradient (ensure visible) */
.sp-module.shopcat-modern .sp-module-title::after,
.moduletable.shopcat-modern .sp-module-title::after {
  display: block !important;
  position: absolute;
  left: 16px;
  bottom: 0;
  height: 5px !important;
  width: 80px !important;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    var(--grad-color-1),
    var(--grad-color-2)
  ) !important;
  content: "";
}

/* Transparent container, no rims/shadows (enforce) */
.sp-module.shopcat-modern,
.moduletable.shopcat-modern,
.sp-module.shopcat-modern .sp-module-content,
.moduletable.shopcat-modern .sp-module-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Spaced clickable rows with animated underline */
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a {
  display: block !important;
  position: relative !important;
  padding: 12px 0 !important;
  color: var(--color-text) !important;
  text-decoration: none !important;
  background: none !important;
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing) !important;
}
.shopcat-modern .jshop_menu_level_0_a a::after,
.shopcat-modern .jshop_menu_level_1_a a::after,
.shopcat-modern .jshop_menu_level_2_a a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  transition: height var(--duration) var(--easing),
    background-color var(--duration) var(--easing);
}
.shopcat-modern .jshop_menu_level_0_a a:hover,
.shopcat-modern .jshop_menu_level_1_a a:hover,
.shopcat-modern .jshop_menu_level_2_a a:hover {
  color: #333 !important;
  transform: translateX(3px) !important;
}
.shopcat-modern .jshop_menu_level_0_a a:hover::after,
.shopcat-modern .jshop_menu_level_1_a a:hover::after,
.shopcat-modern .jshop_menu_level_2_a a:hover::after {
  height: 3px;
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}

/* Active/current item: emphasize underline, keep text neutral */
.shopcat-modern .jshop_menu_level_0_a a.active,
.shopcat-modern .jshop_menu_level_1_a a.active,
.shopcat-modern .jshop_menu_level_2_a a.active,
.shopcat-modern .jshop_menu_level_0_a a.current,
.shopcat-modern .jshop_menu_level_1_a a.current,
.shopcat-modern .jshop_menu_level_2_a a.current {
  color: #333 !important;
  font-weight: 600 !important;
}
.shopcat-modern .jshop_menu_level_0_a a.active::after,
.shopcat-modern .jshop_menu_level_1_a a.active::after,
.shopcat-modern .jshop_menu_level_2_a a.active::after,
.shopcat-modern .jshop_menu_level_0_a a.current::after,
.shopcat-modern .jshop_menu_level_1_a a.current::after,
.shopcat-modern .jshop_menu_level_2_a a.current::after {
  height: 3px;
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}

/* Remove any decorative bullets */
.shopcat-modern .jshop_menu_level_0_a a::before,
.shopcat-modern .jshop_menu_level_1_a a::before,
.shopcat-modern .jshop_menu_level_2_a a::before {
  display: none !important;
  content: none !important;
}
/* -------------------------------------------
   Category Menu (scoped): .shopcat-modern — strict rules
   Enforce: thin gray line under ALL items, hover anim + gradient, active keeps gradient.
   ------------------------------------------- */
/* Title: only gradient line, no other borders */
.sp-module.shopcat-modern .sp-module-title,
.moduletable.shopcat-modern .sp-module-title {
  border-bottom: 0 !important;
}
.sp-module.shopcat-modern .sp-module-title::after,
.moduletable.shopcat-modern .sp-module-title::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  height: 5px;
  width: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}

/* Base anchors set: use broad selectors to catch all levels/structures */
.shopcat-modern .jshop_menu_level_0 a,
.shopcat-modern .jshop_menu_level_1 a,
.shopcat-modern .jshop_menu_level_2 a,
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a,
.shopcat-modern ul a {
  display: block !important;
  position: relative !important;
  padding: 12px 0 !important;
  color: var(--color-text) !important;
  text-decoration: none !important;
  background: none !important;
  transition: color var(--duration) var(--easing),
    transform var(--duration) var(--easing) !important;
}
/* Thin gray line under every item */
.shopcat-modern .jshop_menu_level_0 a::after,
.shopcat-modern .jshop_menu_level_1 a::after,
.shopcat-modern .jshop_menu_level_2 a::after,
.shopcat-modern .jshop_menu_level_0_a a::after,
.shopcat-modern .jshop_menu_level_1_a a::after,
.shopcat-modern .jshop_menu_level_2_a a::after,
.shopcat-modern ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  transition: height var(--duration) var(--easing),
    background-color var(--duration) var(--easing);
}
/* Hover: shift + thicker gradient line (all non-active too) */
.shopcat-modern .jshop_menu_level_0 a:hover,
.shopcat-modern .jshop_menu_level_1 a:hover,
.shopcat-modern .jshop_menu_level_2 a:hover,
.shopcat-modern .jshop_menu_level_0_a a:hover,
.shopcat-modern .jshop_menu_level_1_a a:hover,
.shopcat-modern .jshop_menu_level_2_a a:hover,
.shopcat-modern ul a:hover {
  color: #333 !important;
  transform: translateX(3px) !important;
}
.shopcat-modern .jshop_menu_level_0 a:hover::after,
.shopcat-modern .jshop_menu_level_1 a:hover::after,
.shopcat-modern .jshop_menu_level_2 a:hover::after,
.shopcat-modern .jshop_menu_level_0_a a:hover::after,
.shopcat-modern .jshop_menu_level_1_a a:hover::after,
.shopcat-modern .jshop_menu_level_2_a a:hover::after,
.shopcat-modern ul a:hover::after {
  height: 3px;
  background: linear-gradient(90deg, var(--grad-color-1), var(--grad-color-2));
}
/* Active: keep gradient line at all times */
.shopcat-modern .jshop_menu_level_0 li.active > a,
.shopcat-modern .jshop_menu_level_1 li.active > a,
.shopcat-modern .jshop_menu_level_2 li.active > a,
.shopcat-modern .jshop_menu_level_0_a a,
.shopcat-modern .jshop_menu_level_1_a a,
.shopcat-modern .jshop_menu_level_2_a a,
.shopcat-modern ul li.active > a,
.shopcat-modern ul a.active,
.shopcat-modern ul a.current {
  color: #333 !important;
  font-weight: 600 !important;
}
.shopcat-modern .jshop_menu_level_0 li.active > a::after,
.shopcat-modern .jshop_menu_level_1 li.active > a::after,
.shopcat-modern .jshop_menu_level_2 li.active > a::after,
.shopcat-modern .jshop_menu_level_0_a a::after,
.shopcat-modern .jshop_menu_level_1_a a::after,
.shopcat-modern .jshop_menu_level_2_a a::after,
.shopcat-modern ul li.active > a::after,
.shopcat-modern ul a.active::after,
.shopcat-modern ul a.current::after {
  height: 3px !important;
  background: linear-gradient(
    90deg,
    var(--grad-color-1),
    var(--grad-color-2)
  ) !important;
}
/* No bullets anywhere */
.shopcat-modern ul {
  list-style: none !important;
}
.shopcat-modern ul li {
  list-style: none !important;
}
.shopcat-modern ul a::before {
  content: none !important;
  display: none !important;
}
/**
 * ==========================================================
 * СТИЛІЗАЦІЯ КНОПКИ "ЗАВАНТАЖИТИ" В КОШИКУ/ЗАМОВЛЕННІ
 * ==========================================================
 * Перетворює стандартне посилання .download на помітну кнопку.
 */

/* 1. Базові стилі для самої кнопки */
.filelist a.download {
  /* Створення блоку кнопки */
  display: inline-block; /* Дозволяє задати відступи та розміри */
  padding: 12px 25px; /* Внутрішні відступи (вертикальні та горизонтальні) */
  margin-top: 10px; /* Відступ зверху, щоб кнопка не "липла" до тексту */

  /* Кольори та текст */
  background-color: #c3aed6; /* Ваш фірмовий колір */
  color: #ffffff !important; /* Колір тексту - білий */
  font-weight: bold; /* Робить текст жирним */
  text-decoration: none !important; /* Прибирає стандартне підкреслення */
  text-align: center; /* Центрує текст (корисно, якщо кнопка буде ширшою) */

  /* Оформлення */
  border: none; /* Прибирає будь-які рамки */
  border-radius: 5px; /* Заокруглення кутів */

  /* Плавність анімації */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* 2. Ефект при наведенні курсора */
.filelist a.download:hover {
  background-color: #aec6cf; /* Робимо фон трохи темнішим */
  color: #ffffff !important;
  cursor: pointer; /* Змінює курсор на "руку" */
  transform: translateY(-2px); /* Легкий ефект підйому кнопки */
}

/**
 * ==========================================================
 * СТИЛІЗАЦІЯ БЛОКУ ХАРАКТЕРИСТИК ТОВАРУ
 * ==========================================================
 * Додає відступи для кращої читабельності.
 */

/* 1. Додаємо відступ ПІСЛЯ заголовка "Характеристики товара" */
.extra_fields .extra_fields_group {
  margin-bottom: 20px; /* Збільшує відстань від заголовка до першого пункту */
}

/* 2. Додаємо відступ МІЖ кожним пунктом характеристик */
.extra_fields .extra_fields_el {
  padding-bottom: 12px; /* Створює простір між рядками */
}
/* Робимо назви характеристик жирними */
.extra_fields .extra_fields_name {
  font-weight: bold;
}
/* Відступ між блоком відгуків та пагінацією */
.pro-review .jshop_pagination {
  margin-top: 40px;
  padding-top: 20px;
}

/* Нижній відступ для блоку промокоду/дисконтного коду */
.jshop .span12:has(input[name="rabatt"]),
.jshop:has(input[name="rabatt"]) {
  margin-bottom: 40px;
}
/**
 * Invins Digital - Thank You Page Styles
 * Modern, friendly, clean.
 */

:root {
    /* Використовуємо змінні з custom.css, але додаємо фолбеки, якщо файл не підключений */
    --brand-gradient: linear-gradient(270deg, #E04C74, #E15A53, #E04C74);
    --color-accent: #DF4979;
    --ty-bg-card: #ffffff;
    --ty-bg-info: #fcfcfc;
    --ty-border-info: #ebebeb;
    --ty-text-main: #666666;
    --ty-text-heading: #2c3e50;
    --ty-success: #2ecc71;
    --ty-radius-card: 24px;
    --ty-radius-box: 16px;
}

/* Main Wrapper - Centers everything */
.ty-wrapper {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* Add vertical spacing if embedded in page content */
}

/* Card Container */
.ty-card {
    background: var(--ty-bg-card);
    width: 100%;
    max-width: 600px;
    border-radius: var(--ty-radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); /* Soft, deep shadow */
    overflow: hidden;
    position: relative;
    text-align: center;
}

/* Decorative Header Line - Top accent */
.ty-header-line {
    height: 8px;
    width: 100%;
    background: var(--brand-gradient);
}

/* Content Padding */
.ty-content {
    padding: 40px 30px 50px;
}

/* Logo styling */
.ty-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
}

/* Success Icon Circle */
.ty-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f8f0, #d1f2eb); /* Soft pastel green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ty-icon-svg {
    width: 40px;
    height: 40px;
    stroke: var(--ty-success);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Titles and Text */
.ty-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ty-text-heading);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.ty-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: var(--ty-text-main);
    margin: 0 0 35px 0;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Box (The grey area with instructions) */
.ty-info-box {
    background-color: var(--ty-bg-info);
    border: 2px dashed var(--ty-border-info); /* Dashed border suggests a "receipt" or "note" */
    border-radius: var(--ty-radius-box);
    padding: 25px;
    margin-bottom: 35px;
    text-align: left;
}

.ty-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.ty-info-item:last-child {
    margin-bottom: 0;
}

.ty-info-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent); /* Use brand pink for icons */
    flex-shrink: 0;
    margin-top: 2px;
}

.ty-info-text h3 {
    margin: 0 0 5px 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ty-text-heading);
}

.ty-info-text p {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Primary Button */
.ty-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--brand-gradient);
    color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px; /* Pill shape for friendliness */
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(224, 76, 116, 0.25);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.ty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(224, 76, 116, 0.35);
    color: white;
    text-decoration: none;
}

/* Secondary Link */
.ty-home-link {
    display: block;
    margin-top: 20px;
    font-family: 'Inter', system-ui, sans-serif;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.ty-home-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .ty-content {
        padding: 30px 20px 40px;
    }
    
    .ty-title {
        font-size: 24px;
    }
    
    .ty-info-box {
        padding: 20px;
    }
    
    .ty-button {
        width: 100%;
        max-width: none;
    }
}
.invins-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.invins-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 86px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(224, 75, 123, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
  box-shadow: 0 8px 22px rgba(58, 47, 52, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.invins-benefit-card:hover {
  border-color: rgba(224, 75, 123, 0.38);
  box-shadow: 0 10px 28px rgba(58, 47, 52, 0.09);
  transform: translateY(-1px);
}

.invins-benefit-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e04b7b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.invins-benefit-content {
  min-width: 0;
}

.invins-benefit-content strong {
  display: block;
  margin: 0 0 4px;
  color: #3f3f46;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.invins-benefit-content span {
  display: block;
  color: #77717a;
  font-size: 12.5px;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
  .invins-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 575px) {
  .invins-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 14px 0 20px;
  }

  .invins-benefit-card {
    display: block;
    min-height: auto;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .invins-benefit-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .invins-benefit-content strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .invins-benefit-content span {
    font-size: 11.5px;
    line-height: 1.35;
  }
}
.idp2-picker {
  --idp2-pink: #e64b79;
  --idp2-pink-dark: #c93c66;
  --idp2-text: #3f3f46;
  --idp2-muted: #76727a;
  --idp2-line: #e7e2e5;
  --idp2-line-soft: #f1edf0;
  --idp2-bg: #ffffff;
  --idp2-soft: #faf9fa;

  margin: 22px 0 34px;
  color: var(--idp2-text);
}

.idp2-picker,
.idp2-picker * {
  box-sizing: border-box;
}

.idp2-intro {
  padding: 0 0 16px;
  border-bottom: 2px solid var(--idp2-pink);
}

.idp2-label {
  display: block;
  margin: 0 0 6px;
  color: var(--idp2-pink-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.idp2-intro h2 {
  margin: 0 0 8px;
  color: var(--idp2-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.idp2-intro p {
  max-width: 900px;
  margin: 0;
  color: var(--idp2-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Основні картки */

.idp2-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}

.idp2-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--idp2-line);
  border-radius: 5px;
  background: #ffffff;
  color: var(--idp2-text);
  text-decoration: none !important;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.idp2-card::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 3px;
  background: transparent;
  transition: background-color 0.16s ease;
}

.idp2-card i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--idp2-soft);
  color: var(--idp2-pink);
  font-size: 15px;
}

.idp2-card strong {
  display: block;
  margin: 0 0 4px;
  color: var(--idp2-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.idp2-card small {
  display: block;
  color: var(--idp2-muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.idp2-card:hover,
.idp2-card:focus {
  border-color: var(--idp2-pink);
  background: #ffffff;
  color: var(--idp2-text);
  transform: translateY(-1px);
  outline: none;
}

.idp2-card:hover::after,
.idp2-card:focus::after,
.idp2-card--accent::after {
  background: var(--idp2-pink);
}

.idp2-card:hover i,
.idp2-card:focus i,
.idp2-card--accent i {
  background: var(--idp2-pink);
  color: #ffffff;
}

.idp2-card:focus-visible {
  outline: 2px solid var(--idp2-pink);
  outline-offset: 2px;
}

/* Загальний акордеон */

.idp2-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.idp2-actions {
  margin: 4px 0 0;
}

.idp2-open,
.idp2-close {
  cursor: pointer;
  user-select: none;
}

.idp2-open {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--idp2-line);
  border-radius: 5px;
  background: #ffffff;
  color: var(--idp2-pink-dark);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.idp2-open:hover,
.idp2-open:focus {
  border-color: var(--idp2-pink);
  background: #ffffff;
}

.idp2-panel {
  display: none;
  margin: 14px 0 0;
  padding: 18px;
  border: 1px solid var(--idp2-line);
  border-radius: 5px;
  background: #ffffff;
}

.idp2-toggle:checked ~ .idp2-actions {
  display: none;
}

.idp2-toggle:checked ~ .idp2-panel {
  display: block;
}

.idp2-panel-head {
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--idp2-line-soft);
}

.idp2-panel-head h3 {
  margin: 0 0 6px;
  color: var(--idp2-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.idp2-panel-head p {
  max-width: 760px;
  margin: 0;
  color: var(--idp2-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.idp2-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.idp2-group {
  min-width: 0;
}

.idp2-group h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 9px;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--idp2-line-soft);
  color: var(--idp2-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.idp2-group h4 i {
  width: 18px;
  color: var(--idp2-pink);
  font-size: 13px;
  text-align: center;
}

.idp2-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.idp2-list a {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 0;
  color: #5f5f66;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
  transition: color 0.16s ease, transform 0.16s ease;
}

.idp2-list a i {
  color: var(--idp2-pink);
  font-size: 11px;
  transition: transform 0.16s ease;
}

.idp2-list a:hover,
.idp2-list a:focus {
  color: var(--idp2-pink-dark);
  transform: translateX(3px);
  outline: none;
}

.idp2-list a:hover i,
.idp2-list a:focus i {
  transform: translateX(2px);
}

.idp2-close {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 0;
  padding: 11px 14px;
  border: 1px solid var(--idp2-line);
  border-radius: 5px;
  background: #ffffff;
  color: var(--idp2-pink-dark);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.idp2-close:hover,
.idp2-close:focus {
  border-color: var(--idp2-pink);
  background: #ffffff;
}

/* Tablet */

@media (min-width: 576px) {
  .idp2-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idp2-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 24px;
  }
}

/* Desktop */

@media (min-width: 992px) {
  .idp2-intro h2 {
    font-size: 26px;
  }

  .idp2-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .idp2-panel {
    padding: 20px;
  }

  .idp2-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 28px;
  }

  .idp2-close {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */

@media (max-width: 575px) {
  .idp2-picker {
    margin: 18px 0 28px;
  }

  .idp2-intro {
    padding-bottom: 14px;
  }

  .idp2-intro h2 {
    font-size: 19px;
    line-height: 1.25;
  }

  .idp2-intro p {
    font-size: 13px;
    line-height: 1.45;
  }

  .idp2-featured {
    gap: 9px;
    margin: 14px 0 14px;
  }

  .idp2-card {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    min-height: 72px;
    padding: 12px;
    border-radius: 5px;
  }

  .idp2-card i {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    font-size: 14px;
  }

  .idp2-card strong {
    font-size: 13.5px;
  }

  .idp2-card small {
    font-size: 12px;
  }

  .idp2-panel {
    padding: 14px;
    border-radius: 5px;
  }

  .idp2-panel-head h3 {
    font-size: 16px;
  }

  .idp2-panel-head p {
    font-size: 13px;
  }

  .idp2-groups {
    gap: 20px;
  }

  .idp2-group h4 {
    font-size: 13.5px;
  }

  .idp2-list a {
    min-height: 38px;
    padding: 7px 0;
    font-size: 13px;
  }
}
