/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
/* Success message */
.woocommerce-message {
  border-top-color: var(--e-global-color-primary); /* ili tvoja boja */
}
/* Success message ikonica */
.woocommerce-message::before {
  color: var(--e-global-color-primary); /* ili tvoja HEX boja */
}

/* Osnovni stil za dugmad */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  background-color: var(--e-global-color-primary); /* Elementor primarna boja */
  color: #fff;
  border: 2px solid var(--e-global-color-primary);
  padding: 0.6em 1.2em;
  font-weight: 600;
  border-radius: 999px; /* Full roundness */
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover efekat: bela pozadina, primarna boja za tekst i border */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover {
  background-color: #fff;
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}