/*
Theme Name: Martfury Child
Theme URI: http://drfuri.com/unero
Author: DrFuri
Author URI: http://drfuri.com
Description: Martfury Child Theme.
Version: 1.0
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: martfury
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready
Template: martfury
*/

/* Fundal gradient auriu pentru bara meniului principal */
.main-menu {
    background: linear-gradient(90deg, #9b7126 0%, #f7df8b 25%, #d1a141 50%, #f9e596 75%, #a87c2d 100%) !important;
    border: none !important;
}

/* Stil pentru link-urile din meniu: culoare neagră */
.main-menu .primary-nav ul.menu > li > a {
    color: #000000 !important;
    font-weight: 600 !important; /* puțin îngroșat pentru vizibilitate bună pe gradient */
    transition: all 0.3s ease-in-out !important;
}

/* Efect pe hover pentru link-uri (roșu inspirat din logo) */
.main-menu .primary-nav ul.menu > li > a:hover {
    color: #d30000 !important; /* Poți schimba #d30000 cu alt cod de culoare dacă dorești, de exemplu #ffffff pentru alb */
}

/* Stil pentru butonul de căutare */
button.search-submit {
    background: linear-gradient(90deg, #9b7126 0%, #f7df8b 25%, #d1a141 50%, #f9e596 75%, #a87c2d 100%) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease-in-out !important;
}

/* Efect de hover pentru butonul de căutare */
button.search-submit:hover {
    color: #d30000 !important; /* Textul devine roșu la trecerea mouse-ului */
}

/* Stil pentru contorul coșului de cumpărături */
span.mini-item-counter {
    background: linear-gradient(90deg, #9b7126 0%, #f7df8b 25%, #d1a141 50%, #f9e596 75%, #a87c2d 100%) !important;
    color: #000000 !important;
    font-weight: bold !important;
    border: none !important;
}

/* Stil pentru butoanele Adaugă în coș și Cumpără Acum */
a.add_to_cart_button,
button.buy_now_button {
    background: linear-gradient(90deg, #9b7126 0%, #f7df8b 25%, #d1a141 50%, #f9e596 75%, #a87c2d 100%) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease-in-out !important;
}

/* Efect de hover pentru butoane */
a.add_to_cart_button:hover,
button.buy_now_button:hover {
    color: #d30000 !important; /* Textul devine roșu la trecerea mouse-ului */
}

/* Culoarea elementelor din interiorul butonului de adăugare în coș (iconița și textul) */
a.add_to_cart_button i,
a.add_to_cart_button span.add-to-cart-text {
    color: inherit !important; /* Forțează moștenirea culorii negre și a hover-ului roșu */
}

/* Stil pentru iconițele de beneficii (camion, retur, card, suport) */
i.icon-truck, 
i.icon-sync, 
i.icon-credit-card, 
i.icon-bubbles {
    background: linear-gradient(90deg, #9b7126 0%, #f7df8b 25%, #d1a141 50%, #f9e596 75%, #a87c2d 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important; /* Asigură afișarea corectă a gradientului pe iconițe */
}