/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/




/* Стили для блока иконок в шапке */
.rf-header-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.rf-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.rf-social-icon:hover {
  transform: scale(1.1);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .rf-social-icon {
    width: 26px !important;
    height: 26px !important;
  }
}


/* цена товара */
.wrap-price .woocommerce-Price-amount {
  color: 
#1A1A1A;
  font-size: 18px;
  font-weight: 600;
}
.woocommerce-mini-cart-item .woocommerce-Price-amount,
.woocommerce-mini-cart__total .woocommerce-Price-amount {
  color: 
#1A1A1A !important;
}
/* Цены на странице оформления заказа */
.woocommerce-checkout-review-order-table .woocommerce-Price-amount,
.cart-subtotal .woocommerce-Price-amount,
.order-total .woocommerce-Price-amount,
.fee .woocommerce-Price-amount,
.woocommerce-shipping-totals .woocommerce-Price-amount {
  color: 
#1A1A1A !important;
}


/* кнопка фильтрации в магазе*/
.widget_price_filter button.button[type="submit"] {
  background-color: #7BC8A4;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(123, 200, 164, 0.35);
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
}

.widget_price_filter button.button[type="submit"]:hover {
  background-color: #6BB892;
}


/* скрытие некоторых сортировок в магазе*/
.woodmart-woocommerce-sort-by a[data-order="rating"],
.woodmart-woocommerce-sort-by a[data-order="date"] {
  display: none !important;
}