/*
Theme Name: Hello Child
Theme URI: https://artsets.eu/
Author: Ruslan
Author URI: https://artsets.eu/
Template: hello-elementor
Version: 1.0.0
Description: Custom child theme based on Hello Elementor
Text Domain: hello-child
*/

body {
  background: linear-gradient(to right, #fff9fc, #fdfaff);
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #666666;
  font-weight: bold;
  /* text-decoration: underline; /* Или none, если не хочешь подчёркивания */
}

button {
  background-color: #7100BA;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

button:hover,
button:active {
  background-color: #5c00a1;
  box-shadow: 0 10px 24px rgba(113, 0, 186, 0.45);
}

a.cky-banner-element {
  margin: 15px;
}

/* Селектор для лейбла слева продукт extra field*/
/* Лейбл поля (например "Model telefonu") */
table.thwepo-extra-options td.label.leftside label.label-tag {
  font-weight: 600;
}

/* Звездочка (required) */
table.thwepo-extra-options td.label.leftside abbr.required {
  color: #dc3232;
  font-weight: bold;
  margin-left: 4px;
  text-decoration: none;
  padding-right: 10px;
}

/* Поле ввода */
table.thwepo-extra-options td.value.leftside input[type="text"] {
  width: 100%;
  max-width: 300px;
  padding: 8px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

table.thwepo-extra-options td.value.leftside input[type="text"]:focus {
  border-color: #7100BA;
  box-shadow: 0 0 0 2px rgba(113, 0, 186, 0.1);
  outline: none;
}

/* Базовые стили для всего текста на сайте */
body {
  font-family: Roboto, sans-serif;
  color: #666666;
}

/* WP messages after added product */

.woocommerce-message::before {
  border-top-color: #0daa2f;
  color: #0daa2f;
  align-items: center;
  height: 50%;
  display: inline-flex;
}

.woocommerce-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-color: #0daa2f;
}

/* Mini cart scroll */

.woocommerce-mini-cart.cart_list.product_list_widget {
  max-height: 350px; /* можно изменить на 300–500px под нужный размер */
  overflow-y: auto;
  padding-right: 10px; /* если скролл прижат к тексту */
}

.woocommerce-mini-cart.cart_list.product_list_widget::-webkit-scrollbar {
  width: 8px;
}

.woocommerce-mini-cart.cart_list.product_list_widget::-webkit-scrollbar-thumb {
  background-color: #CBA1FD; /* твой фирменный фиолетовый */
  border-radius: 10px;
}