.product-actions .action-btn {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.product-actions .add-to-cart-btn {
    background-color: #fff;
    color: #333;
}

.product-actions .buy-now-btn {
    background-color: #FF6B6B;
    color: #fff;
}

.product-actions .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-actions .add-to-cart-btn:hover {
    background-color: #f0f0f0;
}

.product-actions .buy-now-btn:hover {
    background-color: #ff5252;
}