/* Add to cart and addto links wrapper */
.box-tocart {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style for addto links container */
.product-addto-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Common styles for action buttons */
.action.towishlist,
.action.tocompare {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E6E8EC;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

.action.towishlist:hover,
.action.tocompare:hover {
    border-color: #F37021;
    color: #F37021;
}

/* Hide default text */
.action.towishlist span,
.action.tocompare span {
    display: none;
}

/* Custom icons */
.action.towishlist:before {
    font-family: 'porto-icons';
    content: '\e811';
    font-size: 18px;
    color: #777;
}

.action.tocompare:before {
    font-family: 'porto-icons';
    content: '\e81b';
    font-size: 18px;
    color: #777;
}

.action.towishlist:hover:before,
.action.tocompare:hover:before {
    color: #F37021;
}