/*
Theme Name: Shoes Store Child
Theme URI: https://areizauribe.co/
Description: Child theme to change green accents to red and customize footer copyright.
Author: Daniel Estiben Areiza Vera
Author URI: https://areizauribe.co/
Template: shoes-store
Version: 1.0.0
*/

/* ---------- COLOR OVERRIDES: Green -> Red ---------- */
/* Choose a strong red as primary */
:root {
  /* If parent uses CSS variables, this helps */
  --primary-color: #d32f2f;
  --accent-color: #d32f2f;
}

/* Links */
a:link,
a:visited {
  color: #d32f2f;
}
a:hover,
a:focus {
  color: #b71c1c;
}

/* Buttons (generic) */
button,
input[type="submit"],
input[type="button"],
.btn,
.button,
.wp-block-button__link {
  background: #d32f2f;
  border-color: #d32f2f;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover,
.button:hover,
.wp-block-button__link:hover {
  background: #b71c1c;
  border-color: #b71c1c;
}

/* Menu active/hover states */
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: #d32f2f;
}

/* WooCommerce key accents */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .added_to_cart,
.woocommerce span.onsale {
  background: #d32f2f;
  border-color: #d32f2f;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .added_to_cart:hover {
  background: #b71c1c;
  border-color: #b71c1c;
}
.woocommerce span.onsale {
  color: #fff;
}

/* Pagination active */
.pagination .page-numbers.current,
.nav-links .current {
  background: #d32f2f;
  border-color: #d32f2f;
}

/* Form focus */
input:focus,
textarea:focus,
select:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211,47,47,.15);
}

/* ---------- FOOTER TEXT (CSS fallback) ---------- */
/* Hide the original copyright and inject desired text (visual only) */
.site-info,
.footer-credits,
.copyright-text {
  font-size: 0 !important;
  line-height: 0 !important;
}
.site-info::after,
.footer-credits::after,
.copyright-text::after {
  content: "© 2025 Daniel Estiben Areiza Vera";
  font-size: 14px;
  line-height: 1.6;
  display: inline-block;
}
