:root {
    --waku-btn-color-1: #930007;
    --waku-btn-color-2: #C0000C;
}

.added_to_cart.wc-forward { display: none !important; }

a.waku-btn-full {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 15px 20px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
    
    background-color: var(--waku-btn-color-2) !important;
    background-image: linear-gradient(to right, var(--waku-btn-color-1) 50%, var(--waku-btn-color-2) 50%) !important;
    background-size: 200% 100% !important;
    background-position: right bottom !important;
    transition: background-position 0.4s ease-out !important;
}

a.waku-btn-full:hover {
    background-position: left bottom !important;
    color: #ffffff !important;
}

a.waku-btn-full .waku-span-icon {
    display: inline-flex !important;
    margin-left: 10px !important;
    align-items: center !important;
}

a.waku-btn-full .waku-span-icon svg {
    fill: #ffffff !important;
    width: 18px !important;
    height: auto !important;
}

a.waku-btn-full .waku-icon-plus {
    opacity: 0 !important;
    transform: translateY(3px) scale(0.8);
    transform-origin: center;
    transition: all 0.3s ease-in-out !important;
}
a.waku-btn-full:hover .waku-icon-plus {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
}

a.waku-btn-full .waku-icon-arrow {
    opacity: 0 !important;
    transform: translateX(-5px);
    transition: all 0.3s ease-in-out !important;
}

a.waku-btn-full.added .waku-icon-plus {
    display: none !important; 
}

a.waku-btn-full.added .waku-icon-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

a.waku-btn-full.added .waku-span-icon {
    display: inline-flex !important; 
}
