/* Estilos para iconos en shortcode */
.wc-user-cart-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wc-user-cart-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    border: 1px solid #e0e0e0;
}

.wc-user-cart-icons a:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

.wc-user-cart-icons svg {
    width: 18px;
    height: 18px;
}

.wc-user-cart-icons .wc-user-icon svg {
    fill: #666;
}

.wc-user-cart-icons .wc-cart-icon svg {
    fill: none;
    stroke: #666;
    stroke-width: 1.5;
}

.wc-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.wc-cart-count:empty,
.wc-cart-count[data-count="0"] {
    display: none;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .wc-user-cart-icons {
        gap: 10px;
    }
    
    .wc-user-cart-icons a {
        width: 44px;
        height: 44px;
    }
    
    .wc-user-cart-icons svg {
        width: 20px;
        height: 20px;
    }
    
    .wc-cart-count {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
        font-size: 12px;
        font-weight: 600;
        top: -4px;
        right: -4px;
        border: 2px solid white;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .wc-user-cart-icons {
        gap: 8px;
    }
    
    .wc-user-cart-icons a {
        width: 42px;
        height: 42px;
    }
    
    .wc-user-cart-icons svg {
        width: 19px;
        height: 19px;
    }
    
    .wc-cart-count {
        width: 19px;
        height: 19px;
        max-width: 19px;
        max-height: 19px;
        font-size: 11px;
        top: -3px;
        right: -3px;
        box-sizing: border-box;
    }
}

/* Para espacios muy pequeños */
@media (max-width: 320px) {
    .wc-user-cart-icons {
        gap: 6px;
    }
    
    .wc-user-cart-icons a {
        width: 38px;
        height: 38px;
    }
    
    .wc-user-cart-icons svg {
        width: 17px;
        height: 17px;
    }
    
    .wc-cart-count {
        width: 17px;
        height: 17px;
        max-width: 17px;
        max-height: 17px;
        font-size: 10px;
        top: -2px;
        right: -2px;
        box-sizing: border-box;
    }
}